rails-dev-tweaks 0.5.1 → 0.5.2
Sign up to get free protection for your applications and to get access to all the features.
data/README.md
CHANGED
@@ -3,7 +3,7 @@ A collection of tweaks to improve your Rails (3.1+) development experience.
|
|
3
3
|
|
4
4
|
To install, simply add it to your gemfile:
|
5
5
|
|
6
|
-
gem 'rails-dev-tweaks', '~> 0.5.
|
6
|
+
gem 'rails-dev-tweaks', '~> 0.5.2'
|
7
7
|
|
8
8
|
At the moment, the current tweaks center around speeding up requests by giving granular control over which requests
|
9
9
|
cause the Rails reloader to kick in.
|
@@ -1,7 +1,7 @@
|
|
1
1
|
class RailsDevTweaks::GranularAutoload::Matchers::AssetMatcher
|
2
2
|
|
3
3
|
def call(request)
|
4
|
-
main_mount = request.headers['action_dispatch.routes'].set.recognize(request)
|
4
|
+
main_mount = request.headers['action_dispatch.routes'].set.dup.recognize(request)
|
5
5
|
|
6
6
|
# Unwind until we have an actual app
|
7
7
|
while main_mount != nil
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rails-dev-tweaks
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,11 +9,11 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2011-
|
12
|
+
date: 2011-12-13 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rails
|
16
|
-
requirement: &
|
16
|
+
requirement: &70251325012800 !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - ~>
|
@@ -21,7 +21,7 @@ dependencies:
|
|
21
21
|
version: 3.1.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
|
-
version_requirements: *
|
24
|
+
version_requirements: *70251325012800
|
25
25
|
description: A collection of tweaks to improve your Rails (3.1+) development experience.
|
26
26
|
email:
|
27
27
|
- info@wavii.com
|