Commit 32343791c681451a63d685b69209ad61402d00dc

Authored by Nathan Broadbent
1 parent 403aeea7
Exists in master and in 1 other branch production

Added ruby-debug gems to Gemfile, with support for both 1.8 and 1.9.

Showing 2 changed files with 26 additions and 1 deletions   Show diff stats
Gemfile
... ... @@ -22,7 +22,8 @@ group :development, :test do
22 22 gem 'rspec-rails', '~> 2.5'
23 23 gem 'webmock', :require => false
24 24 gem 'factory_girl_rails'
25   - #gem 'ruby-debug19', :require => 'ruby-debug'
  25 + gem 'ruby-debug', :platform => :mri_18
  26 + gem 'ruby-debug19', :platform => :mri_19, :require => 'ruby-debug'
26 27 end
27 28  
28 29 group :test do
... ...
Gemfile.lock
... ... @@ -36,11 +36,13 @@ GEM
36 36 activesupport (= 3.0.5)
37 37 activesupport (3.0.5)
38 38 addressable (2.2.5)
  39 + archive-tar-minitar (0.5.2)
39 40 arel (2.0.9)
40 41 bcrypt-ruby (2.1.4)
41 42 bson (1.3.1)
42 43 bson_ext (1.3.1)
43 44 builder (2.1.2)
  45 + columnize (0.3.4)
44 46 crack (0.1.8)
45 47 daemons (1.1.4)
46 48 database_cleaner (0.6.7)
... ... @@ -70,6 +72,10 @@ GEM
70 72 lighthouse-api (2.0)
71 73 activeresource (>= 3.0.0)
72 74 activesupport (>= 3.0.0)
  75 + linecache (0.46)
  76 + rbx-require-relative (> 0.0.4)
  77 + linecache19 (0.5.12)
  78 + ruby_core_source (>= 0.1.4)
73 79 mail (2.2.17)
74 80 activesupport (>= 2.3.6)
75 81 i18n (>= 0.4.0)
... ... @@ -114,6 +120,7 @@ GEM
114 120 rake (>= 0.8.7)
115 121 thor (~> 0.14.4)
116 122 rake (0.8.7)
  123 + rbx-require-relative (0.0.5)
117 124 responders (0.6.4)
118 125 rest-client (1.5.1)
119 126 mime-types (>= 1.16)
... ... @@ -130,9 +137,24 @@ GEM
130 137 activesupport (~> 3.0)
131 138 railties (~> 3.0)
132 139 rspec (~> 2.5.0)
  140 + ruby-debug (0.10.4)
  141 + columnize (>= 0.1)
  142 + ruby-debug-base (~> 0.10.4.0)
  143 + ruby-debug-base (0.10.4)
  144 + linecache (>= 0.3)
  145 + ruby-debug-base19 (0.11.25)
  146 + columnize (>= 0.3.1)
  147 + linecache19 (>= 0.5.11)
  148 + ruby_core_source (>= 0.1.4)
  149 + ruby-debug19 (0.11.6)
  150 + columnize (>= 0.3.1)
  151 + linecache19 (>= 0.5.11)
  152 + ruby-debug-base19 (>= 0.11.19)
133 153 ruby-fogbugz (0.0.4)
134 154 crack
135 155 typhoeus
  156 + ruby_core_source (0.1.5)
  157 + archive-tar-minitar (>= 0.5.2)
136 158 thin (1.2.11)
137 159 daemons (>= 1.0.9)
138 160 eventmachine (>= 0.12.6)
... ... @@ -172,6 +194,8 @@ DEPENDENCIES
172 194 redmine_client!
173 195 rspec (~> 2.5)
174 196 rspec-rails (~> 2.5)
  197 + ruby-debug
  198 + ruby-debug19
175 199 ruby-fogbugz
176 200 thin
177 201 useragent (~> 0.3.1)
... ...