high_voltage 2.1.0 → 2.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +0 -1
  3. data/.travis.yml +19 -3
  4. data/Appraisals +2 -2
  5. data/Gemfile +2 -0
  6. data/Gemfile.lock +54 -46
  7. data/MIT-LICENSE +1 -1
  8. data/NEWS.md +11 -0
  9. data/README.md +28 -31
  10. data/Rakefile +9 -4
  11. data/config/routes.rb +1 -1
  12. data/gemfiles/rails3.1.gemfile +8 -0
  13. data/gemfiles/rails3.1.gemfile.lock +121 -0
  14. data/gemfiles/rails3.2.gemfile +8 -0
  15. data/gemfiles/rails3.2.gemfile.lock +119 -0
  16. data/gemfiles/rails4.0.gemfile +10 -0
  17. data/gemfiles/rails4.0.gemfile.lock +118 -0
  18. data/gemfiles/rails4.1.gemfile +10 -0
  19. data/gemfiles/rails4.1.gemfile.lock +124 -0
  20. data/high_voltage.gemspec +0 -2
  21. data/lib/high_voltage/configuration.rb +27 -6
  22. data/lib/high_voltage/engine.rb +12 -3
  23. data/lib/high_voltage/version.rb +1 -1
  24. data/lib/high_voltage.rb +1 -0
  25. data/spec/constraints/root_route_spec.rb +10 -14
  26. data/spec/controllers/action_caching_controller_spec.rb +21 -10
  27. data/spec/controllers/alternative_finder_controller_spec.rb +2 -2
  28. data/spec/controllers/page_caching_controller_spec.rb +19 -10
  29. data/spec/controllers/pages_controller_spec.rb +43 -53
  30. data/spec/controllers/subclassed_pages_controller_spec.rb +15 -21
  31. data/spec/dummy/config/environments/test.rb +2 -1
  32. data/spec/high_voltage/configuration_spec.rb +82 -19
  33. data/spec/high_voltage/page_finder_spec.rb +5 -5
  34. data/spec/high_voltage_spec.rb +3 -3
  35. data/spec/integration/navigation_spec.rb +2 -4
  36. data/spec/requests/home_page_spec.rb +1 -1
  37. data/spec/routing/routes_spec.rb +8 -8
  38. data/spec/spec_helper.rb +4 -3
  39. metadata +11 -35
  40. data/spec/support/caching.rb +0 -15
  41. data/spec/support/concern_reload.rb +0 -11
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6132908ee3ceb8d0bd92c7904926e07aa25d33fa
4
- data.tar.gz: 7380d36e82d395f54ba6a360ec6bf22d3a6d1f61
3
+ metadata.gz: b872bfede94dc9cf0c80856bd435edd5c8014f65
4
+ data.tar.gz: 742e628313897b06f7579d4c3098c2eab2717440
5
5
  SHA512:
6
- metadata.gz: 46412825479d480b85bb248ac95c08f8428b8b8e95f0c1365ff5430377d197cfcf9faf1a3ba83f94fccb34ee4bf5c9c19ee43d3d2b49a88ec53549096a148c9d
7
- data.tar.gz: 012bbf16df86ae556196514c59c21b963d9300a82245663ec0ae2eee0c007e66ceac20e21dba0072d9abd3cfac81af36ee82dd109864883cca6af97f80b2a38a
6
+ metadata.gz: 181f409611c5c3e699f29d27416b55f5633fc1d1d9af772b5bbc2d8fc17a70fe1308c207698aba65aafc23d91ba515a599a7e95591a8ee4855a856db44374edc
7
+ data.tar.gz: 8197ebd00469a8e6d1e77b58b26bfa02f2bfa5a32fdffaa13cd441e06448c26fdcb3ca39d3799da7b85be07aa94f454fee0fb6108678385527c464b7a8380e36
data/.gitignore CHANGED
@@ -5,5 +5,4 @@ spec/dummy/db/*.sqlite3
5
5
  spec/dummy/log/*.log
6
6
  spec/dummy/tmp/
7
7
  *.swp
8
- gemfiles/
9
8
  *.gem
data/.travis.yml CHANGED
@@ -1,8 +1,24 @@
1
+ gemfile:
2
+ - gemfiles/rails3.1.gemfile
3
+ - gemfiles/rails3.2.gemfile
4
+ - gemfiles/rails4.0.gemfile
5
+ - gemfiles/rails4.1.gemfile
6
+ install:
7
+ - 'travis_retry bundle install'
1
8
  language:
2
9
  - ruby
3
- install:
4
- - 'bundle install'
10
+ matrix:
11
+ exclude:
12
+ - rvm: 1.9.3
13
+ gemfile: gemfiles/rails4.0.gemfile
14
+ - rvm: 1.9.3
15
+ gemfile: gemfiles/rails4.1.gemfile
16
+ - rvm: 2.0.0
17
+ gemfile: gemfiles/rails3.1.gemfile
18
+ - rvm: 2.1.2
19
+ gemfile: gemfiles/rails3.1.gemfile
5
20
  rvm:
6
- - 1.9.2
7
21
  - 1.9.3
8
22
  - 2.0.0
23
+ - 2.1.2
24
+ script: 'bundle exec rake spec'
data/Appraisals CHANGED
@@ -1,5 +1,5 @@
1
1
  if RUBY_VERSION >= '2.0'
2
- rails_versions = ['~> 3.2.13', '~> 4.0.0']
2
+ rails_versions = ['~> 3.2.13', '~> 4.0.0', '~> 4.1.0']
3
3
  else
4
4
  rails_versions = ['~> 3.1.12', '~> 3.2.13']
5
5
  end
@@ -8,7 +8,7 @@ rails_versions.each do |rails_version|
8
8
  appraise "rails#{rails_version.slice(/\d+\.\d+/)}" do
9
9
  gem 'rails', rails_version
10
10
 
11
- if rails_version == '~> 4.0.0'
11
+ if ['~> 4.0.0', '~> 4.1.0'].include? rails_version
12
12
  gem 'actionpack-action_caching'
13
13
  gem 'actionpack-page_caching'
14
14
  end
data/Gemfile CHANGED
@@ -1,3 +1,5 @@
1
1
  source "http://rubygems.org"
2
2
 
3
+ gem 'appraisal'
4
+
3
5
  gemspec
data/Gemfile.lock CHANGED
@@ -1,62 +1,71 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- high_voltage (2.1.0)
4
+ high_voltage (2.2.1)
5
5
 
6
6
  GEM
7
7
  remote: http://rubygems.org/
8
8
  specs:
9
- activesupport (3.1.12)
10
- multi_json (~> 1.0)
11
- appraisal (0.5.2)
9
+ actionpack (4.1.1)
10
+ actionview (= 4.1.1)
11
+ activesupport (= 4.1.1)
12
+ rack (~> 1.5.2)
13
+ rack-test (~> 0.6.2)
14
+ actionview (4.1.1)
15
+ activesupport (= 4.1.1)
16
+ builder (~> 3.1)
17
+ erubis (~> 2.7.0)
18
+ activemodel (4.1.1)
19
+ activesupport (= 4.1.1)
20
+ builder (~> 3.1)
21
+ activesupport (4.1.1)
22
+ i18n (~> 0.6, >= 0.6.9)
23
+ json (~> 1.7, >= 1.7.7)
24
+ minitest (~> 5.1)
25
+ thread_safe (~> 0.1)
26
+ tzinfo (~> 1.1)
27
+ appraisal (1.0.0)
12
28
  bundler
13
29
  rake
14
- capybara (2.0.3)
15
- mime-types (>= 1.16)
16
- nokogiri (>= 1.3.3)
17
- rack (>= 1.0.0)
18
- rack-test (>= 0.5.4)
19
- selenium-webdriver (~> 2.0)
20
- xpath (~> 1.0.0)
21
- childprocess (0.3.9)
22
- ffi (~> 1.0, >= 1.0.11)
23
- coderay (1.0.9)
24
- diff-lcs (1.1.3)
25
- ffi (1.9.0)
26
- method_source (0.8.1)
27
- mime-types (1.23)
28
- mini_portile (0.5.1)
29
- multi_json (1.7.7)
30
- nokogiri (1.6.0)
31
- mini_portile (~> 0.5.0)
32
- pry (0.9.12.2)
33
- coderay (~> 1.0.5)
30
+ thor (>= 0.14.0)
31
+ builder (3.2.2)
32
+ coderay (1.1.0)
33
+ diff-lcs (1.2.5)
34
+ erubis (2.7.0)
35
+ i18n (0.6.9)
36
+ json (1.8.1)
37
+ method_source (0.8.2)
38
+ minitest (5.3.3)
39
+ pry (0.9.12.6)
40
+ coderay (~> 1.0)
34
41
  method_source (~> 0.8)
35
42
  slop (~> 3.4)
36
43
  rack (1.5.2)
37
44
  rack-test (0.6.2)
38
45
  rack (>= 1.0)
39
- rake (10.1.0)
40
- rspec (2.1.0)
41
- rspec-core (~> 2.1.0)
42
- rspec-expectations (~> 2.1.0)
43
- rspec-mocks (~> 2.1.0)
44
- rspec-core (2.1.0)
45
- rspec-expectations (2.1.0)
46
- diff-lcs (~> 1.1.2)
47
- rspec-mocks (2.1.0)
48
- rspec-rails (2.1.0)
49
- rspec (~> 2.1.0)
50
- rubyzip (0.9.9)
51
- selenium-webdriver (2.33.0)
52
- childprocess (>= 0.2.5)
53
- multi_json (~> 1.0)
54
- rubyzip
55
- websocket (~> 1.0.4)
56
- slop (3.4.5)
57
- websocket (1.0.7)
58
- xpath (1.0.0)
59
- nokogiri (~> 1.3)
46
+ railties (4.1.1)
47
+ actionpack (= 4.1.1)
48
+ activesupport (= 4.1.1)
49
+ rake (>= 0.8.7)
50
+ thor (>= 0.18.1, < 2.0)
51
+ rake (10.3.1)
52
+ rspec-core (2.14.8)
53
+ rspec-expectations (2.14.5)
54
+ diff-lcs (>= 1.1.3, < 2.0)
55
+ rspec-mocks (2.14.6)
56
+ rspec-rails (2.14.2)
57
+ actionpack (>= 3.0)
58
+ activemodel (>= 3.0)
59
+ activesupport (>= 3.0)
60
+ railties (>= 3.0)
61
+ rspec-core (~> 2.14.0)
62
+ rspec-expectations (~> 2.14.0)
63
+ rspec-mocks (~> 2.14.0)
64
+ slop (3.5.0)
65
+ thor (0.19.1)
66
+ thread_safe (0.3.3)
67
+ tzinfo (1.1.0)
68
+ thread_safe (~> 0.1)
60
69
 
61
70
  PLATFORMS
62
71
  ruby
@@ -64,7 +73,6 @@ PLATFORMS
64
73
  DEPENDENCIES
65
74
  activesupport (>= 3.1.0)
66
75
  appraisal
67
- capybara (= 2.0.3)
68
76
  high_voltage!
69
77
  pry
70
78
  rspec-rails
data/MIT-LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright 2010-2013 thoughtbot, inc.
1
+ Copyright 2010-2014 thoughtbot, inc.
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
data/NEWS.md CHANGED
@@ -1,3 +1,14 @@
1
+ New for 2.2.1:
2
+ + Resolve issue with require statements for Rails 3.x projects
3
+
4
+ New for 2.2.0:
5
+ + Deprecate caching because page and action caching was removed in Rails 4
6
+ + Refactor test suite to use rspec `expect` syntax consistently.
7
+ + Added Rails 4.1 to test suite.
8
+ + Remove Ruby 1.9.2 from test suite.
9
+ + Remove Capybara from test suite.
10
+ + Support dependency injection for Rails engine to define routes on
11
+
1
12
  New for 2.1.0:
2
13
  + Extract configuration options into a module
3
14
  + Add ability to configure whether layout is cached with action_caching
data/README.md CHANGED
@@ -15,7 +15,7 @@ Yeah, like "About us", "Directions", marketing pages, etc.
15
15
  Include in your Gemfile:
16
16
 
17
17
  ```ruby
18
- gem 'high_voltage', '~> 2.1.0'
18
+ gem 'high_voltage', '~> 2.2.1'
19
19
  ```
20
20
 
21
21
  For Rails versions prior to 3.0, use the 0.9.2 tag of high_voltage:
@@ -113,6 +113,18 @@ HighVoltage.configure do |config|
113
113
  end
114
114
  ```
115
115
 
116
+ #### Specifying Rails engine for routes
117
+
118
+ If you are using multiple Rails engines within your application, you can
119
+ specify which engine to define the default HighVoltage routes on.
120
+
121
+ ```ruby
122
+ # config/initializers/high_voltage.rb
123
+ HighVoltage.configure do |config|
124
+ config.parent_engine = MyEngine
125
+ end
126
+ ```
127
+
116
128
  #### Page titles and meta-data
117
129
 
118
130
  We suggest using `content_for` and `yield` for setting custom page titles and
@@ -145,36 +157,12 @@ end
145
157
 
146
158
  #### Caching
147
159
 
148
- High Voltage supports both [page](http://guides.rubyonrails.org/caching_with_rails.html#page-caching) and [action caching](http://guides.rubyonrails.org/caching_with_rails.html#action-caching).
160
+ Caching has been deprecated and will be removed in the next release.
149
161
 
150
- To enable action-caching you can add the following to your initializer:
151
-
152
- ```ruby
153
- # config/initializers/high_voltage.rb
154
- HighVolgate.configure do |config|
155
- config.action_caching = true
156
- config.action_caching_layout = false # optionally do not cache layout. default is true.
157
- end
158
- ```
159
-
160
- To enable page-caching:
161
-
162
- ```ruby
163
- # config/initializers/high_voltage.rb
164
- HighVolgate.configure do |config|
165
- config.page_caching = true
166
- end
167
- ```
168
-
169
- High Voltage will use your default cache store to store action caches.
170
-
171
- Using caching with Ruby on Rails 4 or higher requires gems:
172
-
173
- ```ruby
174
- # Gemfile
175
- gem 'actionpack-action_caching'
176
- gem 'actionpack-page_caching'
177
- ```
162
+ Page caching and action caching can be done via Rails. Visit the [Caching with
163
+ Rails: An overview](http://guides.rubyonrails.org/caching_with_rails.html) guide
164
+ for more details. You can utilize the methods described there by overriding the
165
+ HighVoltage controller as described [below](#override).
178
166
 
179
167
  ## Override
180
168
 
@@ -230,6 +218,15 @@ class PagesController < ApplicationController
230
218
  end
231
219
  ```
232
220
 
221
+ To set up a different layout for all High Voltage static pages, use an initializer:
222
+
223
+ ```ruby
224
+ # config/initializers/high_voltage.rb
225
+ HighVoltage.configure do |config|
226
+ config.layout = 'your_layout'
227
+ end
228
+ ```
229
+
233
230
  ## Custom finding
234
231
 
235
232
  You can further control the algorithm used to find pages by overriding
@@ -309,5 +306,5 @@ The names and logos for thoughtbot are trademarks of thoughtbot, inc.
309
306
 
310
307
  ## License
311
308
 
312
- High Voltage is Copyright © 2009-2013 thoughtbot. It is free software, and may
309
+ High Voltage is Copyright © 2009-2014 thoughtbot. It is free software, and may
313
310
  be redistributed under the terms specified in the MIT-LICENSE file.
data/Rakefile CHANGED
@@ -11,9 +11,14 @@ require 'appraisal'
11
11
  RSpec::Core::RakeTask.new(:spec)
12
12
 
13
13
  desc 'Default'
14
- task :default => [:all]
14
+ task :default do
15
+ if ENV['BUNDLE_GEMFILE'] =~ /gemfiles/
16
+ Rake::Task['spec'].invoke
17
+ else
18
+ Rake::Task['appraise'].invoke
19
+ end
20
+ end
15
21
 
16
- desc 'Test the engine under all supported Rails versions'
17
- task all: ['appraisal:install'] do |t|
18
- exec 'rake appraisal spec'
22
+ task :appraise do
23
+ exec 'appraisal install && appraisal rake'
19
24
  end
data/config/routes.rb CHANGED
@@ -1,4 +1,4 @@
1
- Rails.application.routes.draw do
1
+ HighVoltage.parent_engine.routes.draw do
2
2
  if HighVoltage.home_page
3
3
  get "/#{HighVoltage.home_page}", to: redirect('/')
4
4
  root to: 'high_voltage/pages#show', id: HighVoltage.home_page
@@ -0,0 +1,8 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "http://rubygems.org"
4
+
5
+ gem "appraisal"
6
+ gem "rails", "~> 3.1.12"
7
+
8
+ gemspec :path => "../"
@@ -0,0 +1,121 @@
1
+ PATH
2
+ remote: ../
3
+ specs:
4
+ high_voltage (2.2.0)
5
+
6
+ GEM
7
+ remote: http://rubygems.org/
8
+ specs:
9
+ actionmailer (3.1.12)
10
+ actionpack (= 3.1.12)
11
+ mail (~> 2.4.4)
12
+ actionpack (3.1.12)
13
+ activemodel (= 3.1.12)
14
+ activesupport (= 3.1.12)
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.12)
24
+ activesupport (= 3.1.12)
25
+ builder (~> 3.0.0)
26
+ i18n (~> 0.6)
27
+ activerecord (3.1.12)
28
+ activemodel (= 3.1.12)
29
+ activesupport (= 3.1.12)
30
+ arel (~> 2.2.3)
31
+ tzinfo (~> 0.3.29)
32
+ activeresource (3.1.12)
33
+ activemodel (= 3.1.12)
34
+ activesupport (= 3.1.12)
35
+ activesupport (3.1.12)
36
+ multi_json (~> 1.0)
37
+ appraisal (1.0.0)
38
+ bundler
39
+ rake
40
+ thor (>= 0.14.0)
41
+ arel (2.2.3)
42
+ builder (3.0.4)
43
+ coderay (1.1.0)
44
+ diff-lcs (1.2.5)
45
+ erubis (2.7.0)
46
+ hike (1.2.3)
47
+ i18n (0.6.9)
48
+ json (1.8.1)
49
+ mail (2.4.4)
50
+ i18n (>= 0.4.0)
51
+ mime-types (~> 1.16)
52
+ treetop (~> 1.4.8)
53
+ method_source (0.8.2)
54
+ mime-types (1.25.1)
55
+ multi_json (1.9.0)
56
+ polyglot (0.3.4)
57
+ pry (0.9.12.6)
58
+ coderay (~> 1.0)
59
+ method_source (~> 0.8)
60
+ slop (~> 3.4)
61
+ rack (1.3.10)
62
+ rack-cache (1.2)
63
+ rack (>= 0.4)
64
+ rack-mount (0.8.3)
65
+ rack (>= 1.0.0)
66
+ rack-ssl (1.3.3)
67
+ rack
68
+ rack-test (0.6.2)
69
+ rack (>= 1.0)
70
+ rails (3.1.12)
71
+ actionmailer (= 3.1.12)
72
+ actionpack (= 3.1.12)
73
+ activerecord (= 3.1.12)
74
+ activeresource (= 3.1.12)
75
+ activesupport (= 3.1.12)
76
+ bundler (~> 1.0)
77
+ railties (= 3.1.12)
78
+ railties (3.1.12)
79
+ actionpack (= 3.1.12)
80
+ activesupport (= 3.1.12)
81
+ rack-ssl (~> 1.3.2)
82
+ rake (>= 0.8.7)
83
+ rdoc (~> 3.4)
84
+ thor (~> 0.14.6)
85
+ rake (10.3.2)
86
+ rdoc (3.12.2)
87
+ json (~> 1.4)
88
+ rspec-core (2.14.8)
89
+ rspec-expectations (2.14.5)
90
+ diff-lcs (>= 1.1.3, < 2.0)
91
+ rspec-mocks (2.14.6)
92
+ rspec-rails (2.14.2)
93
+ actionpack (>= 3.0)
94
+ activemodel (>= 3.0)
95
+ activesupport (>= 3.0)
96
+ railties (>= 3.0)
97
+ rspec-core (~> 2.14.0)
98
+ rspec-expectations (~> 2.14.0)
99
+ rspec-mocks (~> 2.14.0)
100
+ slop (3.5.0)
101
+ sprockets (2.0.4)
102
+ hike (~> 1.2)
103
+ rack (~> 1.0)
104
+ tilt (~> 1.1, != 1.3.0)
105
+ thor (0.14.6)
106
+ tilt (1.4.1)
107
+ treetop (1.4.15)
108
+ polyglot
109
+ polyglot (>= 0.3.1)
110
+ tzinfo (0.3.39)
111
+
112
+ PLATFORMS
113
+ ruby
114
+
115
+ DEPENDENCIES
116
+ activesupport (>= 3.1.0)
117
+ appraisal
118
+ high_voltage!
119
+ pry
120
+ rails (~> 3.1.12)
121
+ rspec-rails
@@ -0,0 +1,8 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "http://rubygems.org"
4
+
5
+ gem "appraisal"
6
+ gem "rails", "~> 3.2.13"
7
+
8
+ gemspec :path => "../"
@@ -0,0 +1,119 @@
1
+ PATH
2
+ remote: ../
3
+ specs:
4
+ high_voltage (2.2.0)
5
+
6
+ GEM
7
+ remote: http://rubygems.org/
8
+ specs:
9
+ actionmailer (3.2.16)
10
+ actionpack (= 3.2.16)
11
+ mail (~> 2.5.4)
12
+ actionpack (3.2.16)
13
+ activemodel (= 3.2.16)
14
+ activesupport (= 3.2.16)
15
+ builder (~> 3.0.0)
16
+ erubis (~> 2.7.0)
17
+ journey (~> 1.0.4)
18
+ rack (~> 1.4.5)
19
+ rack-cache (~> 1.2)
20
+ rack-test (~> 0.6.1)
21
+ sprockets (~> 2.2.1)
22
+ activemodel (3.2.16)
23
+ activesupport (= 3.2.16)
24
+ builder (~> 3.0.0)
25
+ activerecord (3.2.16)
26
+ activemodel (= 3.2.16)
27
+ activesupport (= 3.2.16)
28
+ arel (~> 3.0.2)
29
+ tzinfo (~> 0.3.29)
30
+ activeresource (3.2.16)
31
+ activemodel (= 3.2.16)
32
+ activesupport (= 3.2.16)
33
+ activesupport (3.2.16)
34
+ i18n (~> 0.6, >= 0.6.4)
35
+ multi_json (~> 1.0)
36
+ appraisal (1.0.0)
37
+ bundler
38
+ rake
39
+ thor (>= 0.14.0)
40
+ arel (3.0.3)
41
+ builder (3.0.4)
42
+ coderay (1.1.0)
43
+ diff-lcs (1.2.5)
44
+ erubis (2.7.0)
45
+ hike (1.2.3)
46
+ i18n (0.6.11)
47
+ journey (1.0.4)
48
+ json (1.8.1)
49
+ mail (2.5.4)
50
+ mime-types (~> 1.16)
51
+ treetop (~> 1.4.8)
52
+ method_source (0.8.2)
53
+ mime-types (1.25.1)
54
+ multi_json (1.10.1)
55
+ polyglot (0.3.5)
56
+ pry (0.10.0)
57
+ coderay (~> 1.1.0)
58
+ method_source (~> 0.8.1)
59
+ slop (~> 3.4)
60
+ rack (1.4.5)
61
+ rack-cache (1.2)
62
+ rack (>= 0.4)
63
+ rack-ssl (1.3.3)
64
+ rack
65
+ rack-test (0.6.2)
66
+ rack (>= 1.0)
67
+ rails (3.2.16)
68
+ actionmailer (= 3.2.16)
69
+ actionpack (= 3.2.16)
70
+ activerecord (= 3.2.16)
71
+ activeresource (= 3.2.16)
72
+ activesupport (= 3.2.16)
73
+ bundler (~> 1.0)
74
+ railties (= 3.2.16)
75
+ railties (3.2.16)
76
+ actionpack (= 3.2.16)
77
+ activesupport (= 3.2.16)
78
+ rack-ssl (~> 1.3.2)
79
+ rake (>= 0.8.7)
80
+ rdoc (~> 3.4)
81
+ thor (>= 0.14.6, < 2.0)
82
+ rake (10.3.2)
83
+ rdoc (3.12.2)
84
+ json (~> 1.4)
85
+ rspec-core (2.14.8)
86
+ rspec-expectations (2.14.5)
87
+ diff-lcs (>= 1.1.3, < 2.0)
88
+ rspec-mocks (2.14.6)
89
+ rspec-rails (2.14.2)
90
+ actionpack (>= 3.0)
91
+ activemodel (>= 3.0)
92
+ activesupport (>= 3.0)
93
+ railties (>= 3.0)
94
+ rspec-core (~> 2.14.0)
95
+ rspec-expectations (~> 2.14.0)
96
+ rspec-mocks (~> 2.14.0)
97
+ slop (3.5.0)
98
+ sprockets (2.2.2)
99
+ hike (~> 1.2)
100
+ multi_json (~> 1.0)
101
+ rack (~> 1.0)
102
+ tilt (~> 1.1, != 1.3.0)
103
+ thor (0.19.1)
104
+ tilt (1.4.1)
105
+ treetop (1.4.15)
106
+ polyglot
107
+ polyglot (>= 0.3.1)
108
+ tzinfo (0.3.39)
109
+
110
+ PLATFORMS
111
+ ruby
112
+
113
+ DEPENDENCIES
114
+ activesupport (>= 3.1.0)
115
+ appraisal
116
+ high_voltage!
117
+ pry
118
+ rails (~> 3.2.13)
119
+ rspec-rails
@@ -0,0 +1,10 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "http://rubygems.org"
4
+
5
+ gem "appraisal"
6
+ gem "rails", "~> 4.0.0"
7
+ gem "actionpack-action_caching"
8
+ gem "actionpack-page_caching"
9
+
10
+ gemspec :path => "../"