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
@@ -22,7 +22,8 @@ group :development, :test do @@ -22,7 +22,8 @@ group :development, :test do
22 gem 'rspec-rails', '~> 2.5' 22 gem 'rspec-rails', '~> 2.5'
23 gem 'webmock', :require => false 23 gem 'webmock', :require => false
24 gem 'factory_girl_rails' 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 end 27 end
27 28
28 group :test do 29 group :test do
@@ -36,11 +36,13 @@ GEM @@ -36,11 +36,13 @@ GEM
36 activesupport (= 3.0.5) 36 activesupport (= 3.0.5)
37 activesupport (3.0.5) 37 activesupport (3.0.5)
38 addressable (2.2.5) 38 addressable (2.2.5)
  39 + archive-tar-minitar (0.5.2)
39 arel (2.0.9) 40 arel (2.0.9)
40 bcrypt-ruby (2.1.4) 41 bcrypt-ruby (2.1.4)
41 bson (1.3.1) 42 bson (1.3.1)
42 bson_ext (1.3.1) 43 bson_ext (1.3.1)
43 builder (2.1.2) 44 builder (2.1.2)
  45 + columnize (0.3.4)
44 crack (0.1.8) 46 crack (0.1.8)
45 daemons (1.1.4) 47 daemons (1.1.4)
46 database_cleaner (0.6.7) 48 database_cleaner (0.6.7)
@@ -70,6 +72,10 @@ GEM @@ -70,6 +72,10 @@ GEM
70 lighthouse-api (2.0) 72 lighthouse-api (2.0)
71 activeresource (>= 3.0.0) 73 activeresource (>= 3.0.0)
72 activesupport (>= 3.0.0) 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 mail (2.2.17) 79 mail (2.2.17)
74 activesupport (>= 2.3.6) 80 activesupport (>= 2.3.6)
75 i18n (>= 0.4.0) 81 i18n (>= 0.4.0)
@@ -114,6 +120,7 @@ GEM @@ -114,6 +120,7 @@ GEM
114 rake (>= 0.8.7) 120 rake (>= 0.8.7)
115 thor (~> 0.14.4) 121 thor (~> 0.14.4)
116 rake (0.8.7) 122 rake (0.8.7)
  123 + rbx-require-relative (0.0.5)
117 responders (0.6.4) 124 responders (0.6.4)
118 rest-client (1.5.1) 125 rest-client (1.5.1)
119 mime-types (>= 1.16) 126 mime-types (>= 1.16)
@@ -130,9 +137,24 @@ GEM @@ -130,9 +137,24 @@ GEM
130 activesupport (~> 3.0) 137 activesupport (~> 3.0)
131 railties (~> 3.0) 138 railties (~> 3.0)
132 rspec (~> 2.5.0) 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 ruby-fogbugz (0.0.4) 153 ruby-fogbugz (0.0.4)
134 crack 154 crack
135 typhoeus 155 typhoeus
  156 + ruby_core_source (0.1.5)
  157 + archive-tar-minitar (>= 0.5.2)
136 thin (1.2.11) 158 thin (1.2.11)
137 daemons (>= 1.0.9) 159 daemons (>= 1.0.9)
138 eventmachine (>= 0.12.6) 160 eventmachine (>= 0.12.6)
@@ -172,6 +194,8 @@ DEPENDENCIES @@ -172,6 +194,8 @@ DEPENDENCIES
172 redmine_client! 194 redmine_client!
173 rspec (~> 2.5) 195 rspec (~> 2.5)
174 rspec-rails (~> 2.5) 196 rspec-rails (~> 2.5)
  197 + ruby-debug
  198 + ruby-debug19
175 ruby-fogbugz 199 ruby-fogbugz
176 thin 200 thin
177 useragent (~> 0.3.1) 201 useragent (~> 0.3.1)