honeybadger 1.9.4 → 1.9.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/Appraisals +4 -0
- data/CHANGELOG.md +12 -0
- data/Gemfile.lock +14 -14
- data/Guardfile +1 -1
- data/Rakefile +5 -5
- data/features/rails.feature +12 -0
- data/gemfiles/rack.gemfile.lock +17 -18
- data/gemfiles/rails2.3.gemfile.lock +17 -18
- data/gemfiles/rails3.0.gemfile +1 -0
- data/gemfiles/rails3.0.gemfile.lock +26 -13
- data/gemfiles/rails3.1.gemfile +1 -0
- data/gemfiles/rails3.1.gemfile.lock +27 -14
- data/gemfiles/rails3.2.gemfile +1 -0
- data/gemfiles/rails3.2.gemfile.lock +28 -15
- data/gemfiles/rails4.gemfile +1 -0
- data/gemfiles/rails4.gemfile.lock +28 -15
- data/gemfiles/rake.gemfile.lock +17 -18
- data/gemfiles/sinatra.gemfile.lock +17 -18
- data/honeybadger.gemspec +8 -10
- data/lib/honeybadger.rb +1 -1
- data/lib/honeybadger/rails3_tasks.rb +2 -2
- metadata +34 -71
- data/gemfiles/rails_edge.gemfile +0 -9
- data/gemfiles/rails_edge.gemfile.lock +0 -198
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: dd5d724bc0336e08b1ecc6f49f1e1508f21c7174
|
4
|
+
data.tar.gz: 57a61bc6a3d43587c00f106ac290bac232f6c5d9
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 55735a6b7bbf0fc130005599f33568adc7a158a3b35ff2a04599b63ce7dd25b37bc55e56594e07f28cd2882e53ea816e34dc417823c58fe4f04497a48a81d1f2
|
7
|
+
data.tar.gz: d68d1302ba96a55d3363880d14115d6fdac5b435add9417063672b044ef7860995fc5d8514d60e47c30f900e5e340fac602635e80be18bcb108c63c70d988d40
|
data/Appraisals
CHANGED
@@ -11,6 +11,7 @@ appraise 'rails3.0' do
|
|
11
11
|
gem 'honeybadger', :path => '../'
|
12
12
|
gem 'better_errors', :require => false
|
13
13
|
gem 'faraday', '~> 0.7.0'
|
14
|
+
gem 'rack-mini-profiler', :require => false
|
14
15
|
gem 'capistrano', '~> 2.0'
|
15
16
|
end
|
16
17
|
|
@@ -19,6 +20,7 @@ appraise 'rails3.1' do
|
|
19
20
|
gem 'honeybadger', :path => '../'
|
20
21
|
gem 'better_errors', :require => false
|
21
22
|
gem 'faraday', '~> 0.7.0'
|
23
|
+
gem 'rack-mini-profiler', :require => false
|
22
24
|
gem 'capistrano', '~> 2.0'
|
23
25
|
end
|
24
26
|
|
@@ -27,6 +29,7 @@ appraise 'rails3.2' do
|
|
27
29
|
gem 'honeybadger', :path => '../'
|
28
30
|
gem 'better_errors', :require => false
|
29
31
|
gem 'faraday', '~> 0.7.0'
|
32
|
+
gem 'rack-mini-profiler', :require => false
|
30
33
|
gem 'capistrano', '~> 2.0'
|
31
34
|
end
|
32
35
|
|
@@ -35,6 +38,7 @@ appraise 'rails4' do
|
|
35
38
|
gem 'honeybadger', :path => '../'
|
36
39
|
gem 'better_errors', :require => false
|
37
40
|
gem 'faraday', '~> 0.7.0'
|
41
|
+
gem 'rack-mini-profiler', :require => false
|
38
42
|
gem 'capistrano', '~> 2.0'
|
39
43
|
end
|
40
44
|
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,15 @@
|
|
1
|
+
## Honeybadger 1.9.5 ##
|
2
|
+
|
3
|
+
* Call through middleware stack when disabling better_errors in test
|
4
|
+
task (fixes incorrect error notification bug).
|
5
|
+
|
6
|
+
*Joshua Wood*
|
7
|
+
|
8
|
+
* Fix test rake task/rack-mini-profiler bug where it requires an IP
|
9
|
+
address to identify users.
|
10
|
+
|
11
|
+
*Joshua Wood*
|
12
|
+
|
1
13
|
## Honeybadger 1.9.4 ##
|
2
14
|
|
3
15
|
* Fix bug where Faraday was getting a duplicate adapter when building
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
honeybadger (1.9.
|
4
|
+
honeybadger (1.9.5)
|
5
5
|
faraday (~> 0.7)
|
6
6
|
json
|
7
7
|
|
@@ -25,7 +25,7 @@ GEM
|
|
25
25
|
net-ssh-gateway (>= 1.1.0)
|
26
26
|
childprocess (0.3.6)
|
27
27
|
ffi (~> 1.0, >= 1.0.6)
|
28
|
-
coderay (1.0
|
28
|
+
coderay (1.1.0)
|
29
29
|
crack (0.4.1)
|
30
30
|
safe_yaml (~> 0.9.0)
|
31
31
|
cucumber (1.2.1)
|
@@ -36,8 +36,8 @@ GEM
|
|
36
36
|
diff-lcs (1.2.4)
|
37
37
|
faraday (0.8.8)
|
38
38
|
multipart-post (~> 1.2.0)
|
39
|
-
ffi (1.
|
40
|
-
ffi (1.
|
39
|
+
ffi (1.9.3)
|
40
|
+
ffi (1.9.3-java)
|
41
41
|
formatador (0.2.4)
|
42
42
|
fuubar (1.2.1)
|
43
43
|
rspec (~> 2.0)
|
@@ -48,19 +48,19 @@ GEM
|
|
48
48
|
gherkin (2.11.5-java)
|
49
49
|
json (>= 1.4.6)
|
50
50
|
growl (1.0.3)
|
51
|
-
guard (1.8.
|
51
|
+
guard (1.8.3)
|
52
52
|
formatador (>= 0.2.4)
|
53
|
-
listen (
|
53
|
+
listen (~> 1.3)
|
54
54
|
lumberjack (>= 1.0.2)
|
55
55
|
pry (>= 0.9.10)
|
56
56
|
thor (>= 0.14.6)
|
57
57
|
guard-rspec (3.0.2)
|
58
58
|
guard (>= 1.8)
|
59
59
|
rspec (~> 2.13)
|
60
|
-
highline (1.6.
|
60
|
+
highline (1.6.20)
|
61
61
|
json (1.7.3)
|
62
62
|
json (1.7.3-java)
|
63
|
-
listen (1.3.
|
63
|
+
listen (1.3.1)
|
64
64
|
rb-fsevent (>= 0.9.3)
|
65
65
|
rb-inotify (>= 0.9)
|
66
66
|
rb-kqueue (>= 0.2)
|
@@ -74,19 +74,19 @@ GEM
|
|
74
74
|
net-ssh (2.5.2)
|
75
75
|
net-ssh-gateway (1.1.0)
|
76
76
|
net-ssh (>= 1.99.1)
|
77
|
-
pry (0.9.12.
|
78
|
-
coderay (~> 1.0
|
77
|
+
pry (0.9.12.3)
|
78
|
+
coderay (~> 1.0)
|
79
79
|
method_source (~> 0.8)
|
80
80
|
slop (~> 3.4)
|
81
|
-
pry (0.9.12.
|
82
|
-
coderay (~> 1.0
|
81
|
+
pry (0.9.12.3-java)
|
82
|
+
coderay (~> 1.0)
|
83
83
|
method_source (~> 0.8)
|
84
84
|
slop (~> 3.4)
|
85
85
|
spoon (~> 0.0)
|
86
86
|
rack (1.1.3)
|
87
87
|
rake (10.0.4)
|
88
88
|
rb-fsevent (0.9.3)
|
89
|
-
rb-inotify (0.9.
|
89
|
+
rb-inotify (0.9.2)
|
90
90
|
ffi (>= 0.5.0)
|
91
91
|
rb-kqueue (0.2.0)
|
92
92
|
ffi (>= 0.5.0)
|
@@ -124,7 +124,7 @@ DEPENDENCIES
|
|
124
124
|
cucumber (~> 1.2.1)
|
125
125
|
fuubar
|
126
126
|
growl
|
127
|
-
guard
|
127
|
+
guard (~> 1.8.3)
|
128
128
|
guard-rspec
|
129
129
|
honeybadger!
|
130
130
|
rake
|
data/Guardfile
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
guard :rspec, cli
|
1
|
+
guard :rspec, :cli => '--format Fuubar --fail-fast', :all_after_pass => false do
|
2
2
|
watch(%r{^spec/.+_spec\.rb$})
|
3
3
|
watch(%r{^lib/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" }
|
4
4
|
watch('spec/spec_helper.rb') { "spec" }
|
data/Rakefile
CHANGED
@@ -90,13 +90,13 @@ end
|
|
90
90
|
|
91
91
|
desc "Create tag v#{version} and build and push #{gem_file} to Rubygems"
|
92
92
|
task :release => :build do
|
93
|
-
unless `git branch` =~ /^\* master$/
|
94
|
-
puts "You must be on the master branch to release!"
|
95
|
-
exit!
|
96
|
-
end
|
93
|
+
#unless `git branch` =~ /^\* master$/
|
94
|
+
#puts "You must be on the master branch to release!"
|
95
|
+
#exit!
|
96
|
+
#end
|
97
97
|
sh "git commit --allow-empty -a -m 'Release #{version}'"
|
98
98
|
sh "git tag v#{version}"
|
99
|
-
sh "git push origin
|
99
|
+
sh "git push origin 1.9"
|
100
100
|
sh "git push origin v#{version}"
|
101
101
|
sh "gem push pkg/#{name}-#{version}.gem"
|
102
102
|
end
|
data/features/rails.feature
CHANGED
@@ -68,6 +68,18 @@ Feature: Install the Gem in a Rails application
|
|
68
68
|
Then the output should contain "Better Errors detected"
|
69
69
|
And I should receive a Honeybadger notification
|
70
70
|
|
71
|
+
@rails_3
|
72
|
+
Scenario: Running the test task with rack-mini-profiler installed
|
73
|
+
When I configure Rails with:
|
74
|
+
"""
|
75
|
+
require 'rack-mini-profiler'
|
76
|
+
"""
|
77
|
+
And I configure the notifier to use "myapikey" as an API key
|
78
|
+
And I configure my application to require Honeybadger
|
79
|
+
And I run `rake honeybadger:test`
|
80
|
+
Then the output should not contain "rake aborted"
|
81
|
+
And I should receive a Honeybadger notification
|
82
|
+
|
71
83
|
Scenario: Rescue an exception in a controller
|
72
84
|
When I configure my application to require Honeybadger
|
73
85
|
And I configure Honeybadger with:
|
data/gemfiles/rack.gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: /Users/josh/code/honeybadger-ruby
|
3
3
|
specs:
|
4
|
-
honeybadger (1.9.
|
4
|
+
honeybadger (1.9.5)
|
5
5
|
faraday (~> 0.7)
|
6
6
|
json
|
7
7
|
|
@@ -23,11 +23,9 @@ GEM
|
|
23
23
|
net-sftp (>= 2.0.0)
|
24
24
|
net-ssh (>= 2.0.14)
|
25
25
|
net-ssh-gateway (>= 1.1.0)
|
26
|
-
celluloid (0.15.2)
|
27
|
-
timers (~> 1.1.0)
|
28
26
|
childprocess (0.3.9)
|
29
27
|
ffi (~> 1.0, >= 1.0.11)
|
30
|
-
coderay (1.0
|
28
|
+
coderay (1.1.0)
|
31
29
|
crack (0.4.1)
|
32
30
|
safe_yaml (~> 0.9.0)
|
33
31
|
cucumber (1.2.5)
|
@@ -49,21 +47,21 @@ GEM
|
|
49
47
|
gherkin (2.11.8)
|
50
48
|
multi_json (~> 1.3)
|
51
49
|
growl (1.0.3)
|
52
|
-
guard (
|
50
|
+
guard (1.8.3)
|
53
51
|
formatador (>= 0.2.4)
|
54
|
-
listen (~>
|
55
|
-
lumberjack (
|
56
|
-
pry (>= 0.9.
|
57
|
-
thor (>= 0.
|
58
|
-
guard-rspec (
|
59
|
-
guard (>=
|
60
|
-
rspec (~> 2.
|
52
|
+
listen (~> 1.3)
|
53
|
+
lumberjack (>= 1.0.2)
|
54
|
+
pry (>= 0.9.10)
|
55
|
+
thor (>= 0.14.6)
|
56
|
+
guard-rspec (3.0.2)
|
57
|
+
guard (>= 1.8)
|
58
|
+
rspec (~> 2.13)
|
61
59
|
highline (1.6.20)
|
62
60
|
json (1.8.1)
|
63
|
-
listen (
|
64
|
-
celluloid (>= 0.15.2)
|
61
|
+
listen (1.3.1)
|
65
62
|
rb-fsevent (>= 0.9.3)
|
66
63
|
rb-inotify (>= 0.9)
|
64
|
+
rb-kqueue (>= 0.2)
|
67
65
|
lumberjack (1.0.4)
|
68
66
|
method_source (0.8.2)
|
69
67
|
multi_json (1.8.2)
|
@@ -75,8 +73,8 @@ GEM
|
|
75
73
|
net-ssh (2.7.0)
|
76
74
|
net-ssh-gateway (1.2.0)
|
77
75
|
net-ssh (>= 2.6.5)
|
78
|
-
pry (0.9.12.
|
79
|
-
coderay (~> 1.0
|
76
|
+
pry (0.9.12.3)
|
77
|
+
coderay (~> 1.0)
|
80
78
|
method_source (~> 0.8)
|
81
79
|
slop (~> 3.4)
|
82
80
|
rack (1.5.2)
|
@@ -86,6 +84,8 @@ GEM
|
|
86
84
|
rb-fsevent (0.9.3)
|
87
85
|
rb-inotify (0.9.2)
|
88
86
|
ffi (>= 0.5.0)
|
87
|
+
rb-kqueue (0.2.0)
|
88
|
+
ffi (>= 0.5.0)
|
89
89
|
rspec (2.14.1)
|
90
90
|
rspec-core (~> 2.14.0)
|
91
91
|
rspec-expectations (~> 2.14.0)
|
@@ -106,7 +106,6 @@ GEM
|
|
106
106
|
slop (3.4.6)
|
107
107
|
thor (0.18.1)
|
108
108
|
tilt (1.4.1)
|
109
|
-
timers (1.1.0)
|
110
109
|
webmock (1.15.2)
|
111
110
|
addressable (>= 2.2.7)
|
112
111
|
crack (>= 0.3.2)
|
@@ -122,7 +121,7 @@ DEPENDENCIES
|
|
122
121
|
faraday (~> 0.7.0)
|
123
122
|
fuubar
|
124
123
|
growl
|
125
|
-
guard
|
124
|
+
guard (~> 1.8.3)
|
126
125
|
guard-rspec
|
127
126
|
honeybadger!
|
128
127
|
rack
|
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: /Users/josh/code/honeybadger-ruby
|
3
3
|
specs:
|
4
|
-
honeybadger (1.9.
|
4
|
+
honeybadger (1.9.5)
|
5
5
|
faraday (~> 0.7)
|
6
6
|
json
|
7
7
|
|
@@ -34,11 +34,9 @@ GEM
|
|
34
34
|
net-sftp (>= 2.0.0)
|
35
35
|
net-ssh (>= 2.0.14)
|
36
36
|
net-ssh-gateway (>= 1.1.0)
|
37
|
-
celluloid (0.15.2)
|
38
|
-
timers (~> 1.1.0)
|
39
37
|
childprocess (0.3.9)
|
40
38
|
ffi (~> 1.0, >= 1.0.11)
|
41
|
-
coderay (1.0
|
39
|
+
coderay (1.1.0)
|
42
40
|
crack (0.4.1)
|
43
41
|
safe_yaml (~> 0.9.0)
|
44
42
|
cucumber (1.2.5)
|
@@ -60,21 +58,21 @@ GEM
|
|
60
58
|
gherkin (2.11.8)
|
61
59
|
multi_json (~> 1.3)
|
62
60
|
growl (1.0.3)
|
63
|
-
guard (
|
61
|
+
guard (1.8.3)
|
64
62
|
formatador (>= 0.2.4)
|
65
|
-
listen (~>
|
66
|
-
lumberjack (
|
67
|
-
pry (>= 0.9.
|
68
|
-
thor (>= 0.
|
69
|
-
guard-rspec (
|
70
|
-
guard (>=
|
71
|
-
rspec (~> 2.
|
63
|
+
listen (~> 1.3)
|
64
|
+
lumberjack (>= 1.0.2)
|
65
|
+
pry (>= 0.9.10)
|
66
|
+
thor (>= 0.14.6)
|
67
|
+
guard-rspec (3.0.2)
|
68
|
+
guard (>= 1.8)
|
69
|
+
rspec (~> 2.13)
|
72
70
|
highline (1.6.20)
|
73
71
|
json (1.8.1)
|
74
|
-
listen (
|
75
|
-
celluloid (>= 0.15.2)
|
72
|
+
listen (1.3.1)
|
76
73
|
rb-fsevent (>= 0.9.3)
|
77
74
|
rb-inotify (>= 0.9)
|
75
|
+
rb-kqueue (>= 0.2)
|
78
76
|
lumberjack (1.0.4)
|
79
77
|
method_source (0.8.2)
|
80
78
|
multi_json (1.8.2)
|
@@ -86,8 +84,8 @@ GEM
|
|
86
84
|
net-ssh (2.7.0)
|
87
85
|
net-ssh-gateway (1.2.0)
|
88
86
|
net-ssh (>= 2.6.5)
|
89
|
-
pry (0.9.12.
|
90
|
-
coderay (~> 1.0
|
87
|
+
pry (0.9.12.3)
|
88
|
+
coderay (~> 1.0)
|
91
89
|
method_source (~> 0.8)
|
92
90
|
slop (~> 3.4)
|
93
91
|
rack (1.1.6)
|
@@ -102,6 +100,8 @@ GEM
|
|
102
100
|
rb-fsevent (0.9.3)
|
103
101
|
rb-inotify (0.9.2)
|
104
102
|
ffi (>= 0.5.0)
|
103
|
+
rb-kqueue (0.2.0)
|
104
|
+
ffi (>= 0.5.0)
|
105
105
|
rspec (2.14.1)
|
106
106
|
rspec-core (~> 2.14.0)
|
107
107
|
rspec-expectations (~> 2.14.0)
|
@@ -122,7 +122,6 @@ GEM
|
|
122
122
|
slop (3.4.6)
|
123
123
|
thor (0.18.1)
|
124
124
|
tilt (1.4.1)
|
125
|
-
timers (1.1.0)
|
126
125
|
webmock (1.15.2)
|
127
126
|
addressable (>= 2.2.7)
|
128
127
|
crack (>= 0.3.2)
|
@@ -138,7 +137,7 @@ DEPENDENCIES
|
|
138
137
|
faraday (~> 0.7.0)
|
139
138
|
fuubar
|
140
139
|
growl
|
141
|
-
guard
|
140
|
+
guard (~> 1.8.3)
|
142
141
|
guard-rspec
|
143
142
|
honeybadger!
|
144
143
|
rails (= 2.3.14)
|
data/gemfiles/rails3.0.gemfile
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: /Users/josh/code/honeybadger-ruby
|
3
3
|
specs:
|
4
|
-
honeybadger (1.9.
|
4
|
+
honeybadger (1.9.5)
|
5
5
|
faraday (~> 0.7)
|
6
6
|
json
|
7
7
|
|
@@ -55,8 +55,6 @@ GEM
|
|
55
55
|
net-sftp (>= 2.0.0)
|
56
56
|
net-ssh (>= 2.0.14)
|
57
57
|
net-ssh-gateway (>= 1.1.0)
|
58
|
-
celluloid (0.15.2)
|
59
|
-
timers (~> 1.1.0)
|
60
58
|
childprocess (0.3.9)
|
61
59
|
ffi (~> 1.0, >= 1.0.11)
|
62
60
|
coderay (1.1.0)
|
@@ -75,6 +73,7 @@ GEM
|
|
75
73
|
multipart-post (~> 1.1)
|
76
74
|
rack (~> 1.1)
|
77
75
|
ffi (1.9.3)
|
76
|
+
formatador (0.2.4)
|
78
77
|
fuubar (1.2.1)
|
79
78
|
rspec (~> 2.0)
|
80
79
|
rspec-instafail (~> 0.2.0)
|
@@ -82,25 +81,30 @@ GEM
|
|
82
81
|
gherkin (2.11.8)
|
83
82
|
multi_json (~> 1.3)
|
84
83
|
growl (1.0.3)
|
85
|
-
guard (1.
|
86
|
-
|
84
|
+
guard (1.8.3)
|
85
|
+
formatador (>= 0.2.4)
|
86
|
+
listen (~> 1.3)
|
87
|
+
lumberjack (>= 1.0.2)
|
88
|
+
pry (>= 0.9.10)
|
87
89
|
thor (>= 0.14.6)
|
88
|
-
guard-rspec (
|
89
|
-
guard (>= 1.
|
90
|
-
rspec (~> 2.
|
90
|
+
guard-rspec (3.0.2)
|
91
|
+
guard (>= 1.8)
|
92
|
+
rspec (~> 2.13)
|
91
93
|
highline (1.6.20)
|
92
94
|
i18n (0.5.0)
|
93
95
|
json (1.8.1)
|
94
|
-
listen (
|
95
|
-
celluloid (>= 0.15.2)
|
96
|
+
listen (1.3.1)
|
96
97
|
rb-fsevent (>= 0.9.3)
|
97
98
|
rb-inotify (>= 0.9)
|
99
|
+
rb-kqueue (>= 0.2)
|
100
|
+
lumberjack (1.0.4)
|
98
101
|
mail (2.2.20)
|
99
102
|
activesupport (>= 2.3.6)
|
100
103
|
i18n (>= 0.4.0)
|
101
104
|
mime-types (~> 1.16)
|
102
105
|
treetop (~> 1.4.8)
|
103
|
-
|
106
|
+
method_source (0.8.2)
|
107
|
+
mime-types (1.25.1)
|
104
108
|
multi_json (1.8.2)
|
105
109
|
multipart-post (1.2.0)
|
106
110
|
net-scp (1.1.2)
|
@@ -111,7 +115,13 @@ GEM
|
|
111
115
|
net-ssh-gateway (1.2.0)
|
112
116
|
net-ssh (>= 2.6.5)
|
113
117
|
polyglot (0.3.3)
|
118
|
+
pry (0.9.12.3)
|
119
|
+
coderay (~> 1.0)
|
120
|
+
method_source (~> 0.8)
|
121
|
+
slop (~> 3.4)
|
114
122
|
rack (1.2.8)
|
123
|
+
rack-mini-profiler (0.1.31)
|
124
|
+
rack (>= 1.1.3)
|
115
125
|
rack-mount (0.6.14)
|
116
126
|
rack (>= 1.0.0)
|
117
127
|
rack-test (0.5.7)
|
@@ -134,6 +144,8 @@ GEM
|
|
134
144
|
rb-fsevent (0.9.3)
|
135
145
|
rb-inotify (0.9.2)
|
136
146
|
ffi (>= 0.5.0)
|
147
|
+
rb-kqueue (0.2.0)
|
148
|
+
ffi (>= 0.5.0)
|
137
149
|
rdoc (3.12.2)
|
138
150
|
json (~> 1.4)
|
139
151
|
rspec (2.14.1)
|
@@ -153,9 +165,9 @@ GEM
|
|
153
165
|
backports
|
154
166
|
rack (~> 1.1, < 1.5)
|
155
167
|
tilt (>= 1.2.2, < 2.0)
|
168
|
+
slop (3.4.6)
|
156
169
|
thor (0.14.6)
|
157
170
|
tilt (1.4.1)
|
158
|
-
timers (1.1.0)
|
159
171
|
treetop (1.4.15)
|
160
172
|
polyglot
|
161
173
|
polyglot (>= 0.3.1)
|
@@ -176,9 +188,10 @@ DEPENDENCIES
|
|
176
188
|
faraday (~> 0.7.0)
|
177
189
|
fuubar
|
178
190
|
growl
|
179
|
-
guard
|
191
|
+
guard (~> 1.8.3)
|
180
192
|
guard-rspec
|
181
193
|
honeybadger!
|
194
|
+
rack-mini-profiler
|
182
195
|
rails (= 3.0.17)
|
183
196
|
rake
|
184
197
|
rspec (~> 2.14.0)
|