cant_wait 0.0.3 → 0.0.4
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.
- checksums.yaml +8 -8
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/.gitignore +3 -15
- data/.travis.yml +5 -5
- data/CHANGELOG.md +21 -0
- data/README.md +33 -27
- data/cant_wait.gemspec +7 -7
- data/cert/README.md +70 -0
- data/cert/public_cert.pem +21 -0
- data/lib/cant_wait.rb +2 -0
- data/lib/cant_wait/cant_wait_railtie.rb +2 -0
- data/lib/cant_wait/version.rb +3 -1
- data/tasks/testing.rake +2 -2
- data/test/README.md +44 -25
- data/test/cant_wait_test.rb +8 -12
- data/test/test_apps/Test_3_0_03/Gemfile +0 -2
- data/test/test_apps/Test_3_0_20/Gemfile +0 -2
- data/test/test_apps/Test_3_1_12/Gemfile +0 -2
- data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/Gemfile +1 -3
- data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/README.rdoc +0 -0
- data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/Rakefile +1 -1
- data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/app/assets/images/rails.png +0 -0
- data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/app/assets/javascripts/application.js +0 -0
- data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/app/assets/stylesheets/application.css +0 -0
- data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/app/controllers/application_controller.rb +0 -0
- data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/app/helpers/application_helper.rb +0 -0
- data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/app/mailers/.gitkeep +0 -0
- data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/app/models/.gitkeep +0 -0
- data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/app/views/layouts/application.html.erb +1 -1
- data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/config.ru +1 -1
- data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/config/application.rb +1 -1
- data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/config/boot.rb +0 -0
- data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/config/environment.rb +1 -1
- data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/config/environments/development.rb +1 -1
- data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/config/environments/production.rb +1 -1
- data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/config/environments/test.rb +1 -1
- data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/config/initializers/backtrace_silencers.rb +0 -0
- data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/config/initializers/inflections.rb +0 -0
- data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/config/initializers/mime_types.rb +0 -0
- data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/config/initializers/secret_token.rb +1 -1
- data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/config/initializers/session_store.rb +2 -2
- data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/config/initializers/wrap_parameters.rb +0 -0
- data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/config/locales/en.yml +0 -0
- data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/config/routes.rb +1 -1
- data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/db/seeds.rb +0 -0
- data/test/test_apps/Test_3_2_14/doc/README_FOR_APP +2 -0
- data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/lib/assets/.gitkeep +0 -0
- data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/lib/tasks/.gitkeep +0 -0
- data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/log/.gitkeep +0 -0
- data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/public/404.html +0 -0
- data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/public/422.html +0 -0
- data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/public/500.html +0 -0
- data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/public/favicon.ico +0 -0
- data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/public/index.html +0 -0
- data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/public/robots.txt +0 -0
- data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/script/rails +0 -0
- data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/test/fixtures/.gitkeep +0 -0
- data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/test/functional/.gitkeep +0 -0
- data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/test/integration/.gitkeep +0 -0
- data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/test/performance/browsing_test.rb +0 -0
- data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/test/test_helper.rb +0 -0
- data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/test/unit/.gitkeep +0 -0
- data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/vendor/assets/javascripts/.gitkeep +0 -0
- data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/vendor/assets/stylesheets/.gitkeep +0 -0
- data/test/test_apps/{Test_3_2_13 → Test_3_2_14}/vendor/plugins/.gitkeep +0 -0
- data/test/test_apps/Test_4_0_0/Gemfile +0 -2
- metadata +127 -144
- metadata.gz.sig +0 -0
- data/test/test_apps/Test_3_0_03/.gitignore +0 -12
- data/test/test_apps/Test_3_0_20/.gitignore +0 -12
- data/test/test_apps/Test_3_1_12/.gitignore +0 -12
- data/test/test_apps/Test_3_2_13/.gitignore +0 -12
- data/test/test_apps/Test_4_0_0/.gitignore +0 -16
- data/test/test_apps/Test_4_0_0/config/database.yml +0 -6
data/test/cant_wait_test.rb
CHANGED
|
@@ -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.
|
|
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(
|
|
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
|
|
46
|
-
@timeout = random_number((
|
|
47
|
-
puts "Random timeout (1
|
|
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(
|
|
101
|
-
if
|
|
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.
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -9,7 +9,7 @@ if defined?(Bundler)
|
|
|
9
9
|
# Bundler.require(:default, :assets, Rails.env)
|
|
10
10
|
end
|
|
11
11
|
|
|
12
|
-
module
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -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
|
-
|
|
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
|
-
|
|
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
|
-
#
|
|
8
|
+
# Test3214::Application.config.session_store :active_record_store
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -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.
|
|
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
|
-
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURlekNDQW1PZ0F3SUJB
|
|
13
|
+
Z0lKQVBxbnBEckl4QjVFTUEwR0NTcUdTSWIzRFFFQkJRVUFNRk14Q3pBSkJn
|
|
14
|
+
TlYKQkFZVEFsVlRNUXN3Q1FZRFZRUUlEQUpOUkRFUk1BOEdBMVVFQXd3SVEy
|
|
15
15
|
RnliRzl6UTBReEpEQWlCZ2txaGtpRwo5dzBCQ1FFV0ZXTmpZWEp5YjJSMWNH
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
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/
|
|
286
|
-
- test/test_apps/
|
|
287
|
-
- test/test_apps/
|
|
288
|
-
- test/test_apps/
|
|
289
|
-
- test/test_apps/
|
|
290
|
-
- test/test_apps/
|
|
291
|
-
- test/test_apps/
|
|
292
|
-
- test/test_apps/
|
|
293
|
-
- test/test_apps/
|
|
294
|
-
- test/test_apps/
|
|
295
|
-
- test/test_apps/
|
|
296
|
-
- test/test_apps/
|
|
297
|
-
- test/test_apps/
|
|
298
|
-
- test/test_apps/
|
|
299
|
-
- test/test_apps/
|
|
300
|
-
- test/test_apps/
|
|
301
|
-
- test/test_apps/
|
|
302
|
-
- test/test_apps/
|
|
303
|
-
- test/test_apps/
|
|
304
|
-
- test/test_apps/
|
|
305
|
-
- test/test_apps/
|
|
306
|
-
- test/test_apps/
|
|
307
|
-
- test/test_apps/
|
|
308
|
-
- test/test_apps/
|
|
309
|
-
- test/test_apps/
|
|
310
|
-
- test/test_apps/
|
|
311
|
-
- test/test_apps/
|
|
312
|
-
- test/test_apps/
|
|
313
|
-
- test/test_apps/
|
|
314
|
-
- test/test_apps/
|
|
315
|
-
- test/test_apps/
|
|
316
|
-
- test/test_apps/
|
|
317
|
-
- test/test_apps/
|
|
318
|
-
- test/test_apps/
|
|
319
|
-
- test/test_apps/
|
|
320
|
-
- test/test_apps/
|
|
321
|
-
- test/test_apps/
|
|
322
|
-
- test/test_apps/
|
|
323
|
-
- test/test_apps/
|
|
324
|
-
- test/test_apps/
|
|
325
|
-
- test/test_apps/
|
|
326
|
-
- test/test_apps/
|
|
327
|
-
- test/test_apps/
|
|
328
|
-
- test/test_apps/
|
|
329
|
-
- test/test_apps/
|
|
330
|
-
- test/test_apps/
|
|
331
|
-
- test/test_apps/
|
|
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:
|
|
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/
|
|
545
|
-
- test/test_apps/
|
|
546
|
-
- test/test_apps/
|
|
547
|
-
- test/test_apps/
|
|
548
|
-
- test/test_apps/
|
|
549
|
-
- test/test_apps/
|
|
550
|
-
- test/test_apps/
|
|
551
|
-
- test/test_apps/
|
|
552
|
-
- test/test_apps/
|
|
553
|
-
- test/test_apps/
|
|
554
|
-
- test/test_apps/
|
|
555
|
-
- test/test_apps/
|
|
556
|
-
- test/test_apps/
|
|
557
|
-
- test/test_apps/
|
|
558
|
-
- test/test_apps/
|
|
559
|
-
- test/test_apps/
|
|
560
|
-
- test/test_apps/
|
|
561
|
-
- test/test_apps/
|
|
562
|
-
- test/test_apps/
|
|
563
|
-
- test/test_apps/
|
|
564
|
-
- test/test_apps/
|
|
565
|
-
- test/test_apps/
|
|
566
|
-
- test/test_apps/
|
|
567
|
-
- test/test_apps/
|
|
568
|
-
- test/test_apps/
|
|
569
|
-
- test/test_apps/
|
|
570
|
-
- test/test_apps/
|
|
571
|
-
- test/test_apps/
|
|
572
|
-
- test/test_apps/
|
|
573
|
-
- test/test_apps/
|
|
574
|
-
- test/test_apps/
|
|
575
|
-
- test/test_apps/
|
|
576
|
-
- test/test_apps/
|
|
577
|
-
- test/test_apps/
|
|
578
|
-
- test/test_apps/
|
|
579
|
-
- test/test_apps/
|
|
580
|
-
- test/test_apps/
|
|
581
|
-
- test/test_apps/
|
|
582
|
-
- test/test_apps/
|
|
583
|
-
- test/test_apps/
|
|
584
|
-
- test/test_apps/
|
|
585
|
-
- test/test_apps/
|
|
586
|
-
- test/test_apps/
|
|
587
|
-
- test/test_apps/
|
|
588
|
-
- test/test_apps/
|
|
589
|
-
- test/test_apps/
|
|
590
|
-
- test/test_apps/
|
|
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
|