Commit d863fa6283c80eaf2d549b73bf778b78a94ff89c
1 parent
96d49bf0
Exists in
master
and in
4 other branches
Replace yaml_db fork with gem
Showing
2 changed files
with
5 additions
and
9 deletions
Show diff stats
Gemfile
| @@ -24,10 +24,12 @@ gem 'omniauth-github' | @@ -24,10 +24,12 @@ gem 'omniauth-github' | ||
| 24 | # GITLAB patched libs | 24 | # GITLAB patched libs |
| 25 | gem "grit", git: "https://github.com/gitlabhq/grit.git", ref: '7f35cb98ff17d534a07e3ce6ec3d580f67402837' | 25 | gem "grit", git: "https://github.com/gitlabhq/grit.git", ref: '7f35cb98ff17d534a07e3ce6ec3d580f67402837' |
| 26 | gem "omniauth-ldap", git: "https://github.com/gitlabhq/omniauth-ldap.git", ref: 'f038dd852d7bd473a557e385d5d7c2fd5dc1dc2e' | 26 | gem "omniauth-ldap", git: "https://github.com/gitlabhq/omniauth-ldap.git", ref: 'f038dd852d7bd473a557e385d5d7c2fd5dc1dc2e' |
| 27 | -gem 'yaml_db', git: "https://github.com/gitlabhq/yaml_db.git", ref: '98e9a5dca43e3fedd3268c76a73af40d1bdf1dfd' | ||
| 28 | gem 'grack', git: "https://github.com/gitlabhq/grack.git", ref: 'ba46f3b0845c6a09d488ae6abdce6ede37e227e8' | 27 | gem 'grack', git: "https://github.com/gitlabhq/grack.git", ref: 'ba46f3b0845c6a09d488ae6abdce6ede37e227e8' |
| 29 | gem 'grit_ext', git: "https://github.com/gitlabhq/grit_ext.git", ref: '8e6afc2da821354774aa4d1ee8a1aa2082f84a3e' | 28 | gem 'grit_ext', git: "https://github.com/gitlabhq/grit_ext.git", ref: '8e6afc2da821354774aa4d1ee8a1aa2082f84a3e' |
| 30 | 29 | ||
| 30 | +# Dump db to yml file. Mostly used to migrate from sqlite to mysql | ||
| 31 | +gem 'gitlab_yaml_db', '1.0.0', require: "yaml_db" | ||
| 32 | + | ||
| 31 | # Gitolite client (for work with gitolite-admin repo) | 33 | # Gitolite client (for work with gitolite-admin repo) |
| 32 | gem "gitolite", '1.1.0' | 34 | gem "gitolite", '1.1.0' |
| 33 | 35 |
Gemfile.lock
| @@ -71,13 +71,6 @@ GIT | @@ -71,13 +71,6 @@ GIT | ||
| 71 | vegas (~> 0.1.2) | 71 | vegas (~> 0.1.2) |
| 72 | 72 | ||
| 73 | GIT | 73 | GIT |
| 74 | - remote: https://github.com/gitlabhq/yaml_db.git | ||
| 75 | - revision: 98e9a5dca43e3fedd3268c76a73af40d1bdf1dfd | ||
| 76 | - ref: 98e9a5dca43e3fedd3268c76a73af40d1bdf1dfd | ||
| 77 | - specs: | ||
| 78 | - yaml_db (0.2.2) | ||
| 79 | - | ||
| 80 | -GIT | ||
| 81 | remote: https://github.com/jonleighton/poltergeist.git | 74 | remote: https://github.com/jonleighton/poltergeist.git |
| 82 | revision: 5c2e092001074a8cf09f332d3714e9ba150bc8ca | 75 | revision: 5c2e092001074a8cf09f332d3714e9ba150bc8ca |
| 83 | ref: 5c2e092001074a8cf09f332d3714e9ba150bc8ca | 76 | ref: 5c2e092001074a8cf09f332d3714e9ba150bc8ca |
| @@ -205,6 +198,7 @@ GEM | @@ -205,6 +198,7 @@ GEM | ||
| 205 | pygments.rb (>= 0.2.13) | 198 | pygments.rb (>= 0.2.13) |
| 206 | github-markup (0.7.4) | 199 | github-markup (0.7.4) |
| 207 | gitlab_meta (4.0) | 200 | gitlab_meta (4.0) |
| 201 | + gitlab_yaml_db (1.0.0) | ||
| 208 | gitolite (1.1.0) | 202 | gitolite (1.1.0) |
| 209 | gratr19 (~> 0.4.4.1) | 203 | gratr19 (~> 0.4.4.1) |
| 210 | grit (~> 2.5.0) | 204 | grit (~> 2.5.0) |
| @@ -492,6 +486,7 @@ DEPENDENCIES | @@ -492,6 +486,7 @@ DEPENDENCIES | ||
| 492 | github-linguist (~> 2.3.4) | 486 | github-linguist (~> 2.3.4) |
| 493 | github-markup (~> 0.7.4) | 487 | github-markup (~> 0.7.4) |
| 494 | gitlab_meta (= 4.0) | 488 | gitlab_meta (= 4.0) |
| 489 | + gitlab_yaml_db (= 1.0.0) | ||
| 495 | gitolite (= 1.1.0) | 490 | gitolite (= 1.1.0) |
| 496 | grack! | 491 | grack! |
| 497 | grape (~> 0.2.1) | 492 | grape (~> 0.2.1) |
| @@ -546,4 +541,3 @@ DEPENDENCIES | @@ -546,4 +541,3 @@ DEPENDENCIES | ||
| 546 | uglifier (~> 1.3.0) | 541 | uglifier (~> 1.3.0) |
| 547 | unicorn (~> 4.4.0) | 542 | unicorn (~> 4.4.0) |
| 548 | webmock | 543 | webmock |
| 549 | - yaml_db! |