guard-jet 0.0.1

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 ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2011 Erwan Barrier
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,5 @@
1
+ # Guard::Jet
2
+
3
+ Guard::Jet automatically build your Jet app on file save.
4
+
5
+ For more informations about Jet, see https://github.com/erwanb/jet
@@ -0,0 +1,31 @@
1
+ require 'jet'
2
+ require 'guard'
3
+ require 'guard/guard'
4
+
5
+ module Guard
6
+ class Jet < Guard
7
+ def start
8
+ @application = ::Jet::Application.new
9
+
10
+ @application.clear_build
11
+ @application.build_all
12
+ end
13
+
14
+ def run_on_change(paths)
15
+ already_built_javascript = false
16
+ already_built_stylesheet = false
17
+
18
+ paths.each do |path|
19
+ if ::Jet::File.is_javascript?(path) && !already_built_javascript
20
+ @application.build_javascript
21
+ already_built_javascript = true
22
+ elsif ::Jet::File.is_stylesheet?(path) && !already_built_stylesheet
23
+ @application.build_stylesheet
24
+ already_built_stylesheet = true
25
+ elsif ::Jet::File.is_public?(path)
26
+ @application.copy_to_build(path)
27
+ end
28
+ end
29
+ end
30
+ end
31
+ end
@@ -0,0 +1,2 @@
1
+ # This Guard plugin should not be used alone!!
2
+ # See https://github.com/erwanb/jet for more info about using Jet.
@@ -0,0 +1,5 @@
1
+ module Guard
2
+ module Jet
3
+ VERSION = "0.0.1"
4
+ end
5
+ end
metadata ADDED
@@ -0,0 +1,83 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: guard-jet
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Erwan Barrier
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2011-12-02 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: guard
16
+ requirement: &70302936135840 !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: 0.8.4
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: *70302936135840
25
+ - !ruby/object:Gem::Dependency
26
+ name: jet-framework
27
+ requirement: &70302936134040 !ruby/object:Gem::Requirement
28
+ none: false
29
+ requirements:
30
+ - - ! '>='
31
+ - !ruby/object:Gem::Version
32
+ version: 0.0.1
33
+ type: :runtime
34
+ prerelease: false
35
+ version_requirements: *70302936134040
36
+ - !ruby/object:Gem::Dependency
37
+ name: bundler
38
+ requirement: &70302936124360 !ruby/object:Gem::Requirement
39
+ none: false
40
+ requirements:
41
+ - - ! '>='
42
+ - !ruby/object:Gem::Version
43
+ version: '0'
44
+ type: :development
45
+ prerelease: false
46
+ version_requirements: *70302936124360
47
+ description: Guard::Jet automatically build your Jet app.
48
+ email:
49
+ - erwan.barrier@gmail.com
50
+ executables: []
51
+ extensions: []
52
+ extra_rdoc_files: []
53
+ files:
54
+ - lib/guard/jet/templates/Guardfile
55
+ - lib/guard/jet/version.rb
56
+ - lib/guard/jet.rb
57
+ - LICENSE
58
+ - README.md
59
+ homepage: http://github.com/erwanb/guard-gem
60
+ licenses: []
61
+ post_install_message:
62
+ rdoc_options: []
63
+ require_paths:
64
+ - lib
65
+ required_ruby_version: !ruby/object:Gem::Requirement
66
+ none: false
67
+ requirements:
68
+ - - ! '>='
69
+ - !ruby/object:Gem::Version
70
+ version: '0'
71
+ required_rubygems_version: !ruby/object:Gem::Requirement
72
+ none: false
73
+ requirements:
74
+ - - ! '>='
75
+ - !ruby/object:Gem::Version
76
+ version: '0'
77
+ requirements: []
78
+ rubyforge_project: guard-jet
79
+ rubygems_version: 1.8.10
80
+ signing_key:
81
+ specification_version: 3
82
+ summary: Guard gem for Jet
83
+ test_files: []