active_reload 0.4.0 → 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (47) hide show
  1. data/.gitignore +1 -1
  2. data/README.md +1 -1
  3. data/lib/active_reload/version.rb +1 -1
  4. data/test/{dummy309 → dummy3010}/Gemfile +1 -1
  5. data/test/{dummy309 → dummy3010}/README +0 -0
  6. data/test/{dummy309 → dummy3010}/Rakefile +0 -0
  7. data/test/{dummy309 → dummy3010}/app/controllers/application_controller.rb +0 -0
  8. data/test/{dummy309 → dummy3010}/app/controllers/empty_controller.rb +0 -0
  9. data/test/{dummy309 → dummy3010}/app/views/layouts/application.html.erb +0 -0
  10. data/test/{dummy309 → dummy3010}/config.ru +1 -1
  11. data/test/{dummy309 → dummy3010}/config/application.rb +1 -1
  12. data/test/{dummy309 → dummy3010}/config/boot.rb +0 -0
  13. data/test/{dummy309 → dummy3010}/config/database.yml +0 -0
  14. data/test/{dummy309 → dummy3010}/config/environment.rb +1 -1
  15. data/test/{dummy309 → dummy3010}/config/environments/development.rb +1 -1
  16. data/test/{dummy309 → dummy3010}/config/environments/production.rb +1 -1
  17. data/test/{dummy309 → dummy3010}/config/environments/test.rb +1 -1
  18. data/test/{dummy309 → dummy3010}/config/initializers/backtrace_silencers.rb +0 -0
  19. data/test/{dummy309 → dummy3010}/config/initializers/inflections.rb +0 -0
  20. data/test/{dummy309 → dummy3010}/config/initializers/mime_types.rb +0 -0
  21. data/test/{dummy309 → dummy3010}/config/initializers/secret_token.rb +1 -1
  22. data/test/{dummy309 → dummy3010}/config/initializers/session_store.rb +2 -2
  23. data/test/{dummy309 → dummy3010}/config/locales/en.yml +0 -0
  24. data/test/{dummy309 → dummy3010}/config/routes.rb +1 -1
  25. data/test/{dummy309 → dummy3010}/db/seeds.rb +0 -0
  26. data/test/{dummy309 → dummy3010}/doc/README_FOR_APP +0 -0
  27. data/test/{dummy309 → dummy3010}/lib/tasks/.gitkeep +0 -0
  28. data/test/{dummy309 → dummy3010}/public/404.html +0 -0
  29. data/test/{dummy309 → dummy3010}/public/422.html +0 -0
  30. data/test/{dummy309 → dummy3010}/public/500.html +0 -0
  31. data/test/{dummy309 → dummy3010}/public/favicon.ico +0 -0
  32. data/test/{dummy309 → dummy3010}/public/images/rails.png +0 -0
  33. data/test/{dummy309 → dummy3010}/public/index.html +0 -0
  34. data/test/{dummy309 → dummy3010}/public/javascripts/application.js +0 -0
  35. data/test/{dummy309 → dummy3010}/public/javascripts/controls.js +0 -0
  36. data/test/{dummy309 → dummy3010}/public/javascripts/dragdrop.js +0 -0
  37. data/test/{dummy309 → dummy3010}/public/javascripts/effects.js +0 -0
  38. data/test/{dummy309 → dummy3010}/public/javascripts/prototype.js +0 -0
  39. data/test/{dummy309 → dummy3010}/public/javascripts/rails.js +0 -0
  40. data/test/{dummy309 → dummy3010}/public/robots.txt +0 -0
  41. data/test/{dummy309 → dummy3010}/public/stylesheets/.gitkeep +0 -0
  42. data/test/{dummy309 → dummy3010}/script/rails +0 -0
  43. data/test/{dummy309 → dummy3010}/test/performance/browsing_test.rb +0 -0
  44. data/test/{dummy309 → dummy3010}/test/test_helper.rb +0 -0
  45. data/test/{dummy309 → dummy3010}/vendor/plugins/.gitkeep +0 -0
  46. data/test/unit/reload_test.rb +1 -1
  47. metadata +50 -50
data/.gitignore CHANGED
@@ -12,4 +12,4 @@ test/dummy*/tmp/
12
12
  test/dummy*/vendor/bundle/
13
13
 
14
14
  test/dummy310rc5/app/controllers/root_controller.rb
15
- test/dummy309/app/controllers/root_controller.rb
15
+ test/dummy3010/app/controllers/root_controller.rb
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.9` and `3.1.0.rc5` (older versions of this gem could have been tested with older rails versions, check it by reading README.md in older tag versions)
51
+ Tested with Rails `3.0.10` and `3.1.0.rc5` (older versions of this gem could have been tested with older rails versions, check it by reading README.md in older tag versions)
52
52
 
53
53
  ## Notifications
54
54
 
@@ -1,3 +1,3 @@
1
1
  module ActiveReload
2
- VERSION = "0.4.0"
2
+ VERSION = "0.5.0"
3
3
  end
@@ -1,6 +1,6 @@
1
1
  source 'http://rubygems.org'
2
2
 
3
- gem 'rails', '3.0.9'
3
+ gem 'rails', '3.0.10'
4
4
  gem 'active_reload', :path => '../../../active_reload'
5
5
 
6
6
  # Bundle edge Rails instead:
File without changes
File without changes
@@ -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 Dummy309::Application
4
+ run Dummy3010::Application
@@ -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 Dummy309
9
+ module Dummy3010
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
@@ -2,4 +2,4 @@
2
2
  require File.expand_path('../application', __FILE__)
3
3
 
4
4
  # Initialize the rails application
5
- Dummy309::Application.initialize!
5
+ Dummy3010::Application.initialize!
@@ -1,6 +1,6 @@
1
1
  require File.expand_path( File.join(File.dirname(__FILE__), '..', '..', '..', 'support', "defined_middleware") )
2
2
 
3
- Dummy309::Application.configure do
3
+ Dummy3010::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
@@ -1,4 +1,4 @@
1
- Dummy309::Application.configure do
1
+ Dummy3010::Application.configure do
2
2
  # Settings specified here will take precedence over those in config/application.rb
3
3
 
4
4
  # The production environment is meant for finished, "live" apps.
@@ -1,4 +1,4 @@
1
- Dummy309::Application.configure do
1
+ Dummy3010::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
- Dummy309::Application.config.secret_token = '902766a1d9f631bce4d27ad72bf0b4e79704271e4929b30401371307cb76f5b1c402aa1ba2e0a0a8ae89b25d9d87c86443f60daa653ce0dd1fa9357e81a0bb38'
7
+ Dummy3010::Application.config.secret_token = '902766a1d9f631bce4d27ad72bf0b4e79704271e4929b30401371307cb76f5b1c402aa1ba2e0a0a8ae89b25d9d87c86443f60daa653ce0dd1fa9357e81a0bb38'
@@ -1,8 +1,8 @@
1
1
  # Be sure to restart your server when you modify this file.
2
2
 
3
- Dummy309::Application.config.session_store :cookie_store, :key => '_dummy309_session'
3
+ Dummy3010::Application.config.session_store :cookie_store, :key => '_dummy309_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
- # Dummy309::Application.config.session_store :active_record_store
8
+ # Dummy3010::Application.config.session_store :active_record_store
File without changes
@@ -1,4 +1,4 @@
1
- Dummy309::Application.routes.draw do
1
+ Dummy3010::Application.routes.draw do
2
2
  match "/empty", :to => "empty#index"
3
3
  match "/root", :to => "root#index"
4
4
 
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
@@ -33,7 +33,7 @@ end
33
33
  class ReloadTest < Bbq::TestCase
34
34
  include FileCommandHelper
35
35
 
36
- %w(309 310rc5).each_with_index do |version, index|
36
+ %w(3010 310rc5).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.0
4
+ version: 0.5.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: &86593510 !ruby/object:Gem::Requirement
17
+ requirement: &78621020 !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: *86593510
25
+ version_requirements: *78621020
26
26
  - !ruby/object:Gem::Dependency
27
27
  name: bbq
28
- requirement: &86593150 !ruby/object:Gem::Requirement
28
+ requirement: &78620800 !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: *86593150
36
+ version_requirements: *78620800
37
37
  description: Reload Rails code in development mode only when change is deteced
38
38
  email:
39
39
  - robert.pankowecki@gmail.com
@@ -48,49 +48,49 @@ files:
48
48
  - active_reload.gemspec
49
49
  - lib/active_reload.rb
50
50
  - lib/active_reload/version.rb
51
- - test/dummy309/Gemfile
52
- - test/dummy309/Gemfile.lock
53
- - test/dummy309/README
54
- - test/dummy309/Rakefile
55
- - test/dummy309/app/controllers/application_controller.rb
56
- - test/dummy309/app/controllers/empty_controller.rb
57
- - test/dummy309/app/views/layouts/application.html.erb
58
- - test/dummy309/config.ru
59
- - test/dummy309/config/application.rb
60
- - test/dummy309/config/boot.rb
61
- - test/dummy309/config/database.yml
62
- - test/dummy309/config/environment.rb
63
- - test/dummy309/config/environments/development.rb
64
- - test/dummy309/config/environments/production.rb
65
- - test/dummy309/config/environments/test.rb
66
- - test/dummy309/config/initializers/backtrace_silencers.rb
67
- - test/dummy309/config/initializers/inflections.rb
68
- - test/dummy309/config/initializers/mime_types.rb
69
- - test/dummy309/config/initializers/secret_token.rb
70
- - test/dummy309/config/initializers/session_store.rb
71
- - test/dummy309/config/locales/en.yml
72
- - test/dummy309/config/routes.rb
73
- - test/dummy309/db/seeds.rb
74
- - test/dummy309/doc/README_FOR_APP
75
- - test/dummy309/lib/tasks/.gitkeep
76
- - test/dummy309/public/404.html
77
- - test/dummy309/public/422.html
78
- - test/dummy309/public/500.html
79
- - test/dummy309/public/favicon.ico
80
- - test/dummy309/public/images/rails.png
81
- - test/dummy309/public/index.html
82
- - test/dummy309/public/javascripts/application.js
83
- - test/dummy309/public/javascripts/controls.js
84
- - test/dummy309/public/javascripts/dragdrop.js
85
- - test/dummy309/public/javascripts/effects.js
86
- - test/dummy309/public/javascripts/prototype.js
87
- - test/dummy309/public/javascripts/rails.js
88
- - test/dummy309/public/robots.txt
89
- - test/dummy309/public/stylesheets/.gitkeep
90
- - test/dummy309/script/rails
91
- - test/dummy309/test/performance/browsing_test.rb
92
- - test/dummy309/test/test_helper.rb
93
- - test/dummy309/vendor/plugins/.gitkeep
51
+ - test/dummy3010/Gemfile
52
+ - test/dummy3010/Gemfile.lock
53
+ - test/dummy3010/README
54
+ - test/dummy3010/Rakefile
55
+ - test/dummy3010/app/controllers/application_controller.rb
56
+ - test/dummy3010/app/controllers/empty_controller.rb
57
+ - test/dummy3010/app/views/layouts/application.html.erb
58
+ - test/dummy3010/config.ru
59
+ - test/dummy3010/config/application.rb
60
+ - test/dummy3010/config/boot.rb
61
+ - test/dummy3010/config/database.yml
62
+ - test/dummy3010/config/environment.rb
63
+ - test/dummy3010/config/environments/development.rb
64
+ - test/dummy3010/config/environments/production.rb
65
+ - test/dummy3010/config/environments/test.rb
66
+ - test/dummy3010/config/initializers/backtrace_silencers.rb
67
+ - test/dummy3010/config/initializers/inflections.rb
68
+ - test/dummy3010/config/initializers/mime_types.rb
69
+ - test/dummy3010/config/initializers/secret_token.rb
70
+ - test/dummy3010/config/initializers/session_store.rb
71
+ - test/dummy3010/config/locales/en.yml
72
+ - test/dummy3010/config/routes.rb
73
+ - test/dummy3010/db/seeds.rb
74
+ - test/dummy3010/doc/README_FOR_APP
75
+ - test/dummy3010/lib/tasks/.gitkeep
76
+ - test/dummy3010/public/404.html
77
+ - test/dummy3010/public/422.html
78
+ - test/dummy3010/public/500.html
79
+ - test/dummy3010/public/favicon.ico
80
+ - test/dummy3010/public/images/rails.png
81
+ - test/dummy3010/public/index.html
82
+ - test/dummy3010/public/javascripts/application.js
83
+ - test/dummy3010/public/javascripts/controls.js
84
+ - test/dummy3010/public/javascripts/dragdrop.js
85
+ - test/dummy3010/public/javascripts/effects.js
86
+ - test/dummy3010/public/javascripts/prototype.js
87
+ - test/dummy3010/public/javascripts/rails.js
88
+ - test/dummy3010/public/robots.txt
89
+ - test/dummy3010/public/stylesheets/.gitkeep
90
+ - test/dummy3010/script/rails
91
+ - test/dummy3010/test/performance/browsing_test.rb
92
+ - test/dummy3010/test/test_helper.rb
93
+ - test/dummy3010/vendor/plugins/.gitkeep
94
94
  - test/dummy310rc5/.gitignore
95
95
  - test/dummy310rc5/Gemfile
96
96
  - test/dummy310rc5/Gemfile.lock
@@ -157,7 +157,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
157
157
  version: '0'
158
158
  segments:
159
159
  - 0
160
- hash: -579431501
160
+ hash: -538336973
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: -579431501
169
+ hash: -538336973
170
170
  requirements: []
171
171
  rubyforge_project: active_reload
172
172
  rubygems_version: 1.6.2