guard-steering 0.0.1 → 0.0.2
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.
- data/LICENSE +1 -1
- data/README.md +9 -2
- data/lib/guard/steering/version.rb +1 -1
- data/lib/guard/steering.rb +1 -1
- metadata +10 -10
data/LICENSE
CHANGED
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Guard::Steering
|
2
2
|
|
3
|
-
Lets you configure a Guard that will run Steering whenever a Handlebars.js template is added / updated.
|
3
|
+
Lets you configure a Guard that will run [Steering](https://github.com/pixeltrix/steering) whenever a [Handlebars.js](https://github.com/wycats/handlebars.js) template is added / updated.
|
4
4
|
|
5
5
|
## Usage
|
6
6
|
|
@@ -13,7 +13,7 @@ Edit the Gemfile so that it looks like:
|
|
13
13
|
:branch => 'master'
|
14
14
|
gem 'guard-steering'
|
15
15
|
|
16
|
-
Note: Steering Gem needs to be able to work with files, at the moment that only
|
16
|
+
Note: Steering Gem needs to be able to work with files, at the moment that only works in [my fork](https://github.com/daaain/steering) (pull request pending).
|
17
17
|
|
18
18
|
Then on your favourite shell type:
|
19
19
|
|
@@ -32,6 +32,13 @@ You can adapt your 'view' files like you want. Please read Guard doc for more in
|
|
32
32
|
|
33
33
|
## Changelog
|
34
34
|
|
35
|
+
### 0.0.2
|
36
|
+
|
37
|
+
* Added versions to Gem dependencies.
|
38
|
+
* Removed 'handlebars' extension requirement, this is now left to Guard watch pattern to filter.
|
39
|
+
* Updated documentation with links to other Gems / Github repos.
|
40
|
+
* Extended copyright license to ustwo™
|
41
|
+
|
35
42
|
### 0.0.1
|
36
43
|
|
37
44
|
Initial version.
|
data/lib/guard/steering.rb
CHANGED
@@ -40,7 +40,7 @@ module Guard
|
|
40
40
|
# This method should be principally used for long action like running all specs/tests/...
|
41
41
|
# @raise [:task_has_failed] when run_all has failed
|
42
42
|
def run_all
|
43
|
-
paths = Dir.glob("
|
43
|
+
paths = Dir.glob("**/*.*")
|
44
44
|
targets = Watcher.match_files(self, paths)
|
45
45
|
run_on_change targets
|
46
46
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: guard-steering
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-05-
|
12
|
+
date: 2012-05-10 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: guard
|
@@ -18,7 +18,7 @@ dependencies:
|
|
18
18
|
requirements:
|
19
19
|
- - ! '>='
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version:
|
21
|
+
version: 1.0.2
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ! '>='
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version:
|
29
|
+
version: 1.0.2
|
30
30
|
- !ruby/object:Gem::Dependency
|
31
31
|
name: steering
|
32
32
|
requirement: !ruby/object:Gem::Requirement
|
@@ -34,7 +34,7 @@ dependencies:
|
|
34
34
|
requirements:
|
35
35
|
- - ! '>='
|
36
36
|
- !ruby/object:Gem::Version
|
37
|
-
version:
|
37
|
+
version: 1.1.0
|
38
38
|
type: :runtime
|
39
39
|
prerelease: false
|
40
40
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -42,23 +42,23 @@ dependencies:
|
|
42
42
|
requirements:
|
43
43
|
- - ! '>='
|
44
44
|
- !ruby/object:Gem::Version
|
45
|
-
version:
|
45
|
+
version: 1.1.0
|
46
46
|
- !ruby/object:Gem::Dependency
|
47
47
|
name: rspec
|
48
48
|
requirement: !ruby/object:Gem::Requirement
|
49
49
|
none: false
|
50
50
|
requirements:
|
51
|
-
- -
|
51
|
+
- - ~>
|
52
52
|
- !ruby/object:Gem::Version
|
53
|
-
version:
|
53
|
+
version: 2.10.0
|
54
54
|
type: :development
|
55
55
|
prerelease: false
|
56
56
|
version_requirements: !ruby/object:Gem::Requirement
|
57
57
|
none: false
|
58
58
|
requirements:
|
59
|
-
- -
|
59
|
+
- - ~>
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version:
|
61
|
+
version: 2.10.0
|
62
62
|
description: Guard::Steering automatically runs the steering gem to precompile Handlebars.js
|
63
63
|
templates
|
64
64
|
email:
|