errplane 0.3.7 → 0.4.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +2 -1
- data/.rspec +2 -0
- data/.travis.yml +22 -0
- data/README.md +2 -10
- data/Rakefile +19 -31
- data/errplane.gemspec +5 -9
- data/gemfiles/Gemfile.rails-2.3.x +8 -0
- data/gemfiles/Gemfile.rails-2.3.x.lock +60 -0
- data/gemfiles/{rails_3.2.gemfile → Gemfile.rails-3.0.x} +2 -2
- data/gemfiles/Gemfile.rails-3.0.x.lock +82 -0
- data/gemfiles/{rails_3.1.gemfile → Gemfile.rails-3.1.x} +2 -1
- data/gemfiles/Gemfile.rails-3.1.x.lock +94 -0
- data/gemfiles/{rails_3.0.gemfile → Gemfile.rails-3.2.x} +2 -1
- data/gemfiles/Gemfile.rails-3.2.x.lock +92 -0
- data/lib/errplane.rb +15 -10
- data/lib/errplane/backtrace.rb +38 -0
- data/lib/errplane/black_box.rb +8 -5
- data/lib/errplane/capistrano.rb +0 -1
- data/lib/errplane/configuration.rb +30 -22
- data/lib/errplane/errplane_chef_handler.rb +2 -4
- data/lib/errplane/logger.rb +11 -0
- data/lib/errplane/rails/air_traffic_controller.rb +2 -1
- data/lib/errplane/rails/middleware/hijack_render_exception.rb +5 -2
- data/lib/errplane/railtie.rb +0 -9
- data/lib/errplane/transmitter.rb +19 -11
- data/lib/errplane/version.rb +1 -1
- data/lib/rails/generators/errplane/templates/initializer.rb +0 -3
- data/spec/app/rails2.rb +38 -0
- data/spec/app/{rails.rb → rails3.rb} +0 -3
- data/spec/integration/exceptions_spec.rb +27 -9
- data/spec/rails2/README +243 -0
- data/spec/rails2/Rakefile +10 -0
- data/spec/rails2/app/controllers/application_controller.rb +10 -0
- data/spec/rails2/app/controllers/widgets_controller.rb +5 -0
- data/spec/rails2/app/helpers/application_helper.rb +3 -0
- data/spec/rails2/app/helpers/widgets_helper.rb +1 -0
- data/spec/rails2/config/boot.rb +114 -0
- data/spec/rails2/config/database.yml +3 -0
- data/spec/rails2/config/environment.rb +33 -0
- data/spec/rails2/config/environments/development.rb +17 -0
- data/spec/rails2/config/environments/production.rb +28 -0
- data/spec/{internal/public/favicon.ico → rails2/config/environments/test.rb} +0 -0
- data/spec/rails2/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/rails2/config/initializers/cookie_verification_secret.rb +7 -0
- data/spec/{internal → rails2}/config/initializers/errplane.rb +0 -0
- data/spec/rails2/config/initializers/inflections.rb +10 -0
- data/spec/rails2/config/initializers/mime_types.rb +5 -0
- data/spec/rails2/config/initializers/new_rails_defaults.rb +21 -0
- data/spec/rails2/config/initializers/session_store.rb +15 -0
- data/spec/rails2/config/locales/en.yml +5 -0
- data/spec/rails2/config/routes.rb +3 -0
- data/spec/rails2/lib/tasks/rspec.rake +144 -0
- data/spec/rails2/log/development.log +0 -0
- data/spec/rails2/log/production.log +0 -0
- data/spec/rails2/log/server.log +0 -0
- data/spec/rails2/log/test.log +785 -0
- data/spec/rails2/public/404.html +30 -0
- data/spec/rails2/public/422.html +30 -0
- data/spec/rails2/public/500.html +30 -0
- data/spec/rails2/public/favicon.ico +0 -0
- data/spec/rails2/public/images/rails.png +0 -0
- data/spec/rails2/public/index.html +275 -0
- data/spec/rails2/public/javascripts/application.js +2 -0
- data/spec/rails2/public/javascripts/controls.js +963 -0
- data/spec/rails2/public/javascripts/dragdrop.js +973 -0
- data/spec/rails2/public/javascripts/effects.js +1128 -0
- data/spec/rails2/public/javascripts/prototype.js +4320 -0
- data/spec/rails2/public/robots.txt +5 -0
- data/spec/rails2/script/about +4 -0
- data/spec/rails2/script/autospec +6 -0
- data/spec/rails2/script/console +3 -0
- data/spec/rails2/script/dbconsole +3 -0
- data/spec/rails2/script/destroy +3 -0
- data/spec/rails2/script/generate +3 -0
- data/spec/rails2/script/performance/benchmarker +3 -0
- data/spec/rails2/script/performance/profiler +3 -0
- data/spec/rails2/script/plugin +3 -0
- data/spec/rails2/script/runner +3 -0
- data/spec/rails2/script/server +3 -0
- data/spec/rails2/script/spec +10 -0
- data/spec/rails2/test/performance/browsing_test.rb +9 -0
- data/spec/rails2/test/test_helper.rb +38 -0
- data/spec/spec_helper.rb +27 -16
- data/spec/suite.sh +39 -0
- data/spec/unit/backtrace_spec.rb +62 -0
- data/spec/unit/black_box_spec.rb +3 -3
- data/spec/unit/configuration_spec.rb +29 -0
- data/spec/unit/errplane_spec.rb +24 -15
- data/specs.watchr +21 -0
- metadata +194 -90
- data/gemfiles/rails_2.3.gemfile +0 -6
- data/gemfiles/rails_2.3.gemfile.lock +0 -148
- data/gemfiles/rails_3.0.gemfile.lock +0 -148
- data/gemfiles/rails_3.1.gemfile.lock +0 -148
- data/gemfiles/rails_3.2.gemfile.lock +0 -121
- data/lib/errplane/rails/udp_logger.rb +0 -54
- data/lib/errplane/syslogproto.rb +0 -7
- data/lib/errplane/syslogproto/common.rb +0 -81
- data/lib/errplane/syslogproto/logger.rb +0 -24
- data/lib/errplane/syslogproto/packet.rb +0 -107
- data/lib/errplane/syslogproto/parser.rb +0 -51
- data/spec/internal/app/controllers/application_controller.rb +0 -2
- data/spec/internal/app/controllers/widgets_controller.rb +0 -9
- data/spec/internal/config/database.yml +0 -3
- data/spec/internal/config/routes.rb +0 -3
- data/spec/internal/db/combustion_test.sqlite +0 -0
- data/spec/internal/db/schema.rb +0 -3
- data/spec/internal/log/.gitignore +0 -1
data/.gitignore
CHANGED
data/.rspec
ADDED
data/.travis.yml
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
language: ruby
|
2
|
+
rvm:
|
3
|
+
- 1.9.3
|
4
|
+
- 1.9.2
|
5
|
+
- jruby-18mode
|
6
|
+
- jruby-19mode
|
7
|
+
- 1.8.7
|
8
|
+
- ree
|
9
|
+
gemfile:
|
10
|
+
- gemfiles/Gemfile.rails-3.2.x
|
11
|
+
- gemfiles/Gemfile.rails-3.1.x
|
12
|
+
- gemfiles/Gemfile.rails-3.0.x
|
13
|
+
- gemfiles/Gemfile.rails-2.3.x
|
14
|
+
matrix:
|
15
|
+
allow_failures:
|
16
|
+
- gemfile: gemfiles/Gemfile.rails-2.3.x
|
17
|
+
notifications:
|
18
|
+
email:
|
19
|
+
- mechanics@errplane.com
|
20
|
+
on_success: change
|
21
|
+
on_failure: always
|
22
|
+
script: rake spec
|
data/README.md
CHANGED
@@ -1,5 +1,6 @@
|
|
1
1
|
Errplane
|
2
2
|
========
|
3
|
+
[![Build Status](https://secure.travis-ci.org/errplane/gem.png)](http://travis-ci.org/errplane/[gem])
|
3
4
|
|
4
5
|
This gem integrates your applications with [Errplane](http://errplane.com), a cloud-based tool for handling exceptions, log aggregation, uptime monitoring, and alerting.
|
5
6
|
|
@@ -69,19 +70,10 @@ The Errplane API will automatically attempt to group exceptions and threshold al
|
|
69
70
|
|
70
71
|
That example will ensure that any divide by zero errors in your application will be grouped together, while all other exceptions will be grouped by the normal logic. The custom_exception_data block gets yielded an [Errplane::BlackBox](https://github.com/errplane/gem/blob/master/lib/errplane/black_box.rb) object. Through that object you can access exception information, request information, and custom data. You can also add custom data that can be viewed later in Errplane. This is useful if you want to capture additional context that we haven't already thought of including. When setting `custom_data.hash` it should always be some sort of digest like SHA1 used in the above example.
|
71
72
|
|
72
|
-
Rails Remote Logger
|
73
|
-
-------------------
|
74
|
-
|
75
|
-
This gem supports remotely sending rails logs to Errplane to be alerted and monitored in our web console. To use this, run the generator above and uncomment the following line in `config/initializers/errplane.rb`.
|
76
|
-
|
77
|
-
# config.syslogd_port = "<port here>"
|
78
|
-
|
79
73
|
Chef Support
|
80
74
|
------------
|
81
75
|
|
82
|
-
We currently only support Exception notification on Chef
|
83
|
-
|
84
|
-
|
76
|
+
We currently only support Exception notification on Chef. See our wiki(https://github.com/errplane/docs/wiki/Chef-Integration) for details.
|
85
77
|
|
86
78
|
Contributing
|
87
79
|
------------
|
data/Rakefile
CHANGED
@@ -1,42 +1,30 @@
|
|
1
1
|
# encoding: utf-8
|
2
2
|
|
3
|
+
if ENV["BUNDLE_GEMFILE"] == File.expand_path("Gemfile")
|
4
|
+
ENV["BUNDLE_GEMFILE"] = "gemfiles/Gemfile.rails-3.2.x"
|
5
|
+
end
|
6
|
+
|
3
7
|
require 'bundler'
|
4
8
|
Bundler::GemHelper.install_tasks
|
5
9
|
|
6
|
-
|
7
|
-
require 'rspec/core
|
8
|
-
|
9
|
-
RSpec::Core::RakeTask.new(:spec) do |spec|
|
10
|
-
spec.pattern = FileList['spec/**/*_spec.rb']
|
11
|
-
end
|
10
|
+
begin
|
11
|
+
require 'rspec/core'
|
12
|
+
require 'rspec/core/rake_task'
|
12
13
|
|
13
|
-
|
14
|
+
RSpec::Core::RakeTask.new(:spec) do |t|
|
15
|
+
t.pattern = FileList['spec/**/*_spec.rb']
|
16
|
+
end
|
14
17
|
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
sh "BUNDLE_GEMFILE='gemfiles/#{gemfile}.gemfile' bundle exec rake -t spec"
|
21
|
-
end
|
18
|
+
RSpec.configure do |config|
|
19
|
+
config.color_enabled = true
|
20
|
+
config.tty = true
|
21
|
+
config.formatter = :documentation
|
22
|
+
config.mock_with :rr
|
22
23
|
end
|
24
|
+
rescue LoadError
|
25
|
+
require 'spec/rake/spectask'
|
23
26
|
|
24
|
-
|
25
|
-
|
26
|
-
%w(rails_3.2 rails_3.1 rails_3.0 rails_2.3 sinatra).each do |gemfile|
|
27
|
-
sh "BUNDLE_GEMFILE='gemfiles/#{gemfile}.gemfile' bundle --quiet"
|
28
|
-
sh "BUNDLE_GEMFILE='gemfiles/#{gemfile}.gemfile' bundle exec rake spec"
|
29
|
-
end
|
27
|
+
Spec::Rake::SpecTask.new(:spec) do |t|
|
28
|
+
t.pattern = FileList['spec/**/*_spec.rb']
|
30
29
|
end
|
31
30
|
end
|
32
|
-
|
33
|
-
# require 'rdoc/task'
|
34
|
-
|
35
|
-
# Rake::RDocTask.new do |rdoc|
|
36
|
-
# require 'errplane/version'
|
37
|
-
|
38
|
-
# rdoc.rdoc_dir = 'rdoc'
|
39
|
-
# rdoc.title = "Errplane #{Errplane::VERSION}"
|
40
|
-
# rdoc.rdoc_files.include('README*')
|
41
|
-
# rdoc.rdoc_files.include('lib/**/*.rb')
|
42
|
-
# end
|
data/errplane.gemspec
CHANGED
@@ -23,17 +23,13 @@ Gem::Specification.new do |s|
|
|
23
23
|
s.add_dependency 'activesupport', ['>= 2.3.14']
|
24
24
|
s.add_dependency 'actionpack', ['>= 2.3.14']
|
25
25
|
s.add_dependency 'json', ['>= 0']
|
26
|
-
s.add_dependency 'rails', ['>= 3.0']
|
27
26
|
|
28
27
|
s.add_development_dependency 'bundler', ['>= 1.0.0']
|
29
|
-
s.add_development_dependency '
|
30
|
-
s.add_development_dependency 'sqlite3', ['>= 0']
|
28
|
+
s.add_development_dependency 'fakeweb', ['>= 0']
|
31
29
|
s.add_development_dependency 'tzinfo', ['>= 0']
|
32
|
-
s.add_development_dependency '
|
33
|
-
s.add_development_dependency 'rspec-rails', ['>= 0']
|
34
|
-
s.add_development_dependency 'rr', ['>= 0']
|
35
|
-
s.add_development_dependency 'capybara', ['>= 1.0']
|
36
|
-
s.add_development_dependency 'database_cleaner', ['>= 0']
|
30
|
+
s.add_development_dependency 'rake', ['>= 0']
|
37
31
|
s.add_development_dependency 'rdoc', ['>= 0']
|
38
|
-
s.add_development_dependency '
|
32
|
+
s.add_development_dependency 'rr', ['>= 0']
|
33
|
+
s.add_development_dependency 'rspec', ['>= 0']
|
34
|
+
s.add_development_dependency 'watchr', ['>= 0']
|
39
35
|
end
|
@@ -0,0 +1,60 @@
|
|
1
|
+
PATH
|
2
|
+
remote: /Users/todd/Projects/errplane/gem
|
3
|
+
specs:
|
4
|
+
errplane (0.3.8)
|
5
|
+
actionpack (>= 2.3.14)
|
6
|
+
activesupport (>= 2.3.14)
|
7
|
+
json
|
8
|
+
|
9
|
+
GEM
|
10
|
+
remote: http://rubygems.org/
|
11
|
+
specs:
|
12
|
+
actionmailer (2.3.14)
|
13
|
+
actionpack (= 2.3.14)
|
14
|
+
actionpack (2.3.14)
|
15
|
+
activesupport (= 2.3.14)
|
16
|
+
rack (~> 1.1.0)
|
17
|
+
activerecord (2.3.14)
|
18
|
+
activesupport (= 2.3.14)
|
19
|
+
activeresource (2.3.14)
|
20
|
+
activesupport (= 2.3.14)
|
21
|
+
activesupport (2.3.14)
|
22
|
+
fakeweb (1.3.0)
|
23
|
+
hoe (3.0.6)
|
24
|
+
rake (~> 0.8)
|
25
|
+
json (1.7.3)
|
26
|
+
rack (1.1.3)
|
27
|
+
rails (2.3.14)
|
28
|
+
actionmailer (= 2.3.14)
|
29
|
+
actionpack (= 2.3.14)
|
30
|
+
activerecord (= 2.3.14)
|
31
|
+
activeresource (= 2.3.14)
|
32
|
+
activesupport (= 2.3.14)
|
33
|
+
rake (>= 0.8.3)
|
34
|
+
rake (0.9.2.2)
|
35
|
+
rdoc (3.12)
|
36
|
+
json (~> 1.4)
|
37
|
+
rr (1.0.4)
|
38
|
+
rspec (1.3.2)
|
39
|
+
rspec-rails (1.3.4)
|
40
|
+
rack (>= 1.0.0)
|
41
|
+
rspec (~> 1.3.1)
|
42
|
+
test-unit (1.2.3)
|
43
|
+
hoe (>= 1.5.1)
|
44
|
+
tzinfo (0.3.33)
|
45
|
+
|
46
|
+
PLATFORMS
|
47
|
+
ruby
|
48
|
+
|
49
|
+
DEPENDENCIES
|
50
|
+
bundler (>= 1.0.0)
|
51
|
+
errplane!
|
52
|
+
fakeweb
|
53
|
+
rails (~> 2.3.14)
|
54
|
+
rake
|
55
|
+
rdoc
|
56
|
+
rr
|
57
|
+
rspec (~> 1.3)
|
58
|
+
rspec-rails (~> 1.3)
|
59
|
+
test-unit (= 1.2.3)
|
60
|
+
tzinfo
|
@@ -0,0 +1,82 @@
|
|
1
|
+
PATH
|
2
|
+
remote: /Users/todd/Projects/errplane/gem
|
3
|
+
specs:
|
4
|
+
errplane (0.4.0)
|
5
|
+
actionpack (>= 2.3.14)
|
6
|
+
activesupport (>= 2.3.14)
|
7
|
+
json
|
8
|
+
|
9
|
+
GEM
|
10
|
+
remote: http://rubygems.org/
|
11
|
+
specs:
|
12
|
+
abstract (1.0.0)
|
13
|
+
actionpack (3.0.15)
|
14
|
+
activemodel (= 3.0.15)
|
15
|
+
activesupport (= 3.0.15)
|
16
|
+
builder (~> 2.1.2)
|
17
|
+
erubis (~> 2.6.6)
|
18
|
+
i18n (~> 0.5.0)
|
19
|
+
rack (~> 1.2.5)
|
20
|
+
rack-mount (~> 0.6.14)
|
21
|
+
rack-test (~> 0.5.7)
|
22
|
+
tzinfo (~> 0.3.23)
|
23
|
+
activemodel (3.0.15)
|
24
|
+
activesupport (= 3.0.15)
|
25
|
+
builder (~> 2.1.2)
|
26
|
+
i18n (~> 0.5.0)
|
27
|
+
activesupport (3.0.15)
|
28
|
+
builder (2.1.2)
|
29
|
+
diff-lcs (1.1.3)
|
30
|
+
erubis (2.6.6)
|
31
|
+
abstract (>= 1.0.0)
|
32
|
+
fakeweb (1.3.0)
|
33
|
+
i18n (0.5.0)
|
34
|
+
json (1.7.3)
|
35
|
+
rack (1.2.5)
|
36
|
+
rack-mount (0.6.14)
|
37
|
+
rack (>= 1.0.0)
|
38
|
+
rack-test (0.5.7)
|
39
|
+
rack (>= 1.0)
|
40
|
+
railties (3.0.15)
|
41
|
+
actionpack (= 3.0.15)
|
42
|
+
activesupport (= 3.0.15)
|
43
|
+
rake (>= 0.8.7)
|
44
|
+
rdoc (~> 3.4)
|
45
|
+
thor (~> 0.14.4)
|
46
|
+
rake (0.9.2.2)
|
47
|
+
rdoc (3.12)
|
48
|
+
json (~> 1.4)
|
49
|
+
rr (1.0.4)
|
50
|
+
rspec (2.11.0)
|
51
|
+
rspec-core (~> 2.11.0)
|
52
|
+
rspec-expectations (~> 2.11.0)
|
53
|
+
rspec-mocks (~> 2.11.0)
|
54
|
+
rspec-core (2.11.1)
|
55
|
+
rspec-expectations (2.11.1)
|
56
|
+
diff-lcs (~> 1.1.3)
|
57
|
+
rspec-mocks (2.11.1)
|
58
|
+
rspec-rails (2.11.0)
|
59
|
+
actionpack (>= 3.0)
|
60
|
+
activesupport (>= 3.0)
|
61
|
+
railties (>= 3.0)
|
62
|
+
rspec (~> 2.11.0)
|
63
|
+
thor (0.14.6)
|
64
|
+
tzinfo (0.3.33)
|
65
|
+
watchr (0.7)
|
66
|
+
|
67
|
+
PLATFORMS
|
68
|
+
ruby
|
69
|
+
|
70
|
+
DEPENDENCIES
|
71
|
+
actionpack (~> 3.0.15)
|
72
|
+
activesupport (~> 3.0.15)
|
73
|
+
bundler (>= 1.0.0)
|
74
|
+
errplane!
|
75
|
+
fakeweb
|
76
|
+
rake
|
77
|
+
rdoc
|
78
|
+
rr
|
79
|
+
rspec
|
80
|
+
rspec-rails (>= 2.0)
|
81
|
+
tzinfo
|
82
|
+
watchr
|
@@ -0,0 +1,94 @@
|
|
1
|
+
PATH
|
2
|
+
remote: /Users/todd/Projects/errplane/gem
|
3
|
+
specs:
|
4
|
+
errplane (0.4.0)
|
5
|
+
actionpack (>= 2.3.14)
|
6
|
+
activesupport (>= 2.3.14)
|
7
|
+
json
|
8
|
+
|
9
|
+
GEM
|
10
|
+
remote: http://rubygems.org/
|
11
|
+
specs:
|
12
|
+
actionpack (3.1.6)
|
13
|
+
activemodel (= 3.1.6)
|
14
|
+
activesupport (= 3.1.6)
|
15
|
+
builder (~> 3.0.0)
|
16
|
+
erubis (~> 2.7.0)
|
17
|
+
i18n (~> 0.6)
|
18
|
+
rack (~> 1.3.6)
|
19
|
+
rack-cache (~> 1.2)
|
20
|
+
rack-mount (~> 0.8.2)
|
21
|
+
rack-test (~> 0.6.1)
|
22
|
+
sprockets (~> 2.0.4)
|
23
|
+
activemodel (3.1.6)
|
24
|
+
activesupport (= 3.1.6)
|
25
|
+
builder (~> 3.0.0)
|
26
|
+
i18n (~> 0.6)
|
27
|
+
activesupport (3.1.6)
|
28
|
+
multi_json (>= 1.0, < 1.3)
|
29
|
+
builder (3.0.0)
|
30
|
+
diff-lcs (1.1.3)
|
31
|
+
erubis (2.7.0)
|
32
|
+
fakeweb (1.3.0)
|
33
|
+
hike (1.2.1)
|
34
|
+
i18n (0.6.0)
|
35
|
+
json (1.7.3)
|
36
|
+
multi_json (1.2.0)
|
37
|
+
rack (1.3.6)
|
38
|
+
rack-cache (1.2)
|
39
|
+
rack (>= 0.4)
|
40
|
+
rack-mount (0.8.3)
|
41
|
+
rack (>= 1.0.0)
|
42
|
+
rack-ssl (1.3.2)
|
43
|
+
rack
|
44
|
+
rack-test (0.6.1)
|
45
|
+
rack (>= 1.0)
|
46
|
+
railties (3.1.6)
|
47
|
+
actionpack (= 3.1.6)
|
48
|
+
activesupport (= 3.1.6)
|
49
|
+
rack-ssl (~> 1.3.2)
|
50
|
+
rake (>= 0.8.7)
|
51
|
+
rdoc (~> 3.4)
|
52
|
+
thor (~> 0.14.6)
|
53
|
+
rake (0.9.2.2)
|
54
|
+
rdoc (3.12)
|
55
|
+
json (~> 1.4)
|
56
|
+
rr (1.0.4)
|
57
|
+
rspec (2.11.0)
|
58
|
+
rspec-core (~> 2.11.0)
|
59
|
+
rspec-expectations (~> 2.11.0)
|
60
|
+
rspec-mocks (~> 2.11.0)
|
61
|
+
rspec-core (2.11.1)
|
62
|
+
rspec-expectations (2.11.1)
|
63
|
+
diff-lcs (~> 1.1.3)
|
64
|
+
rspec-mocks (2.11.1)
|
65
|
+
rspec-rails (2.11.0)
|
66
|
+
actionpack (>= 3.0)
|
67
|
+
activesupport (>= 3.0)
|
68
|
+
railties (>= 3.0)
|
69
|
+
rspec (~> 2.11.0)
|
70
|
+
sprockets (2.0.4)
|
71
|
+
hike (~> 1.2)
|
72
|
+
rack (~> 1.0)
|
73
|
+
tilt (~> 1.1, != 1.3.0)
|
74
|
+
thor (0.14.6)
|
75
|
+
tilt (1.3.3)
|
76
|
+
tzinfo (0.3.33)
|
77
|
+
watchr (0.7)
|
78
|
+
|
79
|
+
PLATFORMS
|
80
|
+
ruby
|
81
|
+
|
82
|
+
DEPENDENCIES
|
83
|
+
actionpack (~> 3.1.5)
|
84
|
+
activesupport (~> 3.1.5)
|
85
|
+
bundler (>= 1.0.0)
|
86
|
+
errplane!
|
87
|
+
fakeweb
|
88
|
+
rake
|
89
|
+
rdoc
|
90
|
+
rr
|
91
|
+
rspec
|
92
|
+
rspec-rails (>= 2.0)
|
93
|
+
tzinfo
|
94
|
+
watchr
|
@@ -0,0 +1,92 @@
|
|
1
|
+
PATH
|
2
|
+
remote: /Users/todd/Projects/errplane/gem
|
3
|
+
specs:
|
4
|
+
errplane (0.4.0)
|
5
|
+
actionpack (>= 2.3.14)
|
6
|
+
activesupport (>= 2.3.14)
|
7
|
+
json
|
8
|
+
|
9
|
+
GEM
|
10
|
+
remote: http://rubygems.org/
|
11
|
+
specs:
|
12
|
+
actionpack (3.2.6)
|
13
|
+
activemodel (= 3.2.6)
|
14
|
+
activesupport (= 3.2.6)
|
15
|
+
builder (~> 3.0.0)
|
16
|
+
erubis (~> 2.7.0)
|
17
|
+
journey (~> 1.0.1)
|
18
|
+
rack (~> 1.4.0)
|
19
|
+
rack-cache (~> 1.2)
|
20
|
+
rack-test (~> 0.6.1)
|
21
|
+
sprockets (~> 2.1.3)
|
22
|
+
activemodel (3.2.6)
|
23
|
+
activesupport (= 3.2.6)
|
24
|
+
builder (~> 3.0.0)
|
25
|
+
activesupport (3.2.6)
|
26
|
+
i18n (~> 0.6)
|
27
|
+
multi_json (~> 1.0)
|
28
|
+
builder (3.0.0)
|
29
|
+
diff-lcs (1.1.3)
|
30
|
+
erubis (2.7.0)
|
31
|
+
fakeweb (1.3.0)
|
32
|
+
hike (1.2.1)
|
33
|
+
i18n (0.6.0)
|
34
|
+
journey (1.0.4)
|
35
|
+
json (1.7.3)
|
36
|
+
multi_json (1.3.6)
|
37
|
+
rack (1.4.1)
|
38
|
+
rack-cache (1.2)
|
39
|
+
rack (>= 0.4)
|
40
|
+
rack-ssl (1.3.2)
|
41
|
+
rack
|
42
|
+
rack-test (0.6.1)
|
43
|
+
rack (>= 1.0)
|
44
|
+
railties (3.2.6)
|
45
|
+
actionpack (= 3.2.6)
|
46
|
+
activesupport (= 3.2.6)
|
47
|
+
rack-ssl (~> 1.3.2)
|
48
|
+
rake (>= 0.8.7)
|
49
|
+
rdoc (~> 3.4)
|
50
|
+
thor (>= 0.14.6, < 2.0)
|
51
|
+
rake (0.9.2.2)
|
52
|
+
rdoc (3.12)
|
53
|
+
json (~> 1.4)
|
54
|
+
rr (1.0.4)
|
55
|
+
rspec (2.11.0)
|
56
|
+
rspec-core (~> 2.11.0)
|
57
|
+
rspec-expectations (~> 2.11.0)
|
58
|
+
rspec-mocks (~> 2.11.0)
|
59
|
+
rspec-core (2.11.1)
|
60
|
+
rspec-expectations (2.11.1)
|
61
|
+
diff-lcs (~> 1.1.3)
|
62
|
+
rspec-mocks (2.11.1)
|
63
|
+
rspec-rails (2.11.0)
|
64
|
+
actionpack (>= 3.0)
|
65
|
+
activesupport (>= 3.0)
|
66
|
+
railties (>= 3.0)
|
67
|
+
rspec (~> 2.11.0)
|
68
|
+
sprockets (2.1.3)
|
69
|
+
hike (~> 1.2)
|
70
|
+
rack (~> 1.0)
|
71
|
+
tilt (~> 1.1, != 1.3.0)
|
72
|
+
thor (0.15.4)
|
73
|
+
tilt (1.3.3)
|
74
|
+
tzinfo (0.3.33)
|
75
|
+
watchr (0.7)
|
76
|
+
|
77
|
+
PLATFORMS
|
78
|
+
ruby
|
79
|
+
|
80
|
+
DEPENDENCIES
|
81
|
+
actionpack (~> 3.2.3)
|
82
|
+
activesupport (~> 3.2.3)
|
83
|
+
bundler (>= 1.0.0)
|
84
|
+
errplane!
|
85
|
+
fakeweb
|
86
|
+
rake
|
87
|
+
rdoc
|
88
|
+
rr
|
89
|
+
rspec
|
90
|
+
rspec-rails (>= 2.0)
|
91
|
+
tzinfo
|
92
|
+
watchr
|