guard-llsprockets 0.2 → 0.3
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.
- checksums.yaml +4 -4
- data/README.md +8 -10
- data/lib/guard/sprockets/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9579315952411642a2e0c6420027d019d79c8b82
|
|
4
|
+
data.tar.gz: 2f6a4dadf06b72773a9f39c2937e51dac55f4158
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 31770ed8982bbf7c58a9c718056c88fc1e959a1fb0d1d31fabc70279c29974f3d54441f82d57a8ddc93aa6ae640bdabd14b171cb0188580bd8611bec0958d1b5
|
|
7
|
+
data.tar.gz: e9d71012db3892c3b85b7a795300522bb97188bb89b53781c7952d105259e15bc8344507f5b0e95f850ae76b6e8e6aa3ff252b9b6196415d362c778bc812f4d6
|
data/README.md
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
# Guard::Sprockets
|
|
1
|
+
# Guard::Sprockets
|
|
2
|
+
|
|
3
|
+
This is a fork of 'guard-sprockets' with some major improvements.
|
|
2
4
|
|
|
3
5
|
Sprockets guard automatically packages your JavaScript files together when your source files are saved.
|
|
4
6
|
|
|
@@ -37,14 +39,6 @@ Please read [Guard usage doc](https://github.com/guard/guard#readme)
|
|
|
37
39
|
|
|
38
40
|
Guard::Sprockets can be adapted to all kind of projects.
|
|
39
41
|
|
|
40
|
-
### Typical Rails 3 app (default generated Guardfile)
|
|
41
|
-
|
|
42
|
-
``` ruby
|
|
43
|
-
guard 'sprockets', :destination => 'public/javascripts', :asset_paths => ['/app/assets/javascripts'] do
|
|
44
|
-
watch 'app/assets/javascripts/application.js'
|
|
45
|
-
end
|
|
46
|
-
```
|
|
47
|
-
|
|
48
42
|
Please read [Guard doc](https://github.com/guard/guard#readme) for more information about the Guardfile DSL.
|
|
49
43
|
|
|
50
44
|
## Options
|
|
@@ -59,10 +53,14 @@ Please read [Guard doc](https://github.com/guard/guard#readme) for more informat
|
|
|
59
53
|
:root_file => ['one.js', 'two.js'] # root_file can be a String or an Array
|
|
60
54
|
```
|
|
61
55
|
|
|
56
|
+
## Credits
|
|
57
|
+
|
|
58
|
+
Thanks to Aaron Cruz and Kematzy.
|
|
59
|
+
|
|
62
60
|
## License
|
|
63
61
|
(The MIT License)
|
|
64
62
|
|
|
65
|
-
Copyright (c) 2011-
|
|
63
|
+
Copyright (c) 2011-2013 Aaron Cruz, Christian Hahn
|
|
66
64
|
|
|
67
65
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
68
66
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: guard-llsprockets
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: '0.
|
|
4
|
+
version: '0.3'
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Christian menix Hahn
|
|
@@ -94,7 +94,7 @@ files:
|
|
|
94
94
|
- lib/guard/sprockets/version.rb
|
|
95
95
|
- lib/guard/sprockets.rb
|
|
96
96
|
- README.md
|
|
97
|
-
homepage: https://
|
|
97
|
+
homepage: https://github.com/LivingLogic/guard-llsprockets
|
|
98
98
|
licenses: []
|
|
99
99
|
metadata: {}
|
|
100
100
|
post_install_message:
|