Files
gitlabhq/lib
zenati c418261b2b No need to check if repository_ref is present
There is no need to check if `repository_ref` is present as:
```
      @repository_ref = if repository_ref.present?
                          repository_ref
                        else
                          nil
                        end
```

is as same as doing:

```
@repository_ref = repository_ref
```
2015-06-08 18:01:50 +02:00
..
2015-06-05 17:16:51 +02:00
2015-06-02 13:21:34 +02:00
2015-02-02 21:31:03 -08:00
2015-02-14 11:09:23 -07:00
2014-08-14 15:48:14 +04:00
2014-08-14 15:48:14 +04:00
2015-05-11 18:21:45 +03:00