cant_wait 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (75) hide show
  1. checksums.yaml +8 -8
  2. checksums.yaml.gz.sig +0 -0
  3. data.tar.gz.sig +0 -0
  4. data/.gitignore +3 -15
  5. data/.travis.yml +5 -5
  6. data/CHANGELOG.md +21 -0
  7. data/README.md +33 -27
  8. data/cant_wait.gemspec +7 -7
  9. data/cert/README.md +70 -0
  10. data/cert/public_cert.pem +21 -0
  11. data/lib/cant_wait.rb +2 -0
  12. data/lib/cant_wait/cant_wait_railtie.rb +2 -0
  13. data/lib/cant_wait/version.rb +3 -1
  14. data/tasks/testing.rake +2 -2
  15. data/test/README.md +44 -25
  16. data/test/cant_wait_test.rb +8 -12
  17. data/test/test_apps/Test_3_0_03/Gemfile +0 -2
  18. data/test/test_apps/Test_3_0_20/Gemfile +0 -2
  19. data/test/test_apps/Test_3_1_12/Gemfile +0 -2
  20. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/Gemfile +1 -3
  21. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/README.rdoc +0 -0
  22. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/Rakefile +1 -1
  23. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/app/assets/images/rails.png +0 -0
  24. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/app/assets/javascripts/application.js +0 -0
  25. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/app/assets/stylesheets/application.css +0 -0
  26. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/app/controllers/application_controller.rb +0 -0
  27. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/app/helpers/application_helper.rb +0 -0
  28. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/app/mailers/.gitkeep +0 -0
  29. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/app/models/.gitkeep +0 -0
  30. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/app/views/layouts/application.html.erb +1 -1
  31. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/config.ru +1 -1
  32. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/config/application.rb +1 -1
  33. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/config/boot.rb +0 -0
  34. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/config/environment.rb +1 -1
  35. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/config/environments/development.rb +1 -1
  36. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/config/environments/production.rb +1 -1
  37. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/config/environments/test.rb +1 -1
  38. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/config/initializers/backtrace_silencers.rb +0 -0
  39. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/config/initializers/inflections.rb +0 -0
  40. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/config/initializers/mime_types.rb +0 -0
  41. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/config/initializers/secret_token.rb +1 -1
  42. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/config/initializers/session_store.rb +2 -2
  43. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/config/initializers/wrap_parameters.rb +0 -0
  44. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/config/locales/en.yml +0 -0
  45. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/config/routes.rb +1 -1
  46. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/db/seeds.rb +0 -0
  47. data/test/test_apps/Test_3_2_14/doc/README_FOR_APP +2 -0
  48. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/lib/assets/.gitkeep +0 -0
  49. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/lib/tasks/.gitkeep +0 -0
  50. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/log/.gitkeep +0 -0
  51. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/public/404.html +0 -0
  52. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/public/422.html +0 -0
  53. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/public/500.html +0 -0
  54. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/public/favicon.ico +0 -0
  55. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/public/index.html +0 -0
  56. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/public/robots.txt +0 -0
  57. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/script/rails +0 -0
  58. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/test/fixtures/.gitkeep +0 -0
  59. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/test/functional/.gitkeep +0 -0
  60. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/test/integration/.gitkeep +0 -0
  61. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/test/performance/browsing_test.rb +0 -0
  62. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/test/test_helper.rb +0 -0
  63. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/test/unit/.gitkeep +0 -0
  64. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/vendor/assets/javascripts/.gitkeep +0 -0
  65. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/vendor/assets/stylesheets/.gitkeep +0 -0
  66. data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/vendor/plugins/.gitkeep +0 -0
  67. data/test/test_apps/Test_4_0_0/Gemfile +0 -2
  68. metadata +127 -144
  69. metadata.gz.sig +0 -0
  70. data/test/test_apps/Test_3_0_03/.gitignore +0 -12
  71. data/test/test_apps/Test_3_0_20/.gitignore +0 -12
  72. data/test/test_apps/Test_3_1_12/.gitignore +0 -12
  73. data/test/test_apps/Test_3_2_13/.gitignore +0 -12
  74. data/test/test_apps/Test_4_0_0/.gitignore +0 -16
  75. data/test/test_apps/Test_4_0_0/config/database.yml +0 -6
@@ -9,7 +9,7 @@ class CantWait1Test < MiniTest::Unit::TestCase
9
9
  TEST_RAILS_APP = [{ version: '3.0.3', rails_root: 'test_apps/Test_3_0_03'},
10
10
  { version: '3.0.20', rails_root: 'test_apps/Test_3_0_20'},
11
11
  { version: '3.1.12', rails_root: 'test_apps/Test_3_1_12'},
12
- { version: '3.2.13', rails_root: 'test_apps/Test_3_2_13'},
12
+ { version: '3.2.14', rails_root: 'test_apps/Test_3_2_14'},
13
13
  { version: '4.0.0', rails_root: 'test_apps/Test_4_0_0' }]
14
14
 
15
15
  # Set a random timeout and rails app to be tested
@@ -29,7 +29,7 @@ class CantWait1Test < MiniTest::Unit::TestCase
29
29
 
30
30
  puts "Rails version aimed at: #{@rails_app[:version]}" if @verbose
31
31
  # Choose one timeout option:
32
- test_chosen = random_number((1..3))
32
+ test_chosen = random_number (1..4)
33
33
  case test_chosen
34
34
  when 1 then
35
35
  # No timeout set:
@@ -41,10 +41,10 @@ class CantWait1Test < MiniTest::Unit::TestCase
41
41
  @timeout = 300_000 # 60x5 = 300 => 300,000 milliseconds
42
42
  puts "Timeout set at 5 minutes (#{@timeout} milliseconds)"
43
43
  @expected_result = @timeout
44
- when 3 then
45
- # Random timeout (1 min to 10 hours)
46
- @timeout = random_number(((60_000)..(10*60*60_000))) # 1 minute to 10 hours
47
- puts "Random timeout (1 sec. to 10 min.): #{@timeout} millisecods ~> #{@timeout/1_000.0} sec ~> #{@timeout/60_000} min"
44
+ when 3, 4 then # Giving more chances to this option
45
+ # Random timeout (1 sec to 1 hour)
46
+ @timeout = random_number ((1_000)..(3_600_000))
47
+ puts "Random timeout (from 1 second to 1 hour): #{@timeout} millisec ~> #{@timeout/1_000} sec ~> #{@timeout/60_000} min"
48
48
  @expected_result = @timeout
49
49
  end
50
50
  end
@@ -97,12 +97,8 @@ DATABASE_SETTINGS
97
97
 
98
98
  private
99
99
 
100
- def random_number(range)
101
- if range.is_a? Range
102
- range.min + rand(range.max + 1 - range.min)
103
- else
104
- 0
105
- end
100
+ def random_number(collection)
101
+ collection.to_a.sample if collection.respond_to? :to_a
106
102
  end
107
103
 
108
104
  def statement_timeout
@@ -5,9 +5,7 @@ gem 'rails', '3.0.3'
5
5
  #-- Special additions-----------------
6
6
  # PostgreSQL as the database for ActiveRecord
7
7
  if RUBY_ENGINE == 'jruby' && RUBY_PLATFORM == 'java'
8
- gem 'activerecord-jdbc-adapter', '~> 1.2'
9
8
  gem 'activerecord-jdbcpostgresql-adapter', '~> 1.2'
10
- gem 'jdbc-postgres', '~> 9'
11
9
  else
12
10
  gem 'pg', '~> 0'
13
11
  end
@@ -5,9 +5,7 @@ gem 'rails', '3.0.20'
5
5
  #-- Special additions-----------------
6
6
  # PostgreSQL as the database for ActiveRecord
7
7
  if RUBY_ENGINE == 'jruby' && RUBY_PLATFORM == 'java'
8
- gem 'activerecord-jdbc-adapter', '~> 1.2'
9
8
  gem 'activerecord-jdbcpostgresql-adapter', '~> 1.2'
10
- gem 'jdbc-postgres', '~> 9'
11
9
  else
12
10
  gem 'pg', '~> 0'
13
11
  end
@@ -20,9 +20,7 @@ end
20
20
  #-- Special additions-----------------
21
21
  # PostgreSQL as the database for ActiveRecord
22
22
  if RUBY_ENGINE == 'jruby' && RUBY_PLATFORM == 'java'
23
- gem 'activerecord-jdbc-adapter', '~> 1.2'
24
23
  gem 'activerecord-jdbcpostgresql-adapter', '~> 1.2'
25
- gem 'jdbc-postgres', '~> 9'
26
24
  else
27
25
  gem 'pg', '~> 0'
28
26
  end
@@ -1,6 +1,6 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
- gem 'rails', '3.2.13'
3
+ gem 'rails', '3.2.14'
4
4
 
5
5
  # Gems used only for assets and not required
6
6
  # in production environments by default.
@@ -15,9 +15,7 @@ gem 'jquery-rails'
15
15
  #-- Special additions-----------------
16
16
  # PostgreSQL as the database for ActiveRecord
17
17
  if RUBY_ENGINE == 'jruby' && RUBY_PLATFORM == 'java'
18
- gem 'activerecord-jdbc-adapter', '~> 1.2'
19
18
  gem 'activerecord-jdbcpostgresql-adapter', '~> 1.2'
20
- gem 'jdbc-postgres', '~> 9'
21
19
  else
22
20
  gem 'pg', '~> 0'
23
21
  end
@@ -4,4 +4,4 @@
4
4
 
5
5
  require File.expand_path('../config/application', __FILE__)
6
6
 
7
- Test3213::Application.load_tasks
7
+ Test3214::Application.load_tasks
@@ -1,7 +1,7 @@
1
1
  <!DOCTYPE html>
2
2
  <html>
3
3
  <head>
4
- <title>Test3213</title>
4
+ <title>Test3214</title>
5
5
  <%= stylesheet_link_tag "application", :media => "all" %>
6
6
  <%= javascript_include_tag "application" %>
7
7
  <%= csrf_meta_tags %>
@@ -1,4 +1,4 @@
1
1
  # This file is used by Rack-based servers to start the application.
2
2
 
3
3
  require ::File.expand_path('../config/environment', __FILE__)
4
- run Test3213::Application
4
+ run Test3214::Application
@@ -9,7 +9,7 @@ if defined?(Bundler)
9
9
  # Bundler.require(:default, :assets, Rails.env)
10
10
  end
11
11
 
12
- module Test3213
12
+ module Test3214
13
13
  class Application < Rails::Application
14
14
  # Settings in config/environments/* take precedence over those specified here.
15
15
  # Application configuration should go into files in config/initializers
@@ -2,4 +2,4 @@
2
2
  require File.expand_path('../application', __FILE__)
3
3
 
4
4
  # Initialize the rails application
5
- Test3213::Application.initialize!
5
+ Test3214::Application.initialize!
@@ -1,4 +1,4 @@
1
- Test3213::Application.configure do
1
+ Test3214::Application.configure do
2
2
  # Settings specified here will take precedence over those in config/application.rb
3
3
 
4
4
  # In the development environment your application's code is reloaded on
@@ -1,4 +1,4 @@
1
- Test3213::Application.configure do
1
+ Test3214::Application.configure do
2
2
  # Settings specified here will take precedence over those in config/application.rb
3
3
 
4
4
  # Code is not reloaded between requests
@@ -1,4 +1,4 @@
1
- Test3213::Application.configure do
1
+ Test3214::Application.configure do
2
2
  # Settings specified here will take precedence over those in config/application.rb
3
3
 
4
4
  # The test environment is used exclusively to run your application's
@@ -4,4 +4,4 @@
4
4
  # If you change this key, all old signed cookies will become invalid!
5
5
  # Make sure the secret is at least 30 characters and all random,
6
6
  # no regular words or you'll be exposed to dictionary attacks.
7
- Test3213::Application.config.secret_token = '15961bb61e3d2eb9e58f4879b3580b4ecd99b8be558d5c40c58ac360d4b571a05319dd03fccb84c669d4bfe64799890fea35732fbbff18cb45678ab2ba06f2af'
7
+ Test3214::Application.config.secret_token = '49219137772173a83c7a25c691aa4de6571a40443b47e9da5c04d448dc8eb7ab1ab26d3e60fd713997e992051eff9f867b18adcd9f0fd819270dea8f26376700'
@@ -1,8 +1,8 @@
1
1
  # Be sure to restart your server when you modify this file.
2
2
 
3
- Test3213::Application.config.session_store :cookie_store, key: '_Test_3_2_13_session'
3
+ Test3214::Application.config.session_store :cookie_store, key: '_Test_3_2_14_session'
4
4
 
5
5
  # Use the database for sessions instead of the cookie-based default,
6
6
  # which shouldn't be used to store highly confidential information
7
7
  # (create the session table with "rails generate session_migration")
8
- # Test3213::Application.config.session_store :active_record_store
8
+ # Test3214::Application.config.session_store :active_record_store
@@ -1,4 +1,4 @@
1
- Test3213::Application.routes.draw do
1
+ Test3214::Application.routes.draw do
2
2
  # The priority is based upon order of creation:
3
3
  # first created -> highest priority.
4
4
 
@@ -0,0 +1,2 @@
1
+ Use this README file to introduce your application and point to useful places in the API for learning more.
2
+ Run "rake doc:app" to generate API documentation for your models, controllers, helpers, and libraries.
@@ -29,9 +29,7 @@ end
29
29
  #-- Special additions-----------------
30
30
  # PostgreSQL as the database for ActiveRecord
31
31
  if RUBY_ENGINE == 'jruby' && RUBY_PLATFORM == 'java'
32
- gem 'activerecord-jdbc-adapter', '~> 1.2'
33
32
  gem 'activerecord-jdbcpostgresql-adapter', '~> 1.2'
34
- gem 'jdbc-postgres', '~> 9'
35
33
  else
36
34
  gem 'pg', '~> 0'
37
35
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cant_wait
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Carlos A. Carro Duplá
@@ -9,39 +9,36 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain:
11
11
  - !binary |-
12
- LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUQ0RENDQXNpZ0F3SUJB
13
- Z0lKQUlMQ0IwVktkbUdYTUEwR0NTcUdTSWIzRFFFQkJRVUFNRk14Q3pBSkJn
14
- TlYKQkFZVEFsVlRNUXN3Q1FZRFZRUUlFd0pOUkRFUk1BOEdBMVVFQXhNSVEy
12
+ LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURlekNDQW1PZ0F3SUJB
13
+ Z0lKQVBxbnBEckl4QjVFTUEwR0NTcUdTSWIzRFFFQkJRVUFNRk14Q3pBSkJn
14
+ TlYKQkFZVEFsVlRNUXN3Q1FZRFZRUUlEQUpOUkRFUk1BOEdBMVVFQXd3SVEy
15
15
  RnliRzl6UTBReEpEQWlCZ2txaGtpRwo5dzBCQ1FFV0ZXTmpZWEp5YjJSMWNH
16
- eGhRR2R0WVdsc0xtTnZiVEFlRncweE16QTJNRFF3TURBNE1qTmFGdzB4Ck5E
17
- QTJNRFF3TURBNE1qTmFNRk14Q3pBSkJnTlZCQVlUQWxWVE1Rc3dDUVlEVlFR
18
- SUV3Sk5SREVSTUE4R0ExVUUKQXhNSVEyRnliRzl6UTBReEpEQWlCZ2txaGtp
19
- Rzl3MEJDUUVXRldOallYSnliMlIxY0d4aFFHZHRZV2xzTG1OdgpiVENDQVNJ
20
- d0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNZC94SGI1
21
- RHc1SHVvbjJIZlJtCkJEU3MxQnZMV1U2VnM5dlBlajQ0SUtnNUhvSXN6aHhE
22
- WEJkaEVsQk1xS2NVVDkrUHk2eUhmN3QyVG9Zak9jcW8KM2ZEcjFsUlhLTTZX
23
- Mk90SGR4OFoxY0JIeDVSWDlJSVY2Z3JOcTJPVjgyT2I0ajhrUHJ4VjlML1ZO
24
- T0w1R1Q5bgpHc2lVekg3b1hYaC85dzhDcXBCeTh4L29UT3ExRG8yT0VUZEs5
25
- RGxqNGJOcnpUTG80WXgxaWlQNCtZSTJBNnU1CmZLSU84aXBtWlRHQ21GS3hv
26
- TGpHWlU4TU90VS9CdE1xQ215eTgxekNRQTFLdDhjTTIxRFBmSnIzanhySXNS
27
- VG8KTTlnalRlNEFRcElhbWNxM0NWWXA1KytpS3gxeHdOc1I3all5dGwzNXRY
28
- UlFLbnJOZzNoL2Z0SnVBb21EVldqbQpoRFVDQXdFQUFhT0J0akNCc3pBZEJn
29
- TlZIUTRFRmdRVWtZbkdLNnJQMHV5dHpWdG14TzZPcktTVDJBY3dnWU1HCkEx
30
- VWRJd1I4TUhxQUZKR0p4aXVxejlMc3JjMWJac1R1anF5a2s5Z0hvVmVrVlRC
31
- VE1Rc3dDUVlEVlFRR0V3SlYKVXpFTE1Ba0dBMVVFQ0JNQ1RVUXhFVEFQQmdO
32
- VkJBTVRDRU5oY214dmMwTkVNU1F3SWdZSktvWklodmNOQVFrQgpGaFZqWTJG
33
- eWNtOWtkWEJzWVVCbmJXRnBiQzVqYjIyQ0NRQ0N3Z2RGU25aaGx6QU1CZ05W
34
- SFJNRUJUQURBUUgvCk1BMEdDU3FHU0liM0RRRUJCUVVBQTRJQkFRQUZuYTRj
35
- ZGhCUjVPYXN5SDIyZExURzBkSkx6aExSU21CbkxXT1QKaEtxNGRwK3AwekJW
36
- Q0lxZDl0VlAvb2p2ZEttNExWdGRtZCtqK2p2ZWRVVFNpNmh0RGdpRFJEWThr
37
- dEhOWDRRMwptVGVjU3RrU0pUdXd5ZEUweE14enduZ3ZDcHdwb1pOWHpmU2ZV
38
- bXZkc1RwRkpDVGlrSmxoYVpaaUxxb0FQZ01iCnRIYVkrdUdMQXdubWk3b3pE
39
- Ly82WG1Rejc2d2x4eUJKZk40aHQxUHMrRlBzMW05SmFvQnAwMTFrME9iZ3BU
40
- UGQKaHEvY3Z1TXJ2OTBVcDJKaldySlhMZTJ3VVNjQWtsek5iVVY2aDVmSjlT
41
- cHg0UWV0bkZUeGkwaEVqQnV4b1UyUQpFcVJVaGpGYkpGSm9TTW9ycXV4N0w1
42
- Uk5ML3JGYzBrTHY5S2lCYk02UEF6QjhhcUQKLS0tLS1FTkQgQ0VSVElGSUNB
43
- VEUtLS0tLQo=
44
- date: 2013-06-26 00:00:00.000000000 Z
16
+ eGhRR2R0WVdsc0xtTnZiVEFnRncweE16QTNNVGd4T1RNd05ESmFHQTh5Ck1E
17
+ VXpNRGN3T0RFNU16QTBNbG93VXpFTE1Ba0dBMVVFQmhNQ1ZWTXhDekFKQmdO
18
+ VkJBZ01BazFFTVJFd0R3WUQKVlFRRERBaERZWEpzYjNORFJERWtNQ0lHQ1Nx
19
+ R1NJYjNEUUVKQVJZVlkyTmhjbkp2WkhWd2JHRkFaMjFoYVd3dQpZMjl0TUlJ
20
+ QklqQU5CZ2txaGtpRzl3MEJBUUVGQUFPQ0FROEFNSUlCQ2dLQ0FRRUF4My9F
21
+ ZHZrUERrZTZpZllkCjlHWUVOS3pVRzh0WlRwV3oyODk2UGpnZ3FEa2VnaXpP
22
+ SEVOY0YyRVNVRXlvcHhSUDM0L0xySWQvdTNaT2hpTTUKeXFqZDhPdldWRmNv
23
+ enBiWTYwZDNIeG5Wd0VmSGxGZjBnaFhxQ3Myclk1WHpZNXZpUHlRK3ZGWDB2
24
+ OVUwNHZrWgpQMmNheUpUTWZ1aGRlSC8zRHdLcWtITHpIK2hNNnJVT2pZNFJO
25
+ MHIwT1dQaHMydk5NdWpoakhXS0kvajVnallECnE3bDhvZzd5S21abE1ZS1lV
26
+ ckdndU1abFR3dzYxVDhHMHlvS2JMTHpYTUpBRFVxM3h3emJVTTk4bXZlUEdz
27
+ aXgKRk9nejJDTk43Z0JDa2hxWnlyY0pWaW5uNzZJckhYSEEyeEh1TmpLMlhm
28
+ bTFkRkFxZXMyRGVIOSswbTRDaVlOVgphT2FFTlFJREFRQUJvMUF3VGpBZEJn
29
+ TlZIUTRFRmdRVWtZbkdLNnJQMHV5dHpWdG14TzZPcktTVDJBY3dId1lEClZS
30
+ MGpCQmd3Rm9BVWtZbkdLNnJQMHV5dHpWdG14TzZPcktTVDJBY3dEQVlEVlIw
31
+ VEJBVXdBd0VCL3pBTkJna3EKaGtpRzl3MEJBUVVGQUFPQ0FRRUFNYmUzZWk4
32
+ YWY4cjJ3dmI2RlEvZi9HbG5GSmZhUEpJYURFajhlbWcyc1NJZwptN1FnM2U2
33
+ MDFtMVVGMGhxVEVHY2pVbXJyUHJrbk9ZditKZ3dkQnNsQkpuTGFzQ0FEWnNo
34
+ WDJNSXpqbHpIRzNXCjJ0RkdLR20zeGFKYktiRkozSzFIV29mMzk5RTllY1Mw
35
+ MlpCRXJ2b0p2WWpLQk9WK0R2WVcxOHpyeVgvb01RR3IKM2J0WW8zTmxEdU5Y
36
+ VnBYNUNoUEMvUWN2SzNETE1QMTAyWWd1Wk1qYXd5bXBwdG96UkhndlFZTE5q
37
+ bXNacGk3Kwo0THg3VHdaQi9BVDR4UWZoS2V3WFlUZnZqUlFSVUtobm5oUGgr
38
+ Q1l3cGwweFY5anVuLzhISENWTFdGeURMS2EwCmo4c3dLa1dFQ01rZTNxWm12
39
+ S1c4TlRXUWM0ZmZwYkd0dWdpZjBJdzliQT09Ci0tLS0tRU5EIENFUlRJRklD
40
+ QVRFLS0tLS0K
41
+ date: 2013-08-15 00:00:00.000000000 Z
45
42
  dependencies:
46
43
  - !ruby/object:Gem::Dependency
47
44
  name: rails
@@ -143,6 +140,8 @@ files:
143
140
  - README.md
144
141
  - Rakefile
145
142
  - cant_wait.gemspec
143
+ - cert/README.md
144
+ - cert/public_cert.pem
146
145
  - lib/cant_wait.rb
147
146
  - lib/cant_wait/cant_wait_railtie.rb
148
147
  - lib/cant_wait/version.rb
@@ -152,7 +151,6 @@ files:
152
151
  - test/README.md
153
152
  - test/cant_wait_test.rb
154
153
  - test/database.yml
155
- - test/test_apps/Test_3_0_03/.gitignore
156
154
  - test/test_apps/Test_3_0_03/Gemfile
157
155
  - test/test_apps/Test_3_0_03/README
158
156
  - test/test_apps/Test_3_0_03/Rakefile
@@ -193,7 +191,6 @@ files:
193
191
  - test/test_apps/Test_3_0_03/test/performance/browsing_test.rb
194
192
  - test/test_apps/Test_3_0_03/test/test_helper.rb
195
193
  - test/test_apps/Test_3_0_03/vendor/plugins/.gitkeep
196
- - test/test_apps/Test_3_0_20/.gitignore
197
194
  - test/test_apps/Test_3_0_20/Gemfile
198
195
  - test/test_apps/Test_3_0_20/README
199
196
  - test/test_apps/Test_3_0_20/Rakefile
@@ -203,7 +200,6 @@ files:
203
200
  - test/test_apps/Test_3_0_20/config.ru
204
201
  - test/test_apps/Test_3_0_20/config/application.rb
205
202
  - test/test_apps/Test_3_0_20/config/boot.rb
206
- - test/test_apps/Test_3_0_20/config/database.yml
207
203
  - test/test_apps/Test_3_0_20/config/environment.rb
208
204
  - test/test_apps/Test_3_0_20/config/environments/development.rb
209
205
  - test/test_apps/Test_3_0_20/config/environments/production.rb
@@ -235,7 +231,6 @@ files:
235
231
  - test/test_apps/Test_3_0_20/test/performance/browsing_test.rb
236
232
  - test/test_apps/Test_3_0_20/test/test_helper.rb
237
233
  - test/test_apps/Test_3_0_20/vendor/plugins/.gitkeep
238
- - test/test_apps/Test_3_1_12/.gitignore
239
234
  - test/test_apps/Test_3_1_12/Gemfile
240
235
  - test/test_apps/Test_3_1_12/README
241
236
  - test/test_apps/Test_3_1_12/Rakefile
@@ -250,7 +245,6 @@ files:
250
245
  - test/test_apps/Test_3_1_12/config.ru
251
246
  - test/test_apps/Test_3_1_12/config/application.rb
252
247
  - test/test_apps/Test_3_1_12/config/boot.rb
253
- - test/test_apps/Test_3_1_12/config/database.yml
254
248
  - test/test_apps/Test_3_1_12/config/environment.rb
255
249
  - test/test_apps/Test_3_1_12/config/environments/development.rb
256
250
  - test/test_apps/Test_3_1_12/config/environments/production.rb
@@ -282,55 +276,53 @@ files:
282
276
  - test/test_apps/Test_3_1_12/test/unit/.gitkeep
283
277
  - test/test_apps/Test_3_1_12/vendor/assets/stylesheets/.gitkeep
284
278
  - test/test_apps/Test_3_1_12/vendor/plugins/.gitkeep
285
- - test/test_apps/Test_3_2_13/.gitignore
286
- - test/test_apps/Test_3_2_13/Gemfile
287
- - test/test_apps/Test_3_2_13/README.rdoc
288
- - test/test_apps/Test_3_2_13/Rakefile
289
- - test/test_apps/Test_3_2_13/app/assets/images/rails.png
290
- - test/test_apps/Test_3_2_13/app/assets/javascripts/application.js
291
- - test/test_apps/Test_3_2_13/app/assets/stylesheets/application.css
292
- - test/test_apps/Test_3_2_13/app/controllers/application_controller.rb
293
- - test/test_apps/Test_3_2_13/app/helpers/application_helper.rb
294
- - test/test_apps/Test_3_2_13/app/mailers/.gitkeep
295
- - test/test_apps/Test_3_2_13/app/models/.gitkeep
296
- - test/test_apps/Test_3_2_13/app/views/layouts/application.html.erb
297
- - test/test_apps/Test_3_2_13/config.ru
298
- - test/test_apps/Test_3_2_13/config/application.rb
299
- - test/test_apps/Test_3_2_13/config/boot.rb
300
- - test/test_apps/Test_3_2_13/config/database.yml
301
- - test/test_apps/Test_3_2_13/config/environment.rb
302
- - test/test_apps/Test_3_2_13/config/environments/development.rb
303
- - test/test_apps/Test_3_2_13/config/environments/production.rb
304
- - test/test_apps/Test_3_2_13/config/environments/test.rb
305
- - test/test_apps/Test_3_2_13/config/initializers/backtrace_silencers.rb
306
- - test/test_apps/Test_3_2_13/config/initializers/inflections.rb
307
- - test/test_apps/Test_3_2_13/config/initializers/mime_types.rb
308
- - test/test_apps/Test_3_2_13/config/initializers/secret_token.rb
309
- - test/test_apps/Test_3_2_13/config/initializers/session_store.rb
310
- - test/test_apps/Test_3_2_13/config/initializers/wrap_parameters.rb
311
- - test/test_apps/Test_3_2_13/config/locales/en.yml
312
- - test/test_apps/Test_3_2_13/config/routes.rb
313
- - test/test_apps/Test_3_2_13/db/seeds.rb
314
- - test/test_apps/Test_3_2_13/lib/assets/.gitkeep
315
- - test/test_apps/Test_3_2_13/lib/tasks/.gitkeep
316
- - test/test_apps/Test_3_2_13/log/.gitkeep
317
- - test/test_apps/Test_3_2_13/public/404.html
318
- - test/test_apps/Test_3_2_13/public/422.html
319
- - test/test_apps/Test_3_2_13/public/500.html
320
- - test/test_apps/Test_3_2_13/public/favicon.ico
321
- - test/test_apps/Test_3_2_13/public/index.html
322
- - test/test_apps/Test_3_2_13/public/robots.txt
323
- - test/test_apps/Test_3_2_13/script/rails
324
- - test/test_apps/Test_3_2_13/test/fixtures/.gitkeep
325
- - test/test_apps/Test_3_2_13/test/functional/.gitkeep
326
- - test/test_apps/Test_3_2_13/test/integration/.gitkeep
327
- - test/test_apps/Test_3_2_13/test/performance/browsing_test.rb
328
- - test/test_apps/Test_3_2_13/test/test_helper.rb
329
- - test/test_apps/Test_3_2_13/test/unit/.gitkeep
330
- - test/test_apps/Test_3_2_13/vendor/assets/javascripts/.gitkeep
331
- - test/test_apps/Test_3_2_13/vendor/assets/stylesheets/.gitkeep
332
- - test/test_apps/Test_3_2_13/vendor/plugins/.gitkeep
333
- - test/test_apps/Test_4_0_0/.gitignore
279
+ - test/test_apps/Test_3_2_14/Gemfile
280
+ - test/test_apps/Test_3_2_14/README.rdoc
281
+ - test/test_apps/Test_3_2_14/Rakefile
282
+ - test/test_apps/Test_3_2_14/app/assets/images/rails.png
283
+ - test/test_apps/Test_3_2_14/app/assets/javascripts/application.js
284
+ - test/test_apps/Test_3_2_14/app/assets/stylesheets/application.css
285
+ - test/test_apps/Test_3_2_14/app/controllers/application_controller.rb
286
+ - test/test_apps/Test_3_2_14/app/helpers/application_helper.rb
287
+ - test/test_apps/Test_3_2_14/app/mailers/.gitkeep
288
+ - test/test_apps/Test_3_2_14/app/models/.gitkeep
289
+ - test/test_apps/Test_3_2_14/app/views/layouts/application.html.erb
290
+ - test/test_apps/Test_3_2_14/config.ru
291
+ - test/test_apps/Test_3_2_14/config/application.rb
292
+ - test/test_apps/Test_3_2_14/config/boot.rb
293
+ - test/test_apps/Test_3_2_14/config/environment.rb
294
+ - test/test_apps/Test_3_2_14/config/environments/development.rb
295
+ - test/test_apps/Test_3_2_14/config/environments/production.rb
296
+ - test/test_apps/Test_3_2_14/config/environments/test.rb
297
+ - test/test_apps/Test_3_2_14/config/initializers/backtrace_silencers.rb
298
+ - test/test_apps/Test_3_2_14/config/initializers/inflections.rb
299
+ - test/test_apps/Test_3_2_14/config/initializers/mime_types.rb
300
+ - test/test_apps/Test_3_2_14/config/initializers/secret_token.rb
301
+ - test/test_apps/Test_3_2_14/config/initializers/session_store.rb
302
+ - test/test_apps/Test_3_2_14/config/initializers/wrap_parameters.rb
303
+ - test/test_apps/Test_3_2_14/config/locales/en.yml
304
+ - test/test_apps/Test_3_2_14/config/routes.rb
305
+ - test/test_apps/Test_3_2_14/db/seeds.rb
306
+ - test/test_apps/Test_3_2_14/doc/README_FOR_APP
307
+ - test/test_apps/Test_3_2_14/lib/assets/.gitkeep
308
+ - test/test_apps/Test_3_2_14/lib/tasks/.gitkeep
309
+ - test/test_apps/Test_3_2_14/log/.gitkeep
310
+ - test/test_apps/Test_3_2_14/public/404.html
311
+ - test/test_apps/Test_3_2_14/public/422.html
312
+ - test/test_apps/Test_3_2_14/public/500.html
313
+ - test/test_apps/Test_3_2_14/public/favicon.ico
314
+ - test/test_apps/Test_3_2_14/public/index.html
315
+ - test/test_apps/Test_3_2_14/public/robots.txt
316
+ - test/test_apps/Test_3_2_14/script/rails
317
+ - test/test_apps/Test_3_2_14/test/fixtures/.gitkeep
318
+ - test/test_apps/Test_3_2_14/test/functional/.gitkeep
319
+ - test/test_apps/Test_3_2_14/test/integration/.gitkeep
320
+ - test/test_apps/Test_3_2_14/test/performance/browsing_test.rb
321
+ - test/test_apps/Test_3_2_14/test/test_helper.rb
322
+ - test/test_apps/Test_3_2_14/test/unit/.gitkeep
323
+ - test/test_apps/Test_3_2_14/vendor/assets/javascripts/.gitkeep
324
+ - test/test_apps/Test_3_2_14/vendor/assets/stylesheets/.gitkeep
325
+ - test/test_apps/Test_3_2_14/vendor/plugins/.gitkeep
334
326
  - test/test_apps/Test_4_0_0/Gemfile
335
327
  - test/test_apps/Test_4_0_0/README.rdoc
336
328
  - test/test_apps/Test_4_0_0/Rakefile
@@ -350,7 +342,6 @@ files:
350
342
  - test/test_apps/Test_4_0_0/config.ru
351
343
  - test/test_apps/Test_4_0_0/config/application.rb
352
344
  - test/test_apps/Test_4_0_0/config/boot.rb
353
- - test/test_apps/Test_4_0_0/config/database.yml
354
345
  - test/test_apps/Test_4_0_0/config/environment.rb
355
346
  - test/test_apps/Test_4_0_0/config/environments/development.rb
356
347
  - test/test_apps/Test_4_0_0/config/environments/production.rb
@@ -394,7 +385,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
394
385
  requirements:
395
386
  - - ! '>='
396
387
  - !ruby/object:Gem::Version
397
- version: '0'
388
+ version: 1.9.1
398
389
  required_rubygems_version: !ruby/object:Gem::Requirement
399
390
  requirements:
400
391
  - - ! '>='
@@ -411,7 +402,6 @@ test_files:
411
402
  - test/README.md
412
403
  - test/cant_wait_test.rb
413
404
  - test/database.yml
414
- - test/test_apps/Test_3_0_03/.gitignore
415
405
  - test/test_apps/Test_3_0_03/Gemfile
416
406
  - test/test_apps/Test_3_0_03/README
417
407
  - test/test_apps/Test_3_0_03/Rakefile
@@ -452,7 +442,6 @@ test_files:
452
442
  - test/test_apps/Test_3_0_03/test/performance/browsing_test.rb
453
443
  - test/test_apps/Test_3_0_03/test/test_helper.rb
454
444
  - test/test_apps/Test_3_0_03/vendor/plugins/.gitkeep
455
- - test/test_apps/Test_3_0_20/.gitignore
456
445
  - test/test_apps/Test_3_0_20/Gemfile
457
446
  - test/test_apps/Test_3_0_20/README
458
447
  - test/test_apps/Test_3_0_20/Rakefile
@@ -462,7 +451,6 @@ test_files:
462
451
  - test/test_apps/Test_3_0_20/config.ru
463
452
  - test/test_apps/Test_3_0_20/config/application.rb
464
453
  - test/test_apps/Test_3_0_20/config/boot.rb
465
- - test/test_apps/Test_3_0_20/config/database.yml
466
454
  - test/test_apps/Test_3_0_20/config/environment.rb
467
455
  - test/test_apps/Test_3_0_20/config/environments/development.rb
468
456
  - test/test_apps/Test_3_0_20/config/environments/production.rb
@@ -494,7 +482,6 @@ test_files:
494
482
  - test/test_apps/Test_3_0_20/test/performance/browsing_test.rb
495
483
  - test/test_apps/Test_3_0_20/test/test_helper.rb
496
484
  - test/test_apps/Test_3_0_20/vendor/plugins/.gitkeep
497
- - test/test_apps/Test_3_1_12/.gitignore
498
485
  - test/test_apps/Test_3_1_12/Gemfile
499
486
  - test/test_apps/Test_3_1_12/README
500
487
  - test/test_apps/Test_3_1_12/Rakefile
@@ -509,7 +496,6 @@ test_files:
509
496
  - test/test_apps/Test_3_1_12/config.ru
510
497
  - test/test_apps/Test_3_1_12/config/application.rb
511
498
  - test/test_apps/Test_3_1_12/config/boot.rb
512
- - test/test_apps/Test_3_1_12/config/database.yml
513
499
  - test/test_apps/Test_3_1_12/config/environment.rb
514
500
  - test/test_apps/Test_3_1_12/config/environments/development.rb
515
501
  - test/test_apps/Test_3_1_12/config/environments/production.rb
@@ -541,55 +527,53 @@ test_files:
541
527
  - test/test_apps/Test_3_1_12/test/unit/.gitkeep
542
528
  - test/test_apps/Test_3_1_12/vendor/assets/stylesheets/.gitkeep
543
529
  - test/test_apps/Test_3_1_12/vendor/plugins/.gitkeep
544
- - test/test_apps/Test_3_2_13/.gitignore
545
- - test/test_apps/Test_3_2_13/Gemfile
546
- - test/test_apps/Test_3_2_13/README.rdoc
547
- - test/test_apps/Test_3_2_13/Rakefile
548
- - test/test_apps/Test_3_2_13/app/assets/images/rails.png
549
- - test/test_apps/Test_3_2_13/app/assets/javascripts/application.js
550
- - test/test_apps/Test_3_2_13/app/assets/stylesheets/application.css
551
- - test/test_apps/Test_3_2_13/app/controllers/application_controller.rb
552
- - test/test_apps/Test_3_2_13/app/helpers/application_helper.rb
553
- - test/test_apps/Test_3_2_13/app/mailers/.gitkeep
554
- - test/test_apps/Test_3_2_13/app/models/.gitkeep
555
- - test/test_apps/Test_3_2_13/app/views/layouts/application.html.erb
556
- - test/test_apps/Test_3_2_13/config.ru
557
- - test/test_apps/Test_3_2_13/config/application.rb
558
- - test/test_apps/Test_3_2_13/config/boot.rb
559
- - test/test_apps/Test_3_2_13/config/database.yml
560
- - test/test_apps/Test_3_2_13/config/environment.rb
561
- - test/test_apps/Test_3_2_13/config/environments/development.rb
562
- - test/test_apps/Test_3_2_13/config/environments/production.rb
563
- - test/test_apps/Test_3_2_13/config/environments/test.rb
564
- - test/test_apps/Test_3_2_13/config/initializers/backtrace_silencers.rb
565
- - test/test_apps/Test_3_2_13/config/initializers/inflections.rb
566
- - test/test_apps/Test_3_2_13/config/initializers/mime_types.rb
567
- - test/test_apps/Test_3_2_13/config/initializers/secret_token.rb
568
- - test/test_apps/Test_3_2_13/config/initializers/session_store.rb
569
- - test/test_apps/Test_3_2_13/config/initializers/wrap_parameters.rb
570
- - test/test_apps/Test_3_2_13/config/locales/en.yml
571
- - test/test_apps/Test_3_2_13/config/routes.rb
572
- - test/test_apps/Test_3_2_13/db/seeds.rb
573
- - test/test_apps/Test_3_2_13/lib/assets/.gitkeep
574
- - test/test_apps/Test_3_2_13/lib/tasks/.gitkeep
575
- - test/test_apps/Test_3_2_13/log/.gitkeep
576
- - test/test_apps/Test_3_2_13/public/404.html
577
- - test/test_apps/Test_3_2_13/public/422.html
578
- - test/test_apps/Test_3_2_13/public/500.html
579
- - test/test_apps/Test_3_2_13/public/favicon.ico
580
- - test/test_apps/Test_3_2_13/public/index.html
581
- - test/test_apps/Test_3_2_13/public/robots.txt
582
- - test/test_apps/Test_3_2_13/script/rails
583
- - test/test_apps/Test_3_2_13/test/fixtures/.gitkeep
584
- - test/test_apps/Test_3_2_13/test/functional/.gitkeep
585
- - test/test_apps/Test_3_2_13/test/integration/.gitkeep
586
- - test/test_apps/Test_3_2_13/test/performance/browsing_test.rb
587
- - test/test_apps/Test_3_2_13/test/test_helper.rb
588
- - test/test_apps/Test_3_2_13/test/unit/.gitkeep
589
- - test/test_apps/Test_3_2_13/vendor/assets/javascripts/.gitkeep
590
- - test/test_apps/Test_3_2_13/vendor/assets/stylesheets/.gitkeep
591
- - test/test_apps/Test_3_2_13/vendor/plugins/.gitkeep
592
- - test/test_apps/Test_4_0_0/.gitignore
530
+ - test/test_apps/Test_3_2_14/Gemfile
531
+ - test/test_apps/Test_3_2_14/README.rdoc
532
+ - test/test_apps/Test_3_2_14/Rakefile
533
+ - test/test_apps/Test_3_2_14/app/assets/images/rails.png
534
+ - test/test_apps/Test_3_2_14/app/assets/javascripts/application.js
535
+ - test/test_apps/Test_3_2_14/app/assets/stylesheets/application.css
536
+ - test/test_apps/Test_3_2_14/app/controllers/application_controller.rb
537
+ - test/test_apps/Test_3_2_14/app/helpers/application_helper.rb
538
+ - test/test_apps/Test_3_2_14/app/mailers/.gitkeep
539
+ - test/test_apps/Test_3_2_14/app/models/.gitkeep
540
+ - test/test_apps/Test_3_2_14/app/views/layouts/application.html.erb
541
+ - test/test_apps/Test_3_2_14/config.ru
542
+ - test/test_apps/Test_3_2_14/config/application.rb
543
+ - test/test_apps/Test_3_2_14/config/boot.rb
544
+ - test/test_apps/Test_3_2_14/config/environment.rb
545
+ - test/test_apps/Test_3_2_14/config/environments/development.rb
546
+ - test/test_apps/Test_3_2_14/config/environments/production.rb
547
+ - test/test_apps/Test_3_2_14/config/environments/test.rb
548
+ - test/test_apps/Test_3_2_14/config/initializers/backtrace_silencers.rb
549
+ - test/test_apps/Test_3_2_14/config/initializers/inflections.rb
550
+ - test/test_apps/Test_3_2_14/config/initializers/mime_types.rb
551
+ - test/test_apps/Test_3_2_14/config/initializers/secret_token.rb
552
+ - test/test_apps/Test_3_2_14/config/initializers/session_store.rb
553
+ - test/test_apps/Test_3_2_14/config/initializers/wrap_parameters.rb
554
+ - test/test_apps/Test_3_2_14/config/locales/en.yml
555
+ - test/test_apps/Test_3_2_14/config/routes.rb
556
+ - test/test_apps/Test_3_2_14/db/seeds.rb
557
+ - test/test_apps/Test_3_2_14/doc/README_FOR_APP
558
+ - test/test_apps/Test_3_2_14/lib/assets/.gitkeep
559
+ - test/test_apps/Test_3_2_14/lib/tasks/.gitkeep
560
+ - test/test_apps/Test_3_2_14/log/.gitkeep
561
+ - test/test_apps/Test_3_2_14/public/404.html
562
+ - test/test_apps/Test_3_2_14/public/422.html
563
+ - test/test_apps/Test_3_2_14/public/500.html
564
+ - test/test_apps/Test_3_2_14/public/favicon.ico
565
+ - test/test_apps/Test_3_2_14/public/index.html
566
+ - test/test_apps/Test_3_2_14/public/robots.txt
567
+ - test/test_apps/Test_3_2_14/script/rails
568
+ - test/test_apps/Test_3_2_14/test/fixtures/.gitkeep
569
+ - test/test_apps/Test_3_2_14/test/functional/.gitkeep
570
+ - test/test_apps/Test_3_2_14/test/integration/.gitkeep
571
+ - test/test_apps/Test_3_2_14/test/performance/browsing_test.rb
572
+ - test/test_apps/Test_3_2_14/test/test_helper.rb
573
+ - test/test_apps/Test_3_2_14/test/unit/.gitkeep
574
+ - test/test_apps/Test_3_2_14/vendor/assets/javascripts/.gitkeep
575
+ - test/test_apps/Test_3_2_14/vendor/assets/stylesheets/.gitkeep
576
+ - test/test_apps/Test_3_2_14/vendor/plugins/.gitkeep
593
577
  - test/test_apps/Test_4_0_0/Gemfile
594
578
  - test/test_apps/Test_4_0_0/README.rdoc
595
579
  - test/test_apps/Test_4_0_0/Rakefile
@@ -609,7 +593,6 @@ test_files:
609
593
  - test/test_apps/Test_4_0_0/config.ru
610
594
  - test/test_apps/Test_4_0_0/config/application.rb
611
595
  - test/test_apps/Test_4_0_0/config/boot.rb
612
- - test/test_apps/Test_4_0_0/config/database.yml
613
596
  - test/test_apps/Test_4_0_0/config/environment.rb
614
597
  - test/test_apps/Test_4_0_0/config/environments/development.rb
615
598
  - test/test_apps/Test_4_0_0/config/environments/production.rb