Commit 30656396c5253270c5b004bef33f24b7c4b7ae50
1 parent
f2611648
Exists in
master
and in
1 other branch
updated gemfile as per fletcher for debug
Showing
2 changed files
with
15 additions
and
9 deletions
Show diff stats
Gemfile
| ... | ... | @@ -45,7 +45,7 @@ group :development, :test do |
| 45 | 45 | gem 'webmock', :require => false |
| 46 | 46 | unless ENV["CI"] |
| 47 | 47 | gem 'ruby-debug', :platform => :mri_18 |
| 48 | - gem 'debugger', :platform => :mri_19 | |
| 48 | + gem (RUBY_VERSION == "1.9.2" ? 'ruby-debug19' : 'debugger'), :platform => :mri_19 | |
| 49 | 49 | end |
| 50 | 50 | # gem 'rpm_contrib', :git => "git://github.com/bensymonds/rpm_contrib.git", :branch => "mongo-1.4.0_update" |
| 51 | 51 | end | ... | ... |
Gemfile.lock
| ... | ... | @@ -34,6 +34,7 @@ GEM |
| 34 | 34 | i18n (~> 0.6) |
| 35 | 35 | multi_json (~> 1.0) |
| 36 | 36 | addressable (2.2.8) |
| 37 | + archive-tar-minitar (0.5.2) | |
| 37 | 38 | arel (3.0.2) |
| 38 | 39 | bcrypt-ruby (3.0.1) |
| 39 | 40 | bson (1.3.1) |
| ... | ... | @@ -55,13 +56,6 @@ GEM |
| 55 | 56 | rdoc |
| 56 | 57 | daemons (1.1.8) |
| 57 | 58 | database_cleaner (0.6.7) |
| 58 | - debugger (1.1.3) | |
| 59 | - columnize (>= 0.3.1) | |
| 60 | - debugger-linecache (~> 1.1.1) | |
| 61 | - debugger-ruby_core_source (~> 1.1.2) | |
| 62 | - debugger-linecache (1.1.1) | |
| 63 | - debugger-ruby_core_source (>= 1.1.1) | |
| 64 | - debugger-ruby_core_source (1.1.2) | |
| 65 | 59 | devise (1.5.3) |
| 66 | 60 | bcrypt-ruby (~> 3.0) |
| 67 | 61 | orm_adapter (~> 0.0.3) |
| ... | ... | @@ -112,6 +106,8 @@ GEM |
| 112 | 106 | activesupport (>= 3.0.0) |
| 113 | 107 | linecache (0.46) |
| 114 | 108 | rbx-require-relative (> 0.0.4) |
| 109 | + linecache19 (0.5.13) | |
| 110 | + ruby_core_source (>= 0.1.4) | |
| 115 | 111 | mail (2.4.4) |
| 116 | 112 | i18n (>= 0.4.0) |
| 117 | 113 | mime-types (~> 1.16) |
| ... | ... | @@ -219,8 +215,18 @@ GEM |
| 219 | 215 | ruby-debug-base (~> 0.10.4.0) |
| 220 | 216 | ruby-debug-base (0.10.4) |
| 221 | 217 | linecache (>= 0.3) |
| 218 | + ruby-debug-base19 (0.11.25) | |
| 219 | + columnize (>= 0.3.1) | |
| 220 | + linecache19 (>= 0.5.11) | |
| 221 | + ruby_core_source (>= 0.1.4) | |
| 222 | + ruby-debug19 (0.11.6) | |
| 223 | + columnize (>= 0.3.1) | |
| 224 | + linecache19 (>= 0.5.11) | |
| 225 | + ruby-debug-base19 (>= 0.11.19) | |
| 222 | 226 | ruby-fogbugz (0.1.1) |
| 223 | 227 | crack |
| 228 | + ruby_core_source (0.1.5) | |
| 229 | + archive-tar-minitar (>= 0.5.2) | |
| 224 | 230 | rubyzip (0.9.8) |
| 225 | 231 | selenium-webdriver (2.21.2) |
| 226 | 232 | childprocess (>= 0.2.5) |
| ... | ... | @@ -271,7 +277,6 @@ DEPENDENCIES |
| 271 | 277 | bson_ext (= 1.3.1) |
| 272 | 278 | capybara |
| 273 | 279 | database_cleaner (~> 0.6.0) |
| 274 | - debugger | |
| 275 | 280 | devise (~> 1.5.3) |
| 276 | 281 | email_spec |
| 277 | 282 | execjs |
| ... | ... | @@ -299,6 +304,7 @@ DEPENDENCIES |
| 299 | 304 | rspec (~> 2.6) |
| 300 | 305 | rspec-rails (~> 2.6) |
| 301 | 306 | ruby-debug |
| 307 | + ruby-debug19 | |
| 302 | 308 | ruby-fogbugz |
| 303 | 309 | therubyracer |
| 304 | 310 | thin | ... | ... |