Feature #5638 » bundler-for-redmine-2.patch
| Gemfile | ||
|---|---|---|
| 1 | 1 |
source :rubygems |
| 2 | 2 | |
| 3 |
gem "bundler", "0.9.25"
|
|
| 3 |
gem "bundler", "~>0.9.26"
|
|
| 4 | 4 |
gem "rails", "2.3.5" |
| 5 | 5 |
gem "rack", "1.0.1" |
| 6 | 6 | |
| ... | ... | |
| 21 | 21 | |
| 22 | 22 |
group :test do |
| 23 | 23 |
gem "shoulda" |
| 24 |
gem "mocha", :require => nil # ":require => nil" fixes obscure bugs - remote and run all tests
|
|
| 24 |
gem "mocha", :require => nil # ":require => nil" fixes obscure bugs - try to remove it and run all tests
|
|
| 25 | 25 |
gem "edavis10-object_daddy", :require => "object_daddy" |
| 26 | 26 |
end |
| 27 | 27 | |