errplane 0.3.7 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (108) hide show
  1. data/.gitignore +2 -1
  2. data/.rspec +2 -0
  3. data/.travis.yml +22 -0
  4. data/README.md +2 -10
  5. data/Rakefile +19 -31
  6. data/errplane.gemspec +5 -9
  7. data/gemfiles/Gemfile.rails-2.3.x +8 -0
  8. data/gemfiles/Gemfile.rails-2.3.x.lock +60 -0
  9. data/gemfiles/{rails_3.2.gemfile → Gemfile.rails-3.0.x} +2 -2
  10. data/gemfiles/Gemfile.rails-3.0.x.lock +82 -0
  11. data/gemfiles/{rails_3.1.gemfile → Gemfile.rails-3.1.x} +2 -1
  12. data/gemfiles/Gemfile.rails-3.1.x.lock +94 -0
  13. data/gemfiles/{rails_3.0.gemfile → Gemfile.rails-3.2.x} +2 -1
  14. data/gemfiles/Gemfile.rails-3.2.x.lock +92 -0
  15. data/lib/errplane.rb +15 -10
  16. data/lib/errplane/backtrace.rb +38 -0
  17. data/lib/errplane/black_box.rb +8 -5
  18. data/lib/errplane/capistrano.rb +0 -1
  19. data/lib/errplane/configuration.rb +30 -22
  20. data/lib/errplane/errplane_chef_handler.rb +2 -4
  21. data/lib/errplane/logger.rb +11 -0
  22. data/lib/errplane/rails/air_traffic_controller.rb +2 -1
  23. data/lib/errplane/rails/middleware/hijack_render_exception.rb +5 -2
  24. data/lib/errplane/railtie.rb +0 -9
  25. data/lib/errplane/transmitter.rb +19 -11
  26. data/lib/errplane/version.rb +1 -1
  27. data/lib/rails/generators/errplane/templates/initializer.rb +0 -3
  28. data/spec/app/rails2.rb +38 -0
  29. data/spec/app/{rails.rb → rails3.rb} +0 -3
  30. data/spec/integration/exceptions_spec.rb +27 -9
  31. data/spec/rails2/README +243 -0
  32. data/spec/rails2/Rakefile +10 -0
  33. data/spec/rails2/app/controllers/application_controller.rb +10 -0
  34. data/spec/rails2/app/controllers/widgets_controller.rb +5 -0
  35. data/spec/rails2/app/helpers/application_helper.rb +3 -0
  36. data/spec/rails2/app/helpers/widgets_helper.rb +1 -0
  37. data/spec/rails2/config/boot.rb +114 -0
  38. data/spec/rails2/config/database.yml +3 -0
  39. data/spec/rails2/config/environment.rb +33 -0
  40. data/spec/rails2/config/environments/development.rb +17 -0
  41. data/spec/rails2/config/environments/production.rb +28 -0
  42. data/spec/{internal/public/favicon.ico → rails2/config/environments/test.rb} +0 -0
  43. data/spec/rails2/config/initializers/backtrace_silencers.rb +7 -0
  44. data/spec/rails2/config/initializers/cookie_verification_secret.rb +7 -0
  45. data/spec/{internal → rails2}/config/initializers/errplane.rb +0 -0
  46. data/spec/rails2/config/initializers/inflections.rb +10 -0
  47. data/spec/rails2/config/initializers/mime_types.rb +5 -0
  48. data/spec/rails2/config/initializers/new_rails_defaults.rb +21 -0
  49. data/spec/rails2/config/initializers/session_store.rb +15 -0
  50. data/spec/rails2/config/locales/en.yml +5 -0
  51. data/spec/rails2/config/routes.rb +3 -0
  52. data/spec/rails2/lib/tasks/rspec.rake +144 -0
  53. data/spec/rails2/log/development.log +0 -0
  54. data/spec/rails2/log/production.log +0 -0
  55. data/spec/rails2/log/server.log +0 -0
  56. data/spec/rails2/log/test.log +785 -0
  57. data/spec/rails2/public/404.html +30 -0
  58. data/spec/rails2/public/422.html +30 -0
  59. data/spec/rails2/public/500.html +30 -0
  60. data/spec/rails2/public/favicon.ico +0 -0
  61. data/spec/rails2/public/images/rails.png +0 -0
  62. data/spec/rails2/public/index.html +275 -0
  63. data/spec/rails2/public/javascripts/application.js +2 -0
  64. data/spec/rails2/public/javascripts/controls.js +963 -0
  65. data/spec/rails2/public/javascripts/dragdrop.js +973 -0
  66. data/spec/rails2/public/javascripts/effects.js +1128 -0
  67. data/spec/rails2/public/javascripts/prototype.js +4320 -0
  68. data/spec/rails2/public/robots.txt +5 -0
  69. data/spec/rails2/script/about +4 -0
  70. data/spec/rails2/script/autospec +6 -0
  71. data/spec/rails2/script/console +3 -0
  72. data/spec/rails2/script/dbconsole +3 -0
  73. data/spec/rails2/script/destroy +3 -0
  74. data/spec/rails2/script/generate +3 -0
  75. data/spec/rails2/script/performance/benchmarker +3 -0
  76. data/spec/rails2/script/performance/profiler +3 -0
  77. data/spec/rails2/script/plugin +3 -0
  78. data/spec/rails2/script/runner +3 -0
  79. data/spec/rails2/script/server +3 -0
  80. data/spec/rails2/script/spec +10 -0
  81. data/spec/rails2/test/performance/browsing_test.rb +9 -0
  82. data/spec/rails2/test/test_helper.rb +38 -0
  83. data/spec/spec_helper.rb +27 -16
  84. data/spec/suite.sh +39 -0
  85. data/spec/unit/backtrace_spec.rb +62 -0
  86. data/spec/unit/black_box_spec.rb +3 -3
  87. data/spec/unit/configuration_spec.rb +29 -0
  88. data/spec/unit/errplane_spec.rb +24 -15
  89. data/specs.watchr +21 -0
  90. metadata +194 -90
  91. data/gemfiles/rails_2.3.gemfile +0 -6
  92. data/gemfiles/rails_2.3.gemfile.lock +0 -148
  93. data/gemfiles/rails_3.0.gemfile.lock +0 -148
  94. data/gemfiles/rails_3.1.gemfile.lock +0 -148
  95. data/gemfiles/rails_3.2.gemfile.lock +0 -121
  96. data/lib/errplane/rails/udp_logger.rb +0 -54
  97. data/lib/errplane/syslogproto.rb +0 -7
  98. data/lib/errplane/syslogproto/common.rb +0 -81
  99. data/lib/errplane/syslogproto/logger.rb +0 -24
  100. data/lib/errplane/syslogproto/packet.rb +0 -107
  101. data/lib/errplane/syslogproto/parser.rb +0 -51
  102. data/spec/internal/app/controllers/application_controller.rb +0 -2
  103. data/spec/internal/app/controllers/widgets_controller.rb +0 -9
  104. data/spec/internal/config/database.yml +0 -3
  105. data/spec/internal/config/routes.rb +0 -3
  106. data/spec/internal/db/combustion_test.sqlite +0 -0
  107. data/spec/internal/db/schema.rb +0 -3
  108. data/spec/internal/log/.gitignore +0 -1
@@ -1,148 +0,0 @@
1
- PATH
2
- remote: /Users/todd/Projects/errplane/gem
3
- specs:
4
- errplane (0.2.5)
5
- actionpack (>= 2.3.14)
6
- activesupport (>= 2.3.14)
7
-
8
- GEM
9
- remote: http://rubygems.org/
10
- specs:
11
- actionmailer (3.2.3)
12
- actionpack (= 3.2.3)
13
- mail (~> 2.4.4)
14
- actionpack (3.2.3)
15
- activemodel (= 3.2.3)
16
- activesupport (= 3.2.3)
17
- builder (~> 3.0.0)
18
- erubis (~> 2.7.0)
19
- journey (~> 1.0.1)
20
- rack (~> 1.4.0)
21
- rack-cache (~> 1.2)
22
- rack-test (~> 0.6.1)
23
- sprockets (~> 2.1.2)
24
- activemodel (3.2.3)
25
- activesupport (= 3.2.3)
26
- builder (~> 3.0.0)
27
- activerecord (3.2.3)
28
- activemodel (= 3.2.3)
29
- activesupport (= 3.2.3)
30
- arel (~> 3.0.2)
31
- tzinfo (~> 0.3.29)
32
- activeresource (3.2.3)
33
- activemodel (= 3.2.3)
34
- activesupport (= 3.2.3)
35
- activesupport (3.2.3)
36
- i18n (~> 0.6)
37
- multi_json (~> 1.0)
38
- addressable (2.2.8)
39
- arel (3.0.2)
40
- builder (3.0.0)
41
- capybara (1.1.2)
42
- mime-types (>= 1.16)
43
- nokogiri (>= 1.3.3)
44
- rack (>= 1.0.0)
45
- rack-test (>= 0.5.4)
46
- selenium-webdriver (~> 2.0)
47
- xpath (~> 0.1.4)
48
- childprocess (0.3.2)
49
- ffi (~> 1.0.6)
50
- crack (0.3.1)
51
- database_cleaner (0.8.0)
52
- diff-lcs (1.1.3)
53
- erubis (2.7.0)
54
- ffi (1.0.11)
55
- hike (1.2.1)
56
- i18n (0.6.0)
57
- journey (1.0.4)
58
- json (1.7.1)
59
- libwebsocket (0.1.3)
60
- addressable
61
- mail (2.4.4)
62
- i18n (>= 0.4.0)
63
- mime-types (~> 1.16)
64
- treetop (~> 1.4.8)
65
- mime-types (1.18)
66
- multi_json (1.3.4)
67
- nokogiri (1.5.2)
68
- polyglot (0.3.3)
69
- rack (1.4.1)
70
- rack-cache (1.2)
71
- rack (>= 0.4)
72
- rack-ssl (1.3.2)
73
- rack
74
- rack-test (0.6.1)
75
- rack (>= 1.0)
76
- rails (3.2.3)
77
- actionmailer (= 3.2.3)
78
- actionpack (= 3.2.3)
79
- activerecord (= 3.2.3)
80
- activeresource (= 3.2.3)
81
- activesupport (= 3.2.3)
82
- bundler (~> 1.0)
83
- railties (= 3.2.3)
84
- railties (3.2.3)
85
- actionpack (= 3.2.3)
86
- activesupport (= 3.2.3)
87
- rack-ssl (~> 1.3.2)
88
- rake (>= 0.8.7)
89
- rdoc (~> 3.4)
90
- thor (~> 0.14.6)
91
- rake (0.9.2.2)
92
- rdoc (3.12)
93
- json (~> 1.4)
94
- rr (1.0.4)
95
- rspec (2.10.0)
96
- rspec-core (~> 2.10.0)
97
- rspec-expectations (~> 2.10.0)
98
- rspec-mocks (~> 2.10.0)
99
- rspec-core (2.10.0)
100
- rspec-expectations (2.10.0)
101
- diff-lcs (~> 1.1.3)
102
- rspec-mocks (2.10.1)
103
- rspec-rails (2.10.1)
104
- actionpack (>= 3.0)
105
- activesupport (>= 3.0)
106
- railties (>= 3.0)
107
- rspec (~> 2.10.0)
108
- rubyzip (0.9.8)
109
- selenium-webdriver (2.21.2)
110
- childprocess (>= 0.2.5)
111
- ffi (~> 1.0)
112
- libwebsocket (~> 0.1.3)
113
- multi_json (~> 1.0)
114
- rubyzip
115
- sprockets (2.1.3)
116
- hike (~> 1.2)
117
- rack (~> 1.0)
118
- tilt (~> 1.1, != 1.3.0)
119
- sqlite3 (1.3.6)
120
- thor (0.14.6)
121
- tilt (1.3.3)
122
- treetop (1.4.10)
123
- polyglot
124
- polyglot (>= 0.3.1)
125
- tzinfo (0.3.33)
126
- webmock (1.8.7)
127
- addressable (>= 2.2.7)
128
- crack (>= 0.1.7)
129
- xpath (0.1.4)
130
- nokogiri (~> 1.3)
131
-
132
- PLATFORMS
133
- ruby
134
-
135
- DEPENDENCIES
136
- bundler (>= 1.0.0)
137
- capybara (>= 1.0)
138
- database_cleaner
139
- errplane!
140
- rails (>= 2.3.14)
141
- rake
142
- rdoc
143
- rr
144
- rspec
145
- rspec-rails (>= 1.3)
146
- sqlite3
147
- tzinfo
148
- webmock
@@ -1,148 +0,0 @@
1
- PATH
2
- remote: /Users/todd/Projects/errplane/gem
3
- specs:
4
- errplane (0.2.5)
5
- actionpack (>= 2.3.14)
6
- activesupport (>= 2.3.14)
7
-
8
- GEM
9
- remote: http://rubygems.org/
10
- specs:
11
- actionmailer (3.2.3)
12
- actionpack (= 3.2.3)
13
- mail (~> 2.4.4)
14
- actionpack (3.2.3)
15
- activemodel (= 3.2.3)
16
- activesupport (= 3.2.3)
17
- builder (~> 3.0.0)
18
- erubis (~> 2.7.0)
19
- journey (~> 1.0.1)
20
- rack (~> 1.4.0)
21
- rack-cache (~> 1.2)
22
- rack-test (~> 0.6.1)
23
- sprockets (~> 2.1.2)
24
- activemodel (3.2.3)
25
- activesupport (= 3.2.3)
26
- builder (~> 3.0.0)
27
- activerecord (3.2.3)
28
- activemodel (= 3.2.3)
29
- activesupport (= 3.2.3)
30
- arel (~> 3.0.2)
31
- tzinfo (~> 0.3.29)
32
- activeresource (3.2.3)
33
- activemodel (= 3.2.3)
34
- activesupport (= 3.2.3)
35
- activesupport (3.2.3)
36
- i18n (~> 0.6)
37
- multi_json (~> 1.0)
38
- addressable (2.2.8)
39
- arel (3.0.2)
40
- builder (3.0.0)
41
- capybara (1.1.2)
42
- mime-types (>= 1.16)
43
- nokogiri (>= 1.3.3)
44
- rack (>= 1.0.0)
45
- rack-test (>= 0.5.4)
46
- selenium-webdriver (~> 2.0)
47
- xpath (~> 0.1.4)
48
- childprocess (0.3.2)
49
- ffi (~> 1.0.6)
50
- crack (0.3.1)
51
- database_cleaner (0.8.0)
52
- diff-lcs (1.1.3)
53
- erubis (2.7.0)
54
- ffi (1.0.11)
55
- hike (1.2.1)
56
- i18n (0.6.0)
57
- journey (1.0.4)
58
- json (1.7.1)
59
- libwebsocket (0.1.3)
60
- addressable
61
- mail (2.4.4)
62
- i18n (>= 0.4.0)
63
- mime-types (~> 1.16)
64
- treetop (~> 1.4.8)
65
- mime-types (1.18)
66
- multi_json (1.3.4)
67
- nokogiri (1.5.2)
68
- polyglot (0.3.3)
69
- rack (1.4.1)
70
- rack-cache (1.2)
71
- rack (>= 0.4)
72
- rack-ssl (1.3.2)
73
- rack
74
- rack-test (0.6.1)
75
- rack (>= 1.0)
76
- rails (3.2.3)
77
- actionmailer (= 3.2.3)
78
- actionpack (= 3.2.3)
79
- activerecord (= 3.2.3)
80
- activeresource (= 3.2.3)
81
- activesupport (= 3.2.3)
82
- bundler (~> 1.0)
83
- railties (= 3.2.3)
84
- railties (3.2.3)
85
- actionpack (= 3.2.3)
86
- activesupport (= 3.2.3)
87
- rack-ssl (~> 1.3.2)
88
- rake (>= 0.8.7)
89
- rdoc (~> 3.4)
90
- thor (~> 0.14.6)
91
- rake (0.9.2.2)
92
- rdoc (3.12)
93
- json (~> 1.4)
94
- rr (1.0.4)
95
- rspec (2.10.0)
96
- rspec-core (~> 2.10.0)
97
- rspec-expectations (~> 2.10.0)
98
- rspec-mocks (~> 2.10.0)
99
- rspec-core (2.10.0)
100
- rspec-expectations (2.10.0)
101
- diff-lcs (~> 1.1.3)
102
- rspec-mocks (2.10.1)
103
- rspec-rails (2.10.1)
104
- actionpack (>= 3.0)
105
- activesupport (>= 3.0)
106
- railties (>= 3.0)
107
- rspec (~> 2.10.0)
108
- rubyzip (0.9.8)
109
- selenium-webdriver (2.21.2)
110
- childprocess (>= 0.2.5)
111
- ffi (~> 1.0)
112
- libwebsocket (~> 0.1.3)
113
- multi_json (~> 1.0)
114
- rubyzip
115
- sprockets (2.1.3)
116
- hike (~> 1.2)
117
- rack (~> 1.0)
118
- tilt (~> 1.1, != 1.3.0)
119
- sqlite3 (1.3.6)
120
- thor (0.14.6)
121
- tilt (1.3.3)
122
- treetop (1.4.10)
123
- polyglot
124
- polyglot (>= 0.3.1)
125
- tzinfo (0.3.33)
126
- webmock (1.8.7)
127
- addressable (>= 2.2.7)
128
- crack (>= 0.1.7)
129
- xpath (0.1.4)
130
- nokogiri (~> 1.3)
131
-
132
- PLATFORMS
133
- ruby
134
-
135
- DEPENDENCIES
136
- bundler (>= 1.0.0)
137
- capybara (>= 1.0)
138
- database_cleaner
139
- errplane!
140
- rails (>= 3.0.13)
141
- rake
142
- rdoc
143
- rr
144
- rspec
145
- rspec-rails (>= 2.0)
146
- sqlite3
147
- tzinfo
148
- webmock
@@ -1,148 +0,0 @@
1
- PATH
2
- remote: /Users/todd/Projects/errplane/gem
3
- specs:
4
- errplane (0.2.5)
5
- actionpack (>= 2.3.14)
6
- activesupport (>= 2.3.14)
7
-
8
- GEM
9
- remote: http://rubygems.org/
10
- specs:
11
- actionmailer (3.2.3)
12
- actionpack (= 3.2.3)
13
- mail (~> 2.4.4)
14
- actionpack (3.2.3)
15
- activemodel (= 3.2.3)
16
- activesupport (= 3.2.3)
17
- builder (~> 3.0.0)
18
- erubis (~> 2.7.0)
19
- journey (~> 1.0.1)
20
- rack (~> 1.4.0)
21
- rack-cache (~> 1.2)
22
- rack-test (~> 0.6.1)
23
- sprockets (~> 2.1.2)
24
- activemodel (3.2.3)
25
- activesupport (= 3.2.3)
26
- builder (~> 3.0.0)
27
- activerecord (3.2.3)
28
- activemodel (= 3.2.3)
29
- activesupport (= 3.2.3)
30
- arel (~> 3.0.2)
31
- tzinfo (~> 0.3.29)
32
- activeresource (3.2.3)
33
- activemodel (= 3.2.3)
34
- activesupport (= 3.2.3)
35
- activesupport (3.2.3)
36
- i18n (~> 0.6)
37
- multi_json (~> 1.0)
38
- addressable (2.2.8)
39
- arel (3.0.2)
40
- builder (3.0.0)
41
- capybara (1.1.2)
42
- mime-types (>= 1.16)
43
- nokogiri (>= 1.3.3)
44
- rack (>= 1.0.0)
45
- rack-test (>= 0.5.4)
46
- selenium-webdriver (~> 2.0)
47
- xpath (~> 0.1.4)
48
- childprocess (0.3.2)
49
- ffi (~> 1.0.6)
50
- crack (0.3.1)
51
- database_cleaner (0.8.0)
52
- diff-lcs (1.1.3)
53
- erubis (2.7.0)
54
- ffi (1.0.11)
55
- hike (1.2.1)
56
- i18n (0.6.0)
57
- journey (1.0.4)
58
- json (1.7.1)
59
- libwebsocket (0.1.3)
60
- addressable
61
- mail (2.4.4)
62
- i18n (>= 0.4.0)
63
- mime-types (~> 1.16)
64
- treetop (~> 1.4.8)
65
- mime-types (1.18)
66
- multi_json (1.3.4)
67
- nokogiri (1.5.2)
68
- polyglot (0.3.3)
69
- rack (1.4.1)
70
- rack-cache (1.2)
71
- rack (>= 0.4)
72
- rack-ssl (1.3.2)
73
- rack
74
- rack-test (0.6.1)
75
- rack (>= 1.0)
76
- rails (3.2.3)
77
- actionmailer (= 3.2.3)
78
- actionpack (= 3.2.3)
79
- activerecord (= 3.2.3)
80
- activeresource (= 3.2.3)
81
- activesupport (= 3.2.3)
82
- bundler (~> 1.0)
83
- railties (= 3.2.3)
84
- railties (3.2.3)
85
- actionpack (= 3.2.3)
86
- activesupport (= 3.2.3)
87
- rack-ssl (~> 1.3.2)
88
- rake (>= 0.8.7)
89
- rdoc (~> 3.4)
90
- thor (~> 0.14.6)
91
- rake (0.9.2.2)
92
- rdoc (3.12)
93
- json (~> 1.4)
94
- rr (1.0.4)
95
- rspec (2.10.0)
96
- rspec-core (~> 2.10.0)
97
- rspec-expectations (~> 2.10.0)
98
- rspec-mocks (~> 2.10.0)
99
- rspec-core (2.10.0)
100
- rspec-expectations (2.10.0)
101
- diff-lcs (~> 1.1.3)
102
- rspec-mocks (2.10.1)
103
- rspec-rails (2.10.1)
104
- actionpack (>= 3.0)
105
- activesupport (>= 3.0)
106
- railties (>= 3.0)
107
- rspec (~> 2.10.0)
108
- rubyzip (0.9.8)
109
- selenium-webdriver (2.21.2)
110
- childprocess (>= 0.2.5)
111
- ffi (~> 1.0)
112
- libwebsocket (~> 0.1.3)
113
- multi_json (~> 1.0)
114
- rubyzip
115
- sprockets (2.1.3)
116
- hike (~> 1.2)
117
- rack (~> 1.0)
118
- tilt (~> 1.1, != 1.3.0)
119
- sqlite3 (1.3.6)
120
- thor (0.14.6)
121
- tilt (1.3.3)
122
- treetop (1.4.10)
123
- polyglot
124
- polyglot (>= 0.3.1)
125
- tzinfo (0.3.33)
126
- webmock (1.8.7)
127
- addressable (>= 2.2.7)
128
- crack (>= 0.1.7)
129
- xpath (0.1.4)
130
- nokogiri (~> 1.3)
131
-
132
- PLATFORMS
133
- ruby
134
-
135
- DEPENDENCIES
136
- bundler (>= 1.0.0)
137
- capybara (>= 1.0)
138
- database_cleaner
139
- errplane!
140
- rails (>= 3.1.5)
141
- rake
142
- rdoc
143
- rr
144
- rspec
145
- rspec-rails (>= 2.0)
146
- sqlite3
147
- tzinfo
148
- webmock
@@ -1,121 +0,0 @@
1
- PATH
2
- remote: /Users/todd/Projects/errplane/gem
3
- specs:
4
- errplane (0.2.5)
5
- actionpack (>= 2.3.14)
6
- activesupport (>= 2.3.14)
7
-
8
- GEM
9
- remote: http://rubygems.org/
10
- specs:
11
- actionpack (3.2.3)
12
- activemodel (= 3.2.3)
13
- activesupport (= 3.2.3)
14
- builder (~> 3.0.0)
15
- erubis (~> 2.7.0)
16
- journey (~> 1.0.1)
17
- rack (~> 1.4.0)
18
- rack-cache (~> 1.2)
19
- rack-test (~> 0.6.1)
20
- sprockets (~> 2.1.2)
21
- activemodel (3.2.3)
22
- activesupport (= 3.2.3)
23
- builder (~> 3.0.0)
24
- activesupport (3.2.3)
25
- i18n (~> 0.6)
26
- multi_json (~> 1.0)
27
- addressable (2.2.8)
28
- builder (3.0.0)
29
- capybara (1.1.2)
30
- mime-types (>= 1.16)
31
- nokogiri (>= 1.3.3)
32
- rack (>= 1.0.0)
33
- rack-test (>= 0.5.4)
34
- selenium-webdriver (~> 2.0)
35
- xpath (~> 0.1.4)
36
- childprocess (0.3.2)
37
- ffi (~> 1.0.6)
38
- crack (0.3.1)
39
- database_cleaner (0.8.0)
40
- diff-lcs (1.1.3)
41
- erubis (2.7.0)
42
- ffi (1.0.11)
43
- hike (1.2.1)
44
- i18n (0.6.0)
45
- journey (1.0.4)
46
- json (1.7.1)
47
- libwebsocket (0.1.3)
48
- addressable
49
- mime-types (1.18)
50
- multi_json (1.3.4)
51
- nokogiri (1.5.2)
52
- rack (1.4.1)
53
- rack-cache (1.2)
54
- rack (>= 0.4)
55
- rack-ssl (1.3.2)
56
- rack
57
- rack-test (0.6.1)
58
- rack (>= 1.0)
59
- railties (3.2.3)
60
- actionpack (= 3.2.3)
61
- activesupport (= 3.2.3)
62
- rack-ssl (~> 1.3.2)
63
- rake (>= 0.8.7)
64
- rdoc (~> 3.4)
65
- thor (~> 0.14.6)
66
- rake (0.9.2.2)
67
- rdoc (3.12)
68
- json (~> 1.4)
69
- rr (1.0.4)
70
- rspec (2.10.0)
71
- rspec-core (~> 2.10.0)
72
- rspec-expectations (~> 2.10.0)
73
- rspec-mocks (~> 2.10.0)
74
- rspec-core (2.10.0)
75
- rspec-expectations (2.10.0)
76
- diff-lcs (~> 1.1.3)
77
- rspec-mocks (2.10.1)
78
- rspec-rails (2.10.1)
79
- actionpack (>= 3.0)
80
- activesupport (>= 3.0)
81
- railties (>= 3.0)
82
- rspec (~> 2.10.0)
83
- rubyzip (0.9.8)
84
- selenium-webdriver (2.21.2)
85
- childprocess (>= 0.2.5)
86
- ffi (~> 1.0)
87
- libwebsocket (~> 0.1.3)
88
- multi_json (~> 1.0)
89
- rubyzip
90
- sprockets (2.1.3)
91
- hike (~> 1.2)
92
- rack (~> 1.0)
93
- tilt (~> 1.1, != 1.3.0)
94
- sqlite3 (1.3.6)
95
- thor (0.14.6)
96
- tilt (1.3.3)
97
- tzinfo (0.3.33)
98
- webmock (1.8.7)
99
- addressable (>= 2.2.7)
100
- crack (>= 0.1.7)
101
- xpath (0.1.4)
102
- nokogiri (~> 1.3)
103
-
104
- PLATFORMS
105
- ruby
106
-
107
- DEPENDENCIES
108
- actionpack (>= 3.2.3)
109
- activesupport (>= 3.2.3)
110
- bundler (>= 1.0.0)
111
- capybara (>= 1.0)
112
- database_cleaner
113
- errplane!
114
- rake
115
- rdoc
116
- rr
117
- rspec
118
- rspec-rails (>= 2.0)
119
- sqlite3
120
- tzinfo
121
- webmock