rails-dev-tweaks-arturo 0.6.2 → 1.3.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 8eb4c83294e63acd85198b1631791b31ccaf83a5
4
+ data.tar.gz: 3c46b14bba2f83cd7b6ad18d95fa80590624c595
5
+ SHA512:
6
+ metadata.gz: 1f315cd7cc13e581b5c91642fc7cb198faa4802450e79d32c8ca97c3e62b4118d4bee9039a178548acca296f0faa130671aced9e596925acfc2d034e1a5a9d81
7
+ data.tar.gz: f68b7f75d92f609848caceb80ea941b347ee6932b524382687286cc7f98fe1cd30d6fd991b73d1b29b264e6eda3e91de2e2eb543811bc1640f9dfac38c009e77
data/README.md CHANGED
@@ -5,7 +5,7 @@ A collection of tweaks to improve your Rails (3.1+) development experience.
5
5
 
6
6
  To install, simply add it to your gemfile:
7
7
 
8
- gem 'rails-dev-tweaks', '~> 0.6.2'
8
+ gem 'rails-dev-tweaks', '~> 1.1'
9
9
 
10
10
  And review the following section to make sure that `rails-dev-tweaks` is
11
11
  configured the way you expect:
@@ -57,7 +57,6 @@ The default autoload rules should cover most development patterns:
57
57
 
58
58
  skip '/favicon.ico'
59
59
  skip :assets
60
- skip :xhr
61
60
  keep :forced
62
61
  end
63
62
 
@@ -41,8 +41,6 @@ class RailsDevTweaks::GranularAutoload::Middleware
41
41
  def reload_dependencies?
42
42
  application = Rails.application
43
43
 
44
- # Rails 3.2 defines reload_dependencies? and it only reloads if reload_dependencies? returns true.
45
- (!application.class.method_defined?(:reload_dependencies?) ||
46
- application.send(:reload_dependencies?))
44
+ application.config.reload_classes_only_on_change != true || application.reloaders.map(&:updated?).any?
47
45
  end
48
46
  end
@@ -1,3 +1,3 @@
1
1
  module RailsDevTweaks
2
- VERSION = '0.6.2'
2
+ VERSION = '1.3.0'
3
3
  end
metadata CHANGED
@@ -1,8 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails-dev-tweaks-arturo
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.2
5
- prerelease:
4
+ version: 1.3.0
6
5
  platform: ruby
7
6
  authors:
8
7
  - Wavii, Inc.
@@ -10,40 +9,36 @@ authors:
10
9
  autorequire:
11
10
  bindir: bin
12
11
  cert_chain: []
13
- date: 2012-10-25 00:00:00.000000000 Z
12
+ date: 2016-04-07 00:00:00.000000000 Z
14
13
  dependencies:
15
14
  - !ruby/object:Gem::Dependency
16
15
  name: railties
17
16
  requirement: !ruby/object:Gem::Requirement
18
- none: false
19
17
  requirements:
20
- - - ~>
18
+ - - ">="
21
19
  - !ruby/object:Gem::Version
22
- version: '3'
20
+ version: '3.1'
23
21
  type: :runtime
24
22
  prerelease: false
25
23
  version_requirements: !ruby/object:Gem::Requirement
26
- none: false
27
24
  requirements:
28
- - - ~>
25
+ - - ">="
29
26
  - !ruby/object:Gem::Version
30
- version: '3'
27
+ version: '3.1'
31
28
  - !ruby/object:Gem::Dependency
32
29
  name: actionpack
33
30
  requirement: !ruby/object:Gem::Requirement
34
- none: false
35
31
  requirements:
36
- - - ~>
32
+ - - ">="
37
33
  - !ruby/object:Gem::Version
38
- version: '3'
34
+ version: '3.1'
39
35
  type: :runtime
40
36
  prerelease: false
41
37
  version_requirements: !ruby/object:Gem::Requirement
42
- none: false
43
38
  requirements:
44
- - - ~>
39
+ - - ">="
45
40
  - !ruby/object:Gem::Version
46
- version: '3'
41
+ version: '3.1'
47
42
  description: A collection of tweaks to improve your Rails (3.1+) development experience.
48
43
  email:
49
44
  - info@wavii.com
@@ -51,41 +46,41 @@ executables: []
51
46
  extensions: []
52
47
  extra_rdoc_files: []
53
48
  files:
49
+ - MIT-LICENSE
50
+ - README.md
51
+ - Rakefile
54
52
  - lib/rails-dev-tweaks.rb
55
- - lib/rails_dev_tweaks/version.rb
56
- - lib/rails_dev_tweaks/railtie.rb
57
53
  - lib/rails_dev_tweaks/configuration.rb
58
- - lib/rails_dev_tweaks/granular_autoload/middleware.rb
59
54
  - lib/rails_dev_tweaks/granular_autoload/matchers/all_matcher.rb
60
- - lib/rails_dev_tweaks/granular_autoload/matchers/xhr_matcher.rb
55
+ - lib/rails_dev_tweaks/granular_autoload/matchers/asset_matcher.rb
61
56
  - lib/rails_dev_tweaks/granular_autoload/matchers/forced_matcher.rb
62
57
  - lib/rails_dev_tweaks/granular_autoload/matchers/path_matcher.rb
63
- - lib/rails_dev_tweaks/granular_autoload/matchers/asset_matcher.rb
64
- - MIT-LICENSE
65
- - Rakefile
66
- - README.md
58
+ - lib/rails_dev_tweaks/granular_autoload/matchers/xhr_matcher.rb
59
+ - lib/rails_dev_tweaks/granular_autoload/middleware.rb
60
+ - lib/rails_dev_tweaks/railtie.rb
61
+ - lib/rails_dev_tweaks/version.rb
67
62
  homepage: http://wavii.com/
68
- licenses: []
63
+ licenses:
64
+ - MIT
65
+ metadata: {}
69
66
  post_install_message:
70
67
  rdoc_options: []
71
68
  require_paths:
72
69
  - lib
73
70
  required_ruby_version: !ruby/object:Gem::Requirement
74
- none: false
75
71
  requirements:
76
- - - ! '>='
72
+ - - ">="
77
73
  - !ruby/object:Gem::Version
78
74
  version: '0'
79
75
  required_rubygems_version: !ruby/object:Gem::Requirement
80
- none: false
81
76
  requirements:
82
- - - ! '>='
77
+ - - ">="
83
78
  - !ruby/object:Gem::Version
84
79
  version: '0'
85
80
  requirements: []
86
81
  rubyforge_project: rails-dev-tweaks
87
- rubygems_version: 1.8.24
82
+ rubygems_version: 2.5.1
88
83
  signing_key:
89
- specification_version: 3
84
+ specification_version: 4
90
85
  summary: A collection of tweaks to improve your Rails (3.1+) development experience.
91
86
  test_files: []