high_voltage 1.1.1 → 1.2.0

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore CHANGED
@@ -5,3 +5,5 @@ spec/dummy/db/*.sqlite3
5
5
  spec/dummy/log/*.log
6
6
  spec/dummy/tmp/
7
7
  *.swp
8
+ gemfiles/*.lock
9
+ *.gem
@@ -1,3 +1,9 @@
1
+ language: ruby
1
2
  rvm:
2
3
  - 1.8.7
3
4
  - 1.9.2
5
+ - 1.9.3
6
+ gemfile:
7
+ - gemfiles/rails-3.0.12.gemfile
8
+ - gemfiles/rails-3.1.4.gemfile
9
+ - gemfiles/rails-3.2.3.gemfile
data/Appraisals CHANGED
@@ -1,7 +1,5 @@
1
- appraise "rails-3.1.0" do
2
- gem "rails", "3.1.0"
3
- end
4
-
5
- appraise "rails-3.0.10" do
6
- gem "rails", "3.0.10"
1
+ ['3.2.6', '3.1.6', '3.0.15'].each do |rails_version|
2
+ appraise "rails-#{rails_version}" do
3
+ gem "rails", rails_version
4
+ end
7
5
  end
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- high_voltage (1.1.1)
4
+ high_voltage (1.2.0)
5
5
 
6
6
  GEM
7
7
  remote: http://rubygems.org/
@@ -22,7 +22,7 @@ GEM
22
22
  builder (~> 2.1.2)
23
23
  i18n (~> 0.5.0)
24
24
  activesupport (3.0.10)
25
- appraisal (0.3.8)
25
+ appraisal (0.4.1)
26
26
  bundler
27
27
  rake
28
28
  builder (2.1.2)
@@ -55,7 +55,7 @@ GEM
55
55
  rake (>= 0.8.7)
56
56
  rdoc (~> 3.4)
57
57
  thor (~> 0.14.4)
58
- rake (0.9.2)
58
+ rake (0.9.2.2)
59
59
  rdoc (3.9.4)
60
60
  rspec (2.6.0)
61
61
  rspec-core (~> 2.6.0)
data/Rakefile CHANGED
@@ -1,14 +1,18 @@
1
1
  require 'bundler/setup'
2
2
  require 'bundler/gem_tasks'
3
3
  require 'appraisal'
4
- require 'rspec/core/rake_task'
5
4
 
5
+ require 'rspec/core/rake_task'
6
6
  RSpec::Core::RakeTask.new(:spec)
7
7
 
8
- desc "Default: run the unit tests."
9
- task :default => [:all]
8
+ task :default do |t|
9
+ if ENV['BUNDLE_GEMFILE'] =~ /gemfiles/
10
+ exec 'rake spec'
11
+ else
12
+ Rake::Task['appraise'].execute
13
+ end
14
+ end
10
15
 
11
- desc 'Test the plugin under all supported Rails versions.'
12
- task :all => ["appraisal:install"] do |t|
13
- exec('rake appraisal spec')
16
+ task :appraise => ['appraisal:install'] do |t|
17
+ exec 'rake appraisal'
14
18
  end
@@ -1,7 +1,8 @@
1
1
  class HighVoltage::PagesController < ApplicationController
2
+ VALID_CHARACTERS = "a-zA-Z0-9~!@$%^&*()#`_+-=<>\"{}|[];',?".freeze
2
3
 
3
4
  unloadable
4
- layout Proc.new { |_| HighVoltage::layout }
5
+ layout Proc.new { |_| HighVoltage.layout }
5
6
 
6
7
  rescue_from ActionView::MissingTemplate do |exception|
7
8
  if exception.message =~ %r{Missing template #{content_path}}
@@ -22,12 +23,15 @@ class HighVoltage::PagesController < ApplicationController
22
23
  end
23
24
 
24
25
  def clean_path
25
- path = Pathname.new "/#{params[:id]}"
26
+ path = Pathname.new("/#{clean_id}")
26
27
  path.cleanpath.to_s[1..-1]
27
28
  end
28
29
 
29
30
  def content_path
30
- HighVoltage::content_path
31
+ HighVoltage.content_path
31
32
  end
32
33
 
34
+ def clean_id
35
+ params[:id].tr("^#{VALID_CHARACTERS}", '')
36
+ end
33
37
  end
@@ -1,4 +1,4 @@
1
1
  Rails.application.routes.draw do
2
- match "/#{HighVoltage::content_path}*id" => 'high_voltage/pages#show', :as => :page, :format => false
2
+ match "/#{HighVoltage.content_path}*id" => 'high_voltage/pages#show', :as => :page, :format => false
3
3
 
4
4
  end
@@ -2,6 +2,6 @@
2
2
 
3
3
  source "http://rubygems.org"
4
4
 
5
- gem "rails", "3.0.10"
5
+ gem "rails", "3.0.15"
6
6
 
7
7
  gemspec :path=>"../"
@@ -2,6 +2,6 @@
2
2
 
3
3
  source "http://rubygems.org"
4
4
 
5
- gem "rails", "3.1.0"
5
+ gem "rails", "3.1.6"
6
6
 
7
7
  gemspec :path=>"../"
@@ -0,0 +1,7 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "http://rubygems.org"
4
+
5
+ gem "rails", "3.2.6"
6
+
7
+ gemspec :path=>"../"
@@ -1,3 +1,3 @@
1
1
  module HighVoltage
2
- VERSION = '1.1.1'.freeze
2
+ VERSION = '1.2.0'.freeze
3
3
  end
@@ -1,3 +1,5 @@
1
+ # encoding: UTF-8
2
+
1
3
  require 'spec_helper'
2
4
 
3
5
  describe HighVoltage::PagesController do
@@ -43,12 +45,12 @@ describe HighVoltage::PagesController do
43
45
 
44
46
  context "using custom layout" do
45
47
  before(:all) do
46
- @original_layout = HighVoltage::layout
47
- HighVoltage::layout = "alternate"
48
+ @original_layout = HighVoltage.layout
49
+ HighVoltage.layout = "alternate"
48
50
  end
49
51
 
50
52
  after(:all) do
51
- HighVoltage::layout = @original_layout
53
+ HighVoltage.layout = @original_layout
52
54
  end
53
55
 
54
56
  describe "on GET to /pages/exists" do
@@ -63,12 +65,12 @@ describe HighVoltage::PagesController do
63
65
 
64
66
  context "using custom content path" do
65
67
  before(:all) do
66
- @original_content_path = HighVoltage::content_path
67
- HighVoltage::content_path = "other_pages/"
68
+ @original_content_path = HighVoltage.content_path
69
+ HighVoltage.content_path = "other_pages/"
68
70
  end
69
71
 
70
72
  after(:all) do
71
- HighVoltage::content_path = @original_content_path
73
+ HighVoltage.content_path = @original_content_path
72
74
  end
73
75
 
74
76
  describe "on GET to /other_pages/also_exists" do
@@ -97,6 +99,10 @@ describe HighVoltage::PagesController do
97
99
  lambda { get :show, :id => "../other/wrong" }.should raise_error(ActionController::RoutingError)
98
100
  end
99
101
 
102
+ it "should raise a routing error for a page in another directory when using a Unicode exploit" do
103
+ lambda { get :show, :id => "/\\../other/wrong" }.should raise_error(ActionController::RoutingError)
104
+ end
105
+
100
106
  it "should raise missing template error for valid page with invalid partial" do
101
107
  lambda { get :show, :id => "also_exists_but_references_nonexistent_partial" }.should raise_error(ActionView::MissingTemplate)
102
108
  end
@@ -30,13 +30,13 @@ describe 'routes' do
30
30
  context "using a custom content_path" do
31
31
 
32
32
  before(:all) do
33
- @original_content_path = HighVoltage::content_path
34
- HighVoltage::content_path = "other_pages/"
33
+ @original_content_path = HighVoltage.content_path
34
+ HighVoltage.content_path = "other_pages/"
35
35
  Rails.application.reload_routes!
36
36
  end
37
37
 
38
38
  after(:all) do
39
- HighVoltage::content_path = @original_content_path
39
+ HighVoltage.content_path = @original_content_path
40
40
  Rails.application.reload_routes!
41
41
  end
42
42
 
metadata CHANGED
@@ -1,15 +1,10 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: high_voltage
3
- version: !ruby/object:Gem::Version
4
- hash: 17
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.2.0
5
5
  prerelease:
6
- segments:
7
- - 1
8
- - 1
9
- - 1
10
- version: 1.1.1
11
6
  platform: ruby
12
- authors:
7
+ authors:
13
8
  - Matt Jankowski
14
9
  - Dan Croak
15
10
  - Nick Quaranto
@@ -22,77 +17,79 @@ authors:
22
17
  autorequire:
23
18
  bindir: bin
24
19
  cert_chain: []
25
-
26
- date: 2012-02-23 00:00:00 Z
27
- dependencies:
28
- - !ruby/object:Gem::Dependency
29
- version_requirements: &id001 !ruby/object:Gem::Requirement
30
- none: false
31
- requirements:
32
- - - ">="
33
- - !ruby/object:Gem::Version
34
- hash: 3
35
- segments:
36
- - 0
37
- version: "0"
38
- requirement: *id001
39
- type: :development
40
- prerelease: false
20
+ date: 2012-08-27 00:00:00.000000000 Z
21
+ dependencies:
22
+ - !ruby/object:Gem::Dependency
41
23
  name: appraisal
42
- - !ruby/object:Gem::Dependency
43
- version_requirements: &id002 !ruby/object:Gem::Requirement
24
+ requirement: !ruby/object:Gem::Requirement
44
25
  none: false
45
- requirements:
46
- - - ">="
47
- - !ruby/object:Gem::Version
48
- hash: 3
49
- segments:
50
- - 0
51
- version: "0"
52
- requirement: *id002
26
+ requirements:
27
+ - - ! '>='
28
+ - !ruby/object:Gem::Version
29
+ version: '0'
53
30
  type: :development
54
31
  prerelease: false
32
+ version_requirements: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ! '>='
36
+ - !ruby/object:Gem::Version
37
+ version: '0'
38
+ - !ruby/object:Gem::Dependency
55
39
  name: rspec-rails
56
- - !ruby/object:Gem::Dependency
57
- version_requirements: &id003 !ruby/object:Gem::Requirement
40
+ requirement: !ruby/object:Gem::Requirement
58
41
  none: false
59
- requirements:
60
- - - ">="
61
- - !ruby/object:Gem::Version
62
- hash: 15
63
- segments:
64
- - 0
65
- - 4
66
- - 0
67
- version: 0.4.0
68
- requirement: *id003
42
+ requirements:
43
+ - - ! '>='
44
+ - !ruby/object:Gem::Version
45
+ version: '0'
69
46
  type: :development
70
47
  prerelease: false
48
+ version_requirements: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ! '>='
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
54
+ - !ruby/object:Gem::Dependency
71
55
  name: capybara
72
- - !ruby/object:Gem::Dependency
73
- version_requirements: &id004 !ruby/object:Gem::Requirement
56
+ requirement: !ruby/object:Gem::Requirement
74
57
  none: false
75
- requirements:
76
- - - ">="
77
- - !ruby/object:Gem::Version
78
- hash: 3
79
- segments:
80
- - 0
81
- version: "0"
82
- requirement: *id004
58
+ requirements:
59
+ - - ! '>='
60
+ - !ruby/object:Gem::Version
61
+ version: 0.4.0
83
62
  type: :development
84
63
  prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ none: false
66
+ requirements:
67
+ - - ! '>='
68
+ - !ruby/object:Gem::Version
69
+ version: 0.4.0
70
+ - !ruby/object:Gem::Dependency
85
71
  name: sqlite3
72
+ requirement: !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ! '>='
76
+ - !ruby/object:Gem::Version
77
+ version: '0'
78
+ type: :development
79
+ prerelease: false
80
+ version_requirements: !ruby/object:Gem::Requirement
81
+ none: false
82
+ requirements:
83
+ - - ! '>='
84
+ - !ruby/object:Gem::Version
85
+ version: '0'
86
86
  description: Fire in the disco. Fire in the ... taco bell.
87
- email:
87
+ email:
88
88
  - support@thoughtbot.com
89
89
  executables: []
90
-
91
90
  extensions: []
92
-
93
91
  extra_rdoc_files: []
94
-
95
- files:
92
+ files:
96
93
  - .gitignore
97
94
  - .travis.yml
98
95
  - Appraisals
@@ -104,10 +101,9 @@ files:
104
101
  - Rakefile
105
102
  - app/controllers/high_voltage/pages_controller.rb
106
103
  - config/routes.rb
107
- - gemfiles/rails-3.0.10.gemfile
108
- - gemfiles/rails-3.0.10.gemfile.lock
109
- - gemfiles/rails-3.1.0.gemfile
110
- - gemfiles/rails-3.1.0.gemfile.lock
104
+ - gemfiles/rails-3.0.15.gemfile
105
+ - gemfiles/rails-3.1.6.gemfile
106
+ - gemfiles/rails-3.2.6.gemfile
111
107
  - high_voltage.gemspec
112
108
  - lib/high_voltage.rb
113
109
  - lib/high_voltage/engine.rb
@@ -159,80 +155,32 @@ files:
159
155
  - spec/spec_helper.rb
160
156
  homepage: http://github.com/thoughtbot/high_voltage
161
157
  licenses: []
162
-
163
158
  post_install_message:
164
159
  rdoc_options: []
165
-
166
- require_paths:
160
+ require_paths:
167
161
  - lib
168
- required_ruby_version: !ruby/object:Gem::Requirement
162
+ required_ruby_version: !ruby/object:Gem::Requirement
169
163
  none: false
170
- requirements:
171
- - - ">="
172
- - !ruby/object:Gem::Version
173
- hash: 3
174
- segments:
164
+ requirements:
165
+ - - ! '>='
166
+ - !ruby/object:Gem::Version
167
+ version: '0'
168
+ segments:
175
169
  - 0
176
- version: "0"
177
- required_rubygems_version: !ruby/object:Gem::Requirement
170
+ hash: 2706060558663144713
171
+ required_rubygems_version: !ruby/object:Gem::Requirement
178
172
  none: false
179
- requirements:
180
- - - ">="
181
- - !ruby/object:Gem::Version
182
- hash: 3
183
- segments:
173
+ requirements:
174
+ - - ! '>='
175
+ - !ruby/object:Gem::Version
176
+ version: '0'
177
+ segments:
184
178
  - 0
185
- version: "0"
179
+ hash: 2706060558663144713
186
180
  requirements: []
187
-
188
181
  rubyforge_project:
189
- rubygems_version: 1.8.11
182
+ rubygems_version: 1.8.24
190
183
  signing_key:
191
184
  specification_version: 3
192
185
  summary: Simple static page rendering controller
193
- test_files:
194
- - spec/controllers/pages_controller_spec.rb
195
- - spec/controllers/subclassed_pages_controller_spec.rb
196
- - spec/dummy/Rakefile
197
- - spec/dummy/app/controllers/application_controller.rb
198
- - spec/dummy/app/controllers/subclassed_pages_controller.rb
199
- - spec/dummy/app/helpers/application_helper.rb
200
- - spec/dummy/app/views/layouts/alternate.html.erb
201
- - spec/dummy/app/views/layouts/application.html.erb
202
- - spec/dummy/app/views/other/wrong.html.erb
203
- - spec/dummy/app/views/other_pages/also_dir/also_nested.html.erb
204
- - spec/dummy/app/views/other_pages/also_exists.html.erb
205
- - spec/dummy/app/views/other_pages/also_exists_but_references_nonexistent_partial.html.erb
206
- - spec/dummy/app/views/pages/dir/nested.html.erb
207
- - spec/dummy/app/views/pages/exists.html.erb
208
- - spec/dummy/app/views/pages/exists_but_references_nonexistent_partial.html.erb
209
- - spec/dummy/config.ru
210
- - spec/dummy/config/application.rb
211
- - spec/dummy/config/boot.rb
212
- - spec/dummy/config/environment.rb
213
- - spec/dummy/config/environments/development.rb
214
- - spec/dummy/config/environments/production.rb
215
- - spec/dummy/config/environments/test.rb
216
- - spec/dummy/config/initializers/backtrace_silencers.rb
217
- - spec/dummy/config/initializers/inflections.rb
218
- - spec/dummy/config/initializers/mime_types.rb
219
- - spec/dummy/config/initializers/secret_token.rb
220
- - spec/dummy/config/initializers/session_store.rb
221
- - spec/dummy/config/locales/en.yml
222
- - spec/dummy/config/routes.rb
223
- - spec/dummy/public/404.html
224
- - spec/dummy/public/422.html
225
- - spec/dummy/public/500.html
226
- - spec/dummy/public/favicon.ico
227
- - spec/dummy/public/javascripts/application.js
228
- - spec/dummy/public/javascripts/controls.js
229
- - spec/dummy/public/javascripts/dragdrop.js
230
- - spec/dummy/public/javascripts/effects.js
231
- - spec/dummy/public/javascripts/prototype.js
232
- - spec/dummy/public/javascripts/rails.js
233
- - spec/dummy/public/stylesheets/.gitkeep
234
- - spec/dummy/script/rails
235
- - spec/high_voltage_spec.rb
236
- - spec/integration/navigation_spec.rb
237
- - spec/routing/routes_spec.rb
238
- - spec/spec_helper.rb
186
+ test_files: []
@@ -1,124 +0,0 @@
1
- PATH
2
- remote: /Users/jferris/Source/high_voltage
3
- specs:
4
- high_voltage (1.1.1)
5
-
6
- GEM
7
- remote: http://rubygems.org/
8
- specs:
9
- abstract (1.0.0)
10
- actionmailer (3.0.10)
11
- actionpack (= 3.0.10)
12
- mail (~> 2.2.19)
13
- actionpack (3.0.10)
14
- activemodel (= 3.0.10)
15
- activesupport (= 3.0.10)
16
- builder (~> 2.1.2)
17
- erubis (~> 2.6.6)
18
- i18n (~> 0.5.0)
19
- rack (~> 1.2.1)
20
- rack-mount (~> 0.6.14)
21
- rack-test (~> 0.5.7)
22
- tzinfo (~> 0.3.23)
23
- activemodel (3.0.10)
24
- activesupport (= 3.0.10)
25
- builder (~> 2.1.2)
26
- i18n (~> 0.5.0)
27
- activerecord (3.0.10)
28
- activemodel (= 3.0.10)
29
- activesupport (= 3.0.10)
30
- arel (~> 2.0.10)
31
- tzinfo (~> 0.3.23)
32
- activeresource (3.0.10)
33
- activemodel (= 3.0.10)
34
- activesupport (= 3.0.10)
35
- activesupport (3.0.10)
36
- appraisal (0.3.8)
37
- bundler
38
- rake
39
- arel (2.0.10)
40
- builder (2.1.2)
41
- capybara (1.1.0)
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.2.2)
49
- ffi (~> 1.0.6)
50
- diff-lcs (1.1.3)
51
- erubis (2.6.6)
52
- abstract (>= 1.0.0)
53
- ffi (1.0.9)
54
- i18n (0.5.0)
55
- json_pure (1.5.4)
56
- spruz (~> 0.2.8)
57
- mail (2.2.19)
58
- activesupport (>= 2.3.6)
59
- i18n (>= 0.4.0)
60
- mime-types (~> 1.16)
61
- treetop (~> 1.4.8)
62
- mime-types (1.16)
63
- nokogiri (1.5.0)
64
- polyglot (0.3.2)
65
- rack (1.2.3)
66
- rack-mount (0.6.14)
67
- rack (>= 1.0.0)
68
- rack-test (0.5.7)
69
- rack (>= 1.0)
70
- rails (3.0.10)
71
- actionmailer (= 3.0.10)
72
- actionpack (= 3.0.10)
73
- activerecord (= 3.0.10)
74
- activeresource (= 3.0.10)
75
- activesupport (= 3.0.10)
76
- bundler (~> 1.0)
77
- railties (= 3.0.10)
78
- railties (3.0.10)
79
- actionpack (= 3.0.10)
80
- activesupport (= 3.0.10)
81
- rake (>= 0.8.7)
82
- rdoc (~> 3.4)
83
- thor (~> 0.14.4)
84
- rake (0.9.2)
85
- rdoc (3.9.4)
86
- rspec (2.6.0)
87
- rspec-core (~> 2.6.0)
88
- rspec-expectations (~> 2.6.0)
89
- rspec-mocks (~> 2.6.0)
90
- rspec-core (2.6.4)
91
- rspec-expectations (2.6.0)
92
- diff-lcs (~> 1.1.2)
93
- rspec-mocks (2.6.0)
94
- rspec-rails (2.6.1)
95
- actionpack (~> 3.0)
96
- activesupport (~> 3.0)
97
- railties (~> 3.0)
98
- rspec (~> 2.6.0)
99
- rubyzip (0.9.4)
100
- selenium-webdriver (2.5.0)
101
- childprocess (>= 0.2.1)
102
- ffi (>= 1.0.7)
103
- json_pure
104
- rubyzip
105
- spruz (0.2.13)
106
- sqlite3 (1.3.4)
107
- thor (0.14.6)
108
- treetop (1.4.10)
109
- polyglot
110
- polyglot (>= 0.3.1)
111
- tzinfo (0.3.29)
112
- xpath (0.1.4)
113
- nokogiri (~> 1.3)
114
-
115
- PLATFORMS
116
- ruby
117
-
118
- DEPENDENCIES
119
- appraisal
120
- capybara (>= 0.4.0)
121
- high_voltage!
122
- rails (= 3.0.10)
123
- rspec-rails
124
- sqlite3
@@ -1,137 +0,0 @@
1
- PATH
2
- remote: /Users/jferris/Source/high_voltage
3
- specs:
4
- high_voltage (1.1.1)
5
-
6
- GEM
7
- remote: http://rubygems.org/
8
- specs:
9
- actionmailer (3.1.0)
10
- actionpack (= 3.1.0)
11
- mail (~> 2.3.0)
12
- actionpack (3.1.0)
13
- activemodel (= 3.1.0)
14
- activesupport (= 3.1.0)
15
- builder (~> 3.0.0)
16
- erubis (~> 2.7.0)
17
- i18n (~> 0.6)
18
- rack (~> 1.3.2)
19
- rack-cache (~> 1.0.3)
20
- rack-mount (~> 0.8.2)
21
- rack-test (~> 0.6.1)
22
- sprockets (~> 2.0.0)
23
- activemodel (3.1.0)
24
- activesupport (= 3.1.0)
25
- bcrypt-ruby (~> 3.0.0)
26
- builder (~> 3.0.0)
27
- i18n (~> 0.6)
28
- activerecord (3.1.0)
29
- activemodel (= 3.1.0)
30
- activesupport (= 3.1.0)
31
- arel (~> 2.2.1)
32
- tzinfo (~> 0.3.29)
33
- activeresource (3.1.0)
34
- activemodel (= 3.1.0)
35
- activesupport (= 3.1.0)
36
- activesupport (3.1.0)
37
- multi_json (~> 1.0)
38
- appraisal (0.3.8)
39
- bundler
40
- rake
41
- arel (2.2.1)
42
- bcrypt-ruby (3.0.0)
43
- builder (3.0.0)
44
- capybara (1.1.0)
45
- mime-types (>= 1.16)
46
- nokogiri (>= 1.3.3)
47
- rack (>= 1.0.0)
48
- rack-test (>= 0.5.4)
49
- selenium-webdriver (~> 2.0)
50
- xpath (~> 0.1.4)
51
- childprocess (0.2.2)
52
- ffi (~> 1.0.6)
53
- diff-lcs (1.1.3)
54
- erubis (2.7.0)
55
- ffi (1.0.9)
56
- hike (1.2.1)
57
- i18n (0.6.0)
58
- json_pure (1.5.4)
59
- spruz (~> 0.2.8)
60
- mail (2.3.0)
61
- i18n (>= 0.4.0)
62
- mime-types (~> 1.16)
63
- treetop (~> 1.4.8)
64
- mime-types (1.16)
65
- multi_json (1.0.3)
66
- nokogiri (1.5.0)
67
- polyglot (0.3.2)
68
- rack (1.3.2)
69
- rack-cache (1.0.3)
70
- rack (>= 0.4)
71
- rack-mount (0.8.3)
72
- rack (>= 1.0.0)
73
- rack-ssl (1.3.2)
74
- rack
75
- rack-test (0.6.1)
76
- rack (>= 1.0)
77
- rails (3.1.0)
78
- actionmailer (= 3.1.0)
79
- actionpack (= 3.1.0)
80
- activerecord (= 3.1.0)
81
- activeresource (= 3.1.0)
82
- activesupport (= 3.1.0)
83
- bundler (~> 1.0)
84
- railties (= 3.1.0)
85
- railties (3.1.0)
86
- actionpack (= 3.1.0)
87
- activesupport (= 3.1.0)
88
- rack-ssl (~> 1.3.2)
89
- rake (>= 0.8.7)
90
- rdoc (~> 3.4)
91
- thor (~> 0.14.6)
92
- rake (0.9.2)
93
- rdoc (3.9.4)
94
- rspec (2.6.0)
95
- rspec-core (~> 2.6.0)
96
- rspec-expectations (~> 2.6.0)
97
- rspec-mocks (~> 2.6.0)
98
- rspec-core (2.6.4)
99
- rspec-expectations (2.6.0)
100
- diff-lcs (~> 1.1.2)
101
- rspec-mocks (2.6.0)
102
- rspec-rails (2.6.1)
103
- actionpack (~> 3.0)
104
- activesupport (~> 3.0)
105
- railties (~> 3.0)
106
- rspec (~> 2.6.0)
107
- rubyzip (0.9.4)
108
- selenium-webdriver (2.5.0)
109
- childprocess (>= 0.2.1)
110
- ffi (>= 1.0.7)
111
- json_pure
112
- rubyzip
113
- sprockets (2.0.0)
114
- hike (~> 1.2)
115
- rack (~> 1.0)
116
- tilt (~> 1.1, != 1.3.0)
117
- spruz (0.2.13)
118
- sqlite3 (1.3.4)
119
- thor (0.14.6)
120
- tilt (1.3.3)
121
- treetop (1.4.10)
122
- polyglot
123
- polyglot (>= 0.3.1)
124
- tzinfo (0.3.29)
125
- xpath (0.1.4)
126
- nokogiri (~> 1.3)
127
-
128
- PLATFORMS
129
- ruby
130
-
131
- DEPENDENCIES
132
- appraisal
133
- capybara (>= 0.4.0)
134
- high_voltage!
135
- rails (= 3.1.0)
136
- rspec-rails
137
- sqlite3