active_reload 0.5.0 → 0.6.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +1 -1
- data/README.md +1 -1
- data/lib/active_reload/version.rb +1 -1
- data/test/{dummy310rc5 → dummy310rc6}/.gitignore +0 -0
- data/test/{dummy310rc5 → dummy310rc6}/Gemfile +1 -1
- data/test/{dummy310rc5 → dummy310rc6}/README +0 -0
- data/test/{dummy310rc5 → dummy310rc6}/Rakefile +0 -0
- data/test/{dummy310rc5 → dummy310rc6}/app/assets/images/rails.png +0 -0
- data/test/{dummy310rc5 → dummy310rc6}/app/assets/javascripts/application.js +0 -0
- data/test/{dummy310rc5 → dummy310rc6}/app/assets/stylesheets/application.css +0 -0
- data/test/{dummy310rc5 → dummy310rc6}/app/controllers/application_controller.rb +0 -0
- data/test/{dummy310rc5 → dummy310rc6}/app/controllers/empty_controller.rb +0 -0
- data/test/{dummy310rc5 → dummy310rc6}/app/helpers/application_helper.rb +0 -0
- data/test/{dummy310rc5 → dummy310rc6}/app/mailers/.gitkeep +0 -0
- data/test/{dummy310rc5 → dummy310rc6}/app/models/.gitkeep +0 -0
- data/test/{dummy310rc5 → dummy310rc6}/app/views/layouts/application.html.erb +0 -0
- data/test/{dummy310rc5 → dummy310rc6}/config.ru +1 -1
- data/test/{dummy310rc5 → dummy310rc6}/config/application.rb +1 -1
- data/test/{dummy310rc5 → dummy310rc6}/config/boot.rb +0 -0
- data/test/{dummy310rc5 → dummy310rc6}/config/database.yml +0 -0
- data/test/{dummy310rc5 → dummy310rc6}/config/environment.rb +1 -1
- data/test/{dummy310rc5 → dummy310rc6}/config/environments/development.rb +1 -1
- data/test/{dummy310rc5 → dummy310rc6}/config/environments/production.rb +1 -1
- data/test/{dummy310rc5 → dummy310rc6}/config/environments/test.rb +1 -1
- data/test/{dummy310rc5 → dummy310rc6}/config/initializers/backtrace_silencers.rb +0 -0
- data/test/{dummy310rc5 → dummy310rc6}/config/initializers/inflections.rb +0 -0
- data/test/{dummy310rc5 → dummy310rc6}/config/initializers/mime_types.rb +0 -0
- data/test/{dummy310rc5 → dummy310rc6}/config/initializers/secret_token.rb +1 -1
- data/test/{dummy310rc5 → dummy310rc6}/config/initializers/session_store.rb +2 -2
- data/test/{dummy310rc5 → dummy310rc6}/config/initializers/wrap_parameters.rb +0 -0
- data/test/{dummy310rc5 → dummy310rc6}/config/locales/en.yml +0 -0
- data/test/{dummy310rc5 → dummy310rc6}/config/routes.rb +1 -1
- data/test/{dummy310rc5 → dummy310rc6}/db/seeds.rb +0 -0
- data/test/{dummy310rc5 → dummy310rc6}/doc/README_FOR_APP +0 -0
- data/test/{dummy310rc5 → dummy310rc6}/lib/tasks/.gitkeep +0 -0
- data/test/{dummy310rc5 → dummy310rc6}/log/.gitkeep +0 -0
- data/test/{dummy310rc5 → dummy310rc6}/public/404.html +0 -0
- data/test/{dummy310rc5 → dummy310rc6}/public/422.html +0 -0
- data/test/{dummy310rc5 → dummy310rc6}/public/500.html +0 -0
- data/test/{dummy310rc5 → dummy310rc6}/public/favicon.ico +0 -0
- data/test/{dummy310rc5 → dummy310rc6}/public/index.html +0 -0
- data/test/{dummy310rc5 → dummy310rc6}/public/robots.txt +0 -0
- data/test/{dummy310rc5 → dummy310rc6}/script/rails +0 -0
- data/test/{dummy310rc5 → dummy310rc6}/test/fixtures/.gitkeep +0 -0
- data/test/{dummy310rc5 → dummy310rc6}/test/functional/.gitkeep +0 -0
- data/test/{dummy310rc5 → dummy310rc6}/test/integration/.gitkeep +0 -0
- data/test/{dummy310rc5 → dummy310rc6}/test/performance/browsing_test.rb +0 -0
- data/test/{dummy310rc5 → dummy310rc6}/test/test_helper.rb +0 -0
- data/test/{dummy310rc5 → dummy310rc6}/test/unit/.gitkeep +0 -0
- data/test/{dummy310rc5 → dummy310rc6}/vendor/assets/stylesheets/.gitkeep +0 -0
- data/test/{dummy310rc5 → dummy310rc6}/vendor/plugins/.gitkeep +0 -0
- data/test/unit/reload_test.rb +1 -1
- metadata +56 -56
data/.gitignore
CHANGED
data/README.md
CHANGED
@@ -48,7 +48,7 @@ Simply add Active Reload to your Gemfile and bundle it up:
|
|
48
48
|
## Compatibility
|
49
49
|
|
50
50
|
Tested with Ruby `1.9.2` and `1.8.7`.
|
51
|
-
Tested with Rails `3.0.10` and `3.1.0.
|
51
|
+
Tested with Rails `3.0.10` and `3.1.0.rc6` (older versions of this gem have been tested with older rails versions, check it by reading README.md in older tag versions)
|
52
52
|
|
53
53
|
## Notifications
|
54
54
|
|
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
|
@@ -6,7 +6,7 @@ require 'rails/all'
|
|
6
6
|
# you've limited to :test, :development, or :production.
|
7
7
|
Bundler.require(:default, Rails.env) if defined?(Bundler)
|
8
8
|
|
9
|
-
module
|
9
|
+
module Dummy310rc6
|
10
10
|
class Application < Rails::Application
|
11
11
|
# Settings in config/environments/* take precedence over those specified here.
|
12
12
|
# Application configuration should go into files in config/initializers
|
File without changes
|
File without changes
|
@@ -1,6 +1,6 @@
|
|
1
1
|
require File.expand_path( File.join(File.dirname(__FILE__), '..', '..', '..', 'support', "defined_middleware") )
|
2
2
|
|
3
|
-
|
3
|
+
Dummy310rc6::Application.configure do
|
4
4
|
# Settings specified here will take precedence over those in config/application.rb
|
5
5
|
|
6
6
|
# In the development environment your application's code is reloaded on
|
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
|
+
Dummy310rc6::Application.config.secret_token = '63f22d8dffc57bb0684cb6d95a5514d1e4d18b548a59b46e510da81e9296ce7ad80591d8acccb581df66fa80d4692fe51e34f4a387d9c43ad0825dc278be0fd4'
|
@@ -1,8 +1,8 @@
|
|
1
1
|
# Be sure to restart your server when you modify this file.
|
2
2
|
|
3
|
-
|
3
|
+
Dummy310rc6::Application.config.session_store :cookie_store, :key => '_dummy310rc4_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
|
+
# Dummy310rc6::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
|
data/test/unit/reload_test.rb
CHANGED
@@ -33,7 +33,7 @@ end
|
|
33
33
|
class ReloadTest < Bbq::TestCase
|
34
34
|
include FileCommandHelper
|
35
35
|
|
36
|
-
%w(3010
|
36
|
+
%w(3010 310rc6).each_with_index do |version, index|
|
37
37
|
define_method(:"test_rails#{version}") do
|
38
38
|
app_port = 8898 + index
|
39
39
|
app_root = File.expand_path( File.join(File.dirname(__FILE__), '..', "dummy#{version}") )
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: active_reload
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.6.0
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -14,7 +14,7 @@ default_executable:
|
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: rake
|
17
|
-
requirement: &
|
17
|
+
requirement: &76816250 !ruby/object:Gem::Requirement
|
18
18
|
none: false
|
19
19
|
requirements:
|
20
20
|
- - ! '>='
|
@@ -22,10 +22,10 @@ dependencies:
|
|
22
22
|
version: '0'
|
23
23
|
type: :development
|
24
24
|
prerelease: false
|
25
|
-
version_requirements: *
|
25
|
+
version_requirements: *76816250
|
26
26
|
- !ruby/object:Gem::Dependency
|
27
27
|
name: bbq
|
28
|
-
requirement: &
|
28
|
+
requirement: &76815770 !ruby/object:Gem::Requirement
|
29
29
|
none: false
|
30
30
|
requirements:
|
31
31
|
- - ! '>='
|
@@ -33,7 +33,7 @@ dependencies:
|
|
33
33
|
version: '0'
|
34
34
|
type: :development
|
35
35
|
prerelease: false
|
36
|
-
version_requirements: *
|
36
|
+
version_requirements: *76815770
|
37
37
|
description: Reload Rails code in development mode only when change is deteced
|
38
38
|
email:
|
39
39
|
- robert.pankowecki@gmail.com
|
@@ -91,55 +91,55 @@ files:
|
|
91
91
|
- test/dummy3010/test/performance/browsing_test.rb
|
92
92
|
- test/dummy3010/test/test_helper.rb
|
93
93
|
- test/dummy3010/vendor/plugins/.gitkeep
|
94
|
-
- test/
|
95
|
-
- test/
|
96
|
-
- test/
|
97
|
-
- test/
|
98
|
-
- test/
|
99
|
-
- test/
|
100
|
-
- test/
|
101
|
-
- test/
|
102
|
-
- test/
|
103
|
-
- test/
|
104
|
-
- test/
|
105
|
-
- test/
|
106
|
-
- test/
|
107
|
-
- test/
|
108
|
-
- test/
|
109
|
-
- test/
|
110
|
-
- test/
|
111
|
-
- test/
|
112
|
-
- test/
|
113
|
-
- test/
|
114
|
-
- test/
|
115
|
-
- test/
|
116
|
-
- test/
|
117
|
-
- test/
|
118
|
-
- test/
|
119
|
-
- test/
|
120
|
-
- test/
|
121
|
-
- test/
|
122
|
-
- test/
|
123
|
-
- test/
|
124
|
-
- test/
|
125
|
-
- test/
|
126
|
-
- test/
|
127
|
-
- test/
|
128
|
-
- test/
|
129
|
-
- test/
|
130
|
-
- test/
|
131
|
-
- test/
|
132
|
-
- test/
|
133
|
-
- test/
|
134
|
-
- test/
|
135
|
-
- test/
|
136
|
-
- test/
|
137
|
-
- test/
|
138
|
-
- test/
|
139
|
-
- test/
|
140
|
-
- test/
|
141
|
-
- test/
|
142
|
-
- test/
|
94
|
+
- test/dummy310rc6/.gitignore
|
95
|
+
- test/dummy310rc6/Gemfile
|
96
|
+
- test/dummy310rc6/Gemfile.lock
|
97
|
+
- test/dummy310rc6/README
|
98
|
+
- test/dummy310rc6/Rakefile
|
99
|
+
- test/dummy310rc6/app/assets/images/rails.png
|
100
|
+
- test/dummy310rc6/app/assets/javascripts/application.js
|
101
|
+
- test/dummy310rc6/app/assets/stylesheets/application.css
|
102
|
+
- test/dummy310rc6/app/controllers/application_controller.rb
|
103
|
+
- test/dummy310rc6/app/controllers/empty_controller.rb
|
104
|
+
- test/dummy310rc6/app/helpers/application_helper.rb
|
105
|
+
- test/dummy310rc6/app/mailers/.gitkeep
|
106
|
+
- test/dummy310rc6/app/models/.gitkeep
|
107
|
+
- test/dummy310rc6/app/views/layouts/application.html.erb
|
108
|
+
- test/dummy310rc6/config.ru
|
109
|
+
- test/dummy310rc6/config/application.rb
|
110
|
+
- test/dummy310rc6/config/boot.rb
|
111
|
+
- test/dummy310rc6/config/database.yml
|
112
|
+
- test/dummy310rc6/config/environment.rb
|
113
|
+
- test/dummy310rc6/config/environments/development.rb
|
114
|
+
- test/dummy310rc6/config/environments/production.rb
|
115
|
+
- test/dummy310rc6/config/environments/test.rb
|
116
|
+
- test/dummy310rc6/config/initializers/backtrace_silencers.rb
|
117
|
+
- test/dummy310rc6/config/initializers/inflections.rb
|
118
|
+
- test/dummy310rc6/config/initializers/mime_types.rb
|
119
|
+
- test/dummy310rc6/config/initializers/secret_token.rb
|
120
|
+
- test/dummy310rc6/config/initializers/session_store.rb
|
121
|
+
- test/dummy310rc6/config/initializers/wrap_parameters.rb
|
122
|
+
- test/dummy310rc6/config/locales/en.yml
|
123
|
+
- test/dummy310rc6/config/routes.rb
|
124
|
+
- test/dummy310rc6/db/seeds.rb
|
125
|
+
- test/dummy310rc6/doc/README_FOR_APP
|
126
|
+
- test/dummy310rc6/lib/tasks/.gitkeep
|
127
|
+
- test/dummy310rc6/log/.gitkeep
|
128
|
+
- test/dummy310rc6/public/404.html
|
129
|
+
- test/dummy310rc6/public/422.html
|
130
|
+
- test/dummy310rc6/public/500.html
|
131
|
+
- test/dummy310rc6/public/favicon.ico
|
132
|
+
- test/dummy310rc6/public/index.html
|
133
|
+
- test/dummy310rc6/public/robots.txt
|
134
|
+
- test/dummy310rc6/script/rails
|
135
|
+
- test/dummy310rc6/test/fixtures/.gitkeep
|
136
|
+
- test/dummy310rc6/test/functional/.gitkeep
|
137
|
+
- test/dummy310rc6/test/integration/.gitkeep
|
138
|
+
- test/dummy310rc6/test/performance/browsing_test.rb
|
139
|
+
- test/dummy310rc6/test/test_helper.rb
|
140
|
+
- test/dummy310rc6/test/unit/.gitkeep
|
141
|
+
- test/dummy310rc6/vendor/assets/stylesheets/.gitkeep
|
142
|
+
- test/dummy310rc6/vendor/plugins/.gitkeep
|
143
143
|
- test/support/defined_middleware.rb
|
144
144
|
- test/unit/reload_test.rb
|
145
145
|
has_rdoc: true
|
@@ -157,7 +157,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
157
157
|
version: '0'
|
158
158
|
segments:
|
159
159
|
- 0
|
160
|
-
hash:
|
160
|
+
hash: 819203987
|
161
161
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
162
162
|
none: false
|
163
163
|
requirements:
|
@@ -166,7 +166,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
166
166
|
version: '0'
|
167
167
|
segments:
|
168
168
|
- 0
|
169
|
-
hash:
|
169
|
+
hash: 819203987
|
170
170
|
requirements: []
|
171
171
|
rubyforge_project: active_reload
|
172
172
|
rubygems_version: 1.6.2
|