honeybadger 1.8.1 → 1.9.0.beta1
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.md +14 -0
- data/Gemfile.lock +61 -19
- data/Guardfile +4 -4
- data/MIT-LICENSE +1 -0
- data/README.md +2 -2
- data/Rakefile +4 -14
- data/features/rails.feature +1 -1
- data/gemfiles/rack.gemfile.lock +62 -27
- data/gemfiles/rails2.3.gemfile.lock +73 -36
- data/gemfiles/rails3.0.gemfile.lock +59 -26
- data/gemfiles/rails3.1.gemfile.lock +59 -26
- data/gemfiles/rails3.2.gemfile.lock +63 -30
- data/gemfiles/rails4.gemfile.lock +69 -36
- data/gemfiles/rake.gemfile.lock +62 -27
- data/gemfiles/sinatra.gemfile.lock +62 -27
- data/honeybadger.gemspec +31 -17
- data/lib/honeybadger.rb +2 -3
- data/lib/honeybadger/array.rb +53 -0
- data/lib/honeybadger/configuration.rb +19 -2
- data/lib/honeybadger/monitor.rb +16 -0
- data/lib/honeybadger/monitor/railtie.rb +52 -0
- data/lib/honeybadger/monitor/sender.rb +33 -0
- data/lib/honeybadger/monitor/worker.rb +71 -0
- data/lib/honeybadger/railtie.rb +10 -0
- data/lib/honeybadger/sender.rb +60 -41
- data/{test/unit/backtrace_test.rb → spec/honeybadger/backtrace_spec.rb} +69 -71
- data/{test/unit/capistrano_test.rb → spec/honeybadger/capistrano_spec.rb} +8 -9
- data/{test/unit/configuration_test.rb → spec/honeybadger/configuration_spec.rb} +85 -59
- data/spec/honeybadger/logger_spec.rb +65 -0
- data/spec/honeybadger/monitor/worker_spec.rb +189 -0
- data/{test/unit/notice_test.rb → spec/honeybadger/notice_spec.rb} +169 -185
- data/spec/honeybadger/notifier_spec.rb +252 -0
- data/spec/honeybadger/rack_spec.rb +84 -0
- data/{test/unit/rails/action_controller_catcher_test.rb → spec/honeybadger/rails/action_controller_spec.rb} +65 -57
- data/{test/unit/rails_test.rb → spec/honeybadger/rails_spec.rb} +8 -8
- data/spec/honeybadger/sender_spec.rb +249 -0
- data/spec/honeybadger_tasks_spec.rb +165 -0
- data/spec/spec_helper.rb +18 -0
- data/spec/support/array_including.rb +31 -0
- data/spec/support/backtraced_exception.rb +9 -0
- data/spec/support/collected_sender.rb +12 -0
- data/spec/support/defines_constants.rb +18 -0
- data/{test/test_helper.rb → spec/support/helpers.rb} +8 -61
- metadata +93 -45
- data/test/unit/honeybadger_tasks_test.rb +0 -167
- data/test/unit/logger_test.rb +0 -74
- data/test/unit/notifier_test.rb +0 -265
- data/test/unit/rack_test.rb +0 -88
- data/test/unit/sender_test.rb +0 -290
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,17 @@
|
|
1
|
+
## Honeybadger 1.9.0 ##
|
2
|
+
|
3
|
+
* Move from TestUnit/shoulda to RSpec.
|
4
|
+
|
5
|
+
*Joshua Wood*
|
6
|
+
|
7
|
+
* Added metrics reporting
|
8
|
+
|
9
|
+
*Benjamin Curtis*
|
10
|
+
|
11
|
+
* Added ping to Honeybadger on startup
|
12
|
+
|
13
|
+
*Benjamin Curtis*
|
14
|
+
|
1
15
|
## Honeybadger 1.8.1 ##
|
2
16
|
|
3
17
|
* notify_honeybadger_or_ignore method for controllers
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
honeybadger (1.
|
4
|
+
honeybadger (1.9.0.beta1)
|
5
|
+
faraday
|
5
6
|
json
|
6
7
|
|
7
8
|
GEM
|
@@ -14,8 +15,6 @@ GEM
|
|
14
15
|
childprocess (~> 0.3.6)
|
15
16
|
cucumber (>= 1.1.1)
|
16
17
|
rspec-expectations (>= 2.7.0)
|
17
|
-
bourne (1.1.2)
|
18
|
-
mocha (= 0.10.5)
|
19
18
|
builder (3.1.4)
|
20
19
|
capistrano (2.8.0)
|
21
20
|
highline
|
@@ -25,25 +24,47 @@ GEM
|
|
25
24
|
net-ssh-gateway (>= 1.1.0)
|
26
25
|
childprocess (0.3.6)
|
27
26
|
ffi (~> 1.0, >= 1.0.6)
|
27
|
+
coderay (1.0.9)
|
28
28
|
cucumber (1.2.1)
|
29
29
|
builder (>= 2.1.2)
|
30
30
|
diff-lcs (>= 1.1.3)
|
31
31
|
gherkin (~> 2.11.0)
|
32
32
|
json (>= 1.4.6)
|
33
|
-
diff-lcs (1.
|
33
|
+
diff-lcs (1.2.4)
|
34
34
|
fakeweb (1.3.0)
|
35
|
+
faraday (0.8.8)
|
36
|
+
multipart-post (~> 1.2.0)
|
35
37
|
ffi (1.2.0)
|
36
38
|
ffi (1.2.0-java)
|
39
|
+
formatador (0.2.4)
|
40
|
+
fuubar (1.2.1)
|
41
|
+
rspec (~> 2.0)
|
42
|
+
rspec-instafail (~> 0.2.0)
|
43
|
+
ruby-progressbar (~> 1.0)
|
37
44
|
gherkin (2.11.5)
|
38
45
|
json (>= 1.4.6)
|
39
46
|
gherkin (2.11.5-java)
|
40
47
|
json (>= 1.4.6)
|
48
|
+
growl (1.0.3)
|
49
|
+
guard (1.8.2)
|
50
|
+
formatador (>= 0.2.4)
|
51
|
+
listen (>= 1.0.0)
|
52
|
+
lumberjack (>= 1.0.2)
|
53
|
+
pry (>= 0.9.10)
|
54
|
+
thor (>= 0.14.6)
|
55
|
+
guard-rspec (3.0.2)
|
56
|
+
guard (>= 1.8)
|
57
|
+
rspec (~> 2.13)
|
41
58
|
highline (1.6.13)
|
42
59
|
json (1.7.3)
|
43
60
|
json (1.7.3-java)
|
44
|
-
|
45
|
-
|
46
|
-
|
61
|
+
listen (1.3.0)
|
62
|
+
rb-fsevent (>= 0.9.3)
|
63
|
+
rb-inotify (>= 0.9)
|
64
|
+
rb-kqueue (>= 0.2)
|
65
|
+
lumberjack (1.0.4)
|
66
|
+
method_source (0.8.2)
|
67
|
+
multipart-post (1.2.0)
|
47
68
|
net-scp (1.0.4)
|
48
69
|
net-ssh (>= 1.99.1)
|
49
70
|
net-sftp (2.0.5)
|
@@ -51,21 +72,40 @@ GEM
|
|
51
72
|
net-ssh (2.5.2)
|
52
73
|
net-ssh-gateway (1.1.0)
|
53
74
|
net-ssh (>= 1.99.1)
|
75
|
+
pry (0.9.12.2)
|
76
|
+
coderay (~> 1.0.5)
|
77
|
+
method_source (~> 0.8)
|
78
|
+
slop (~> 3.4)
|
79
|
+
pry (0.9.12.2-java)
|
80
|
+
coderay (~> 1.0.5)
|
81
|
+
method_source (~> 0.8)
|
82
|
+
slop (~> 3.4)
|
83
|
+
spoon (~> 0.0)
|
54
84
|
rack (1.1.3)
|
55
85
|
rake (10.0.4)
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
rspec
|
62
|
-
|
63
|
-
|
86
|
+
rb-fsevent (0.9.3)
|
87
|
+
rb-inotify (0.9.1)
|
88
|
+
ffi (>= 0.5.0)
|
89
|
+
rb-kqueue (0.2.0)
|
90
|
+
ffi (>= 0.5.0)
|
91
|
+
rspec (2.14.1)
|
92
|
+
rspec-core (~> 2.14.0)
|
93
|
+
rspec-expectations (~> 2.14.0)
|
94
|
+
rspec-mocks (~> 2.14.0)
|
95
|
+
rspec-core (2.14.5)
|
96
|
+
rspec-expectations (2.14.2)
|
97
|
+
diff-lcs (>= 1.1.3, < 2.0)
|
98
|
+
rspec-instafail (0.2.4)
|
99
|
+
rspec-mocks (2.14.3)
|
100
|
+
ruby-progressbar (1.2.0)
|
64
101
|
sham_rack (1.3.4)
|
65
102
|
rack
|
66
|
-
shoulda (2.11.3)
|
67
103
|
sinatra (1.0)
|
68
104
|
rack (>= 1.0)
|
105
|
+
slop (3.4.6)
|
106
|
+
spoon (0.0.4)
|
107
|
+
ffi
|
108
|
+
thor (0.18.1)
|
69
109
|
|
70
110
|
PLATFORMS
|
71
111
|
java
|
@@ -74,13 +114,15 @@ PLATFORMS
|
|
74
114
|
DEPENDENCIES
|
75
115
|
appraisal
|
76
116
|
aruba
|
77
|
-
bourne (>= 1.0)
|
78
117
|
capistrano
|
79
118
|
cucumber (~> 1.2.1)
|
80
119
|
fakeweb (~> 1.3.0)
|
120
|
+
fuubar
|
121
|
+
growl
|
122
|
+
guard
|
123
|
+
guard-rspec
|
81
124
|
honeybadger!
|
82
125
|
rake
|
83
|
-
rspec (~> 2.
|
126
|
+
rspec (~> 2.14.0)
|
84
127
|
sham_rack (~> 1.3.0)
|
85
|
-
shoulda (~> 2.11.3)
|
86
128
|
sinatra
|
data/Guardfile
CHANGED
@@ -1,5 +1,5 @@
|
|
1
|
-
guard :
|
2
|
-
watch(%r{^
|
3
|
-
watch(%r{^
|
4
|
-
watch('
|
1
|
+
guard :rspec, cli: '--format Fuubar --fail-fast', all_after_pass: false do
|
2
|
+
watch(%r{^spec/.+_spec\.rb$})
|
3
|
+
watch(%r{^lib/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" }
|
4
|
+
watch('spec/spec_helper.rb') { "spec" }
|
5
5
|
end
|
data/MIT-LICENSE
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
Copyright (c) 2007 - 2012, Exceptional DBA Airbrake.io
|
2
2
|
Portions Copyright (c) 2012-2013, Honeybadger Industries LLC
|
3
3
|
Portions Copyright (c) 2009 Brenton Fletcher (http://i.bloople.net i@bloople.net)
|
4
|
+
Portions Copyright (c) 2012 Noah Lorang
|
4
5
|
|
5
6
|
NOTE: All code contained herein that is copyright Exceptional DBA Airbrake.io was available
|
6
7
|
under the MIT license (listed below) on or before November 6, 2012.
|
data/README.md
CHANGED
@@ -616,8 +616,8 @@ suite against multiple versions of Rails. To run the Cucumber features,
|
|
616
616
|
use `rake appraisal cucumber`. Type `rake -T` for a complete list of
|
617
617
|
available tasks.
|
618
618
|
|
619
|
-
The
|
620
|
-
`rake appraisal:rails2.3
|
619
|
+
The RSpec test suite can be run with `rake`, or
|
620
|
+
`rake appraisal:rails2.3` to include Rails-specific specs.
|
621
621
|
|
622
622
|
## Credits
|
623
623
|
|
data/Rakefile
CHANGED
@@ -52,12 +52,10 @@ end
|
|
52
52
|
#
|
53
53
|
#############################################################################
|
54
54
|
|
55
|
-
require '
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
test.verbose = true
|
60
|
-
end
|
55
|
+
require 'rspec/core/rake_task'
|
56
|
+
RSpec::Core::RakeTask.new(:spec)
|
57
|
+
task :default => :spec
|
58
|
+
task :test => :spec
|
61
59
|
|
62
60
|
Cucumber::Rake::Task.new(:cucumber) do |t|
|
63
61
|
t.fork = true
|
@@ -79,14 +77,6 @@ Cucumber::Rake::Task.new(:cucumber) do |t|
|
|
79
77
|
end unless ENV['FEATURE']
|
80
78
|
end
|
81
79
|
|
82
|
-
desc "Generate RCov test coverage and open in your browser"
|
83
|
-
task :coverage do
|
84
|
-
require 'rcov'
|
85
|
-
sh "rm -fr coverage"
|
86
|
-
sh "rcov test/*_test.rb"
|
87
|
-
sh "open coverage/index.html"
|
88
|
-
end
|
89
|
-
|
90
80
|
desc "Open an irb session preloaded with this library"
|
91
81
|
task :console do
|
92
82
|
sh "irb -rubygems -r ./lib/#{name}.rb"
|
data/features/rails.feature
CHANGED
@@ -113,7 +113,7 @@ Feature: Install the Gem in a Rails application
|
|
113
113
|
"""
|
114
114
|
And I route "/test/index" to "test#index"
|
115
115
|
And I perform a request to "http://example.com:123/test/index?param=value"
|
116
|
-
Then the output should match /\[Honeybadger\] Notifier (
|
116
|
+
Then the output should match /\[Honeybadger\] Notifier (?:\S+) ready to catch errors/
|
117
117
|
Then the output should not contain "[Honeybadger] Success"
|
118
118
|
Then the output should not contain "[Honeybadger] Environment Info"
|
119
119
|
Then the output should not contain "[Honeybadger] Response from Honeybadger"
|
data/gemfiles/rack.gemfile.lock
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
PATH
|
2
2
|
remote: /Users/josh/code/honeybadger-ruby
|
3
3
|
specs:
|
4
|
-
honeybadger (1.
|
4
|
+
honeybadger (1.9.0.beta1)
|
5
|
+
faraday
|
5
6
|
json
|
6
7
|
|
7
8
|
GEM
|
@@ -14,8 +15,6 @@ GEM
|
|
14
15
|
childprocess (>= 0.3.6)
|
15
16
|
cucumber (>= 1.1.1)
|
16
17
|
rspec-expectations (>= 2.7.0)
|
17
|
-
bourne (1.4.0)
|
18
|
-
mocha (~> 0.13.2)
|
19
18
|
builder (3.1.4)
|
20
19
|
capistrano (2.15.4)
|
21
20
|
highline
|
@@ -25,48 +24,82 @@ GEM
|
|
25
24
|
net-ssh-gateway (>= 1.1.0)
|
26
25
|
childprocess (0.3.9)
|
27
26
|
ffi (~> 1.0, >= 1.0.11)
|
27
|
+
coderay (1.0.9)
|
28
28
|
cucumber (1.2.5)
|
29
29
|
builder (>= 2.1.2)
|
30
30
|
diff-lcs (>= 1.1.3)
|
31
31
|
gherkin (~> 2.11.7)
|
32
32
|
multi_json (~> 1.3)
|
33
|
-
diff-lcs (1.
|
33
|
+
diff-lcs (1.2.4)
|
34
34
|
fakeweb (1.3.0)
|
35
|
-
|
35
|
+
faraday (0.8.8)
|
36
|
+
multipart-post (~> 1.2.0)
|
37
|
+
ffi (1.9.0)
|
38
|
+
formatador (0.2.4)
|
39
|
+
fuubar (1.2.1)
|
40
|
+
rspec (~> 2.0)
|
41
|
+
rspec-instafail (~> 0.2.0)
|
42
|
+
ruby-progressbar (~> 1.0)
|
36
43
|
gherkin (2.11.8)
|
37
44
|
multi_json (~> 1.3)
|
45
|
+
growl (1.0.3)
|
46
|
+
guard (1.8.3)
|
47
|
+
formatador (>= 0.2.4)
|
48
|
+
listen (~> 1.3)
|
49
|
+
lumberjack (>= 1.0.2)
|
50
|
+
pry (>= 0.9.10)
|
51
|
+
thor (>= 0.14.6)
|
52
|
+
guard-rspec (3.0.2)
|
53
|
+
guard (>= 1.8)
|
54
|
+
rspec (~> 2.13)
|
38
55
|
highline (1.6.19)
|
39
56
|
json (1.8.0)
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
57
|
+
listen (1.3.1)
|
58
|
+
rb-fsevent (>= 0.9.3)
|
59
|
+
rb-inotify (>= 0.9)
|
60
|
+
rb-kqueue (>= 0.2)
|
61
|
+
lumberjack (1.0.4)
|
62
|
+
method_source (0.8.2)
|
63
|
+
multi_json (1.8.1)
|
64
|
+
multipart-post (1.2.0)
|
65
|
+
net-scp (1.1.2)
|
45
66
|
net-ssh (>= 2.6.5)
|
46
67
|
net-sftp (2.1.2)
|
47
68
|
net-ssh (>= 2.6.5)
|
48
|
-
net-ssh (2.6.
|
69
|
+
net-ssh (2.6.8)
|
49
70
|
net-ssh-gateway (1.2.0)
|
50
71
|
net-ssh (>= 2.6.5)
|
72
|
+
pry (0.9.12.2)
|
73
|
+
coderay (~> 1.0.5)
|
74
|
+
method_source (~> 0.8)
|
75
|
+
slop (~> 3.4)
|
51
76
|
rack (1.5.2)
|
52
77
|
rack-protection (1.5.0)
|
53
78
|
rack
|
54
|
-
rake (10.0
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
rspec
|
61
|
-
|
62
|
-
|
79
|
+
rake (10.1.0)
|
80
|
+
rb-fsevent (0.9.3)
|
81
|
+
rb-inotify (0.9.2)
|
82
|
+
ffi (>= 0.5.0)
|
83
|
+
rb-kqueue (0.2.0)
|
84
|
+
ffi (>= 0.5.0)
|
85
|
+
rspec (2.14.1)
|
86
|
+
rspec-core (~> 2.14.0)
|
87
|
+
rspec-expectations (~> 2.14.0)
|
88
|
+
rspec-mocks (~> 2.14.0)
|
89
|
+
rspec-core (2.14.5)
|
90
|
+
rspec-expectations (2.14.2)
|
91
|
+
diff-lcs (>= 1.1.3, < 2.0)
|
92
|
+
rspec-instafail (0.2.4)
|
93
|
+
rspec-mocks (2.14.3)
|
94
|
+
ruby-progressbar (1.2.0)
|
63
95
|
sham_rack (1.3.6)
|
64
96
|
rack
|
65
|
-
|
66
|
-
sinatra (1.3.5)
|
97
|
+
sinatra (1.4.3)
|
67
98
|
rack (~> 1.4)
|
68
|
-
rack-protection (~> 1.
|
69
|
-
tilt (~> 1.3, >= 1.3.
|
99
|
+
rack-protection (~> 1.4)
|
100
|
+
tilt (~> 1.3, >= 1.3.4)
|
101
|
+
slop (3.4.6)
|
102
|
+
thor (0.18.1)
|
70
103
|
tilt (1.4.1)
|
71
104
|
|
72
105
|
PLATFORMS
|
@@ -75,14 +108,16 @@ PLATFORMS
|
|
75
108
|
DEPENDENCIES
|
76
109
|
appraisal
|
77
110
|
aruba
|
78
|
-
bourne (>= 1.0)
|
79
111
|
capistrano
|
80
112
|
cucumber (~> 1.2.1)
|
81
113
|
fakeweb (~> 1.3.0)
|
114
|
+
fuubar
|
115
|
+
growl
|
116
|
+
guard
|
117
|
+
guard-rspec
|
82
118
|
honeybadger!
|
83
119
|
rack
|
84
120
|
rake
|
85
|
-
rspec (~> 2.
|
121
|
+
rspec (~> 2.14.0)
|
86
122
|
sham_rack (~> 1.3.0)
|
87
|
-
shoulda (~> 2.11.3)
|
88
123
|
sinatra
|
@@ -1,7 +1,8 @@
|
|
1
1
|
PATH
|
2
2
|
remote: /Users/josh/code/honeybadger-ruby
|
3
3
|
specs:
|
4
|
-
honeybadger (1.
|
4
|
+
honeybadger (1.9.0.beta1)
|
5
|
+
faraday
|
5
6
|
json
|
6
7
|
|
7
8
|
GEM
|
@@ -17,17 +18,16 @@ GEM
|
|
17
18
|
activeresource (2.3.14)
|
18
19
|
activesupport (= 2.3.14)
|
19
20
|
activesupport (2.3.14)
|
20
|
-
appraisal (0.5.
|
21
|
+
appraisal (0.5.2)
|
21
22
|
bundler
|
22
23
|
rake
|
23
|
-
aruba (0.5.
|
24
|
-
childprocess (
|
24
|
+
aruba (0.5.3)
|
25
|
+
childprocess (>= 0.3.6)
|
25
26
|
cucumber (>= 1.1.1)
|
26
27
|
rspec-expectations (>= 2.7.0)
|
27
|
-
|
28
|
-
mocha (~> 0.13.2)
|
28
|
+
backports (3.3.1)
|
29
29
|
builder (3.1.4)
|
30
|
-
capistrano (2.
|
30
|
+
capistrano (2.15.4)
|
31
31
|
highline
|
32
32
|
net-scp (>= 1.0.0)
|
33
33
|
net-sftp (>= 2.0.0)
|
@@ -35,29 +35,55 @@ GEM
|
|
35
35
|
net-ssh-gateway (>= 1.1.0)
|
36
36
|
childprocess (0.3.9)
|
37
37
|
ffi (~> 1.0, >= 1.0.11)
|
38
|
-
|
38
|
+
coderay (1.0.9)
|
39
|
+
cucumber (1.2.5)
|
39
40
|
builder (>= 2.1.2)
|
40
41
|
diff-lcs (>= 1.1.3)
|
41
|
-
gherkin (~> 2.11.
|
42
|
+
gherkin (~> 2.11.7)
|
42
43
|
multi_json (~> 1.3)
|
43
|
-
diff-lcs (1.
|
44
|
+
diff-lcs (1.2.4)
|
44
45
|
fakeweb (1.3.0)
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
46
|
+
faraday (0.8.8)
|
47
|
+
multipart-post (~> 1.2.0)
|
48
|
+
ffi (1.9.0)
|
49
|
+
formatador (0.2.4)
|
50
|
+
fuubar (1.2.1)
|
51
|
+
rspec (~> 2.0)
|
52
|
+
rspec-instafail (~> 0.2.0)
|
53
|
+
ruby-progressbar (~> 1.0)
|
54
|
+
gherkin (2.11.8)
|
55
|
+
multi_json (~> 1.3)
|
56
|
+
growl (1.0.3)
|
57
|
+
guard (1.8.3)
|
58
|
+
formatador (>= 0.2.4)
|
59
|
+
listen (~> 1.3)
|
60
|
+
lumberjack (>= 1.0.2)
|
61
|
+
pry (>= 0.9.10)
|
62
|
+
thor (>= 0.14.6)
|
63
|
+
guard-rspec (3.0.2)
|
64
|
+
guard (>= 1.8)
|
65
|
+
rspec (~> 2.13)
|
66
|
+
highline (1.6.19)
|
49
67
|
json (1.8.0)
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
68
|
+
listen (1.3.1)
|
69
|
+
rb-fsevent (>= 0.9.3)
|
70
|
+
rb-inotify (>= 0.9)
|
71
|
+
rb-kqueue (>= 0.2)
|
72
|
+
lumberjack (1.0.4)
|
73
|
+
method_source (0.8.2)
|
74
|
+
multi_json (1.8.1)
|
75
|
+
multipart-post (1.2.0)
|
76
|
+
net-scp (1.1.2)
|
55
77
|
net-ssh (>= 2.6.5)
|
56
|
-
net-sftp (2.1.
|
78
|
+
net-sftp (2.1.2)
|
57
79
|
net-ssh (>= 2.6.5)
|
58
|
-
net-ssh (2.6.
|
80
|
+
net-ssh (2.6.8)
|
59
81
|
net-ssh-gateway (1.2.0)
|
60
82
|
net-ssh (>= 2.6.5)
|
83
|
+
pry (0.9.12.2)
|
84
|
+
coderay (~> 1.0.5)
|
85
|
+
method_source (~> 0.8)
|
86
|
+
slop (~> 3.4)
|
61
87
|
rack (1.1.3)
|
62
88
|
rails (2.3.14)
|
63
89
|
actionmailer (= 2.3.14)
|
@@ -67,20 +93,29 @@ GEM
|
|
67
93
|
activesupport (= 2.3.14)
|
68
94
|
rake (>= 0.8.3)
|
69
95
|
rake (0.9.5)
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
rspec
|
76
|
-
|
77
|
-
|
78
|
-
|
96
|
+
rb-fsevent (0.9.3)
|
97
|
+
rb-inotify (0.9.2)
|
98
|
+
ffi (>= 0.5.0)
|
99
|
+
rb-kqueue (0.2.0)
|
100
|
+
ffi (>= 0.5.0)
|
101
|
+
rspec (2.14.1)
|
102
|
+
rspec-core (~> 2.14.0)
|
103
|
+
rspec-expectations (~> 2.14.0)
|
104
|
+
rspec-mocks (~> 2.14.0)
|
105
|
+
rspec-core (2.14.5)
|
106
|
+
rspec-expectations (2.14.2)
|
107
|
+
diff-lcs (>= 1.1.3, < 2.0)
|
108
|
+
rspec-instafail (0.2.4)
|
109
|
+
rspec-mocks (2.14.3)
|
110
|
+
ruby-progressbar (1.2.0)
|
111
|
+
sham_rack (1.3.6)
|
79
112
|
rack
|
80
|
-
|
81
|
-
|
82
|
-
rack (~> 1.1)
|
113
|
+
sinatra (1.2.9)
|
114
|
+
backports
|
115
|
+
rack (~> 1.1, < 1.5)
|
83
116
|
tilt (>= 1.2.2, < 2.0)
|
117
|
+
slop (3.4.6)
|
118
|
+
thor (0.18.1)
|
84
119
|
tilt (1.4.1)
|
85
120
|
|
86
121
|
PLATFORMS
|
@@ -89,14 +124,16 @@ PLATFORMS
|
|
89
124
|
DEPENDENCIES
|
90
125
|
appraisal
|
91
126
|
aruba
|
92
|
-
bourne (>= 1.0)
|
93
127
|
capistrano
|
94
128
|
cucumber (~> 1.2.1)
|
95
129
|
fakeweb (~> 1.3.0)
|
130
|
+
fuubar
|
131
|
+
growl
|
132
|
+
guard
|
133
|
+
guard-rspec
|
96
134
|
honeybadger!
|
97
135
|
rails (= 2.3.14)
|
98
136
|
rake (= 0.9.5)
|
99
|
-
rspec (~> 2.
|
137
|
+
rspec (~> 2.14.0)
|
100
138
|
sham_rack (~> 1.3.0)
|
101
|
-
shoulda (~> 2.11.3)
|
102
139
|
sinatra
|