guard-coffeescript 0.5.2 → 0.5.3

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -1,27 +1,30 @@
1
1
  # Guard::CoffeeScript [![Build Status](https://secure.travis-ci.org/netzpirat/guard-coffeescript.png)](http://travis-ci.org/netzpirat/guard-coffeescript)
2
2
 
3
3
  Guard::CoffeeScript compiles or validates your CoffeeScripts automatically when files are modified.
4
+ If you're looking for a CoffeeScript merge tool, please checkout [Guard::CoffeeDripper](https://github.com/guard/guard-coffeedripper).
4
5
 
5
- Tested on MRI Ruby 1.8.7, 1.9.2, REE and the latest versions of JRuby & Rubinius.
6
+ Tested on MRI Ruby 1.8.7, 1.9.2, 1.9.3, REE and the latest versions of JRuby & Rubinius.
6
7
 
7
8
  If you have any questions please join us on our [Google group](http://groups.google.com/group/guard-dev) or on `#guard`
8
9
  (irc.freenode.net).
9
10
 
10
11
  ## Install
11
12
 
12
- Please be sure to have [Guard](https://github.com/guard/guard) installed.
13
+ The simplest way to install Guard is to use [Bundler](http://gembundler.com/).
14
+ Please make sure to have [Guard](https://github.com/guard/guard) installed.
13
15
 
14
- Install the gem:
16
+ Add Guard::Coffeescript to your `Gemfile`:
15
17
 
16
- $ gem install guard-coffeescript
18
+ ```ruby
19
+ group :development do
20
+ gem 'guard-coffeescript'
21
+ end
22
+ ```
23
+ Add the default Guard::Coffeescript template to your `Guardfile` by running:
17
24
 
18
- Add it to your `Gemfile`, preferably inside the development group:
19
-
20
- gem 'guard-coffeescript'
21
-
22
- Add guard definition to your `Guardfile` by running this command:
23
-
24
- $ guard init coffeescript
25
+ ```bash
26
+ $ guard init coffeescript
27
+ ```
25
28
 
26
29
  ## JSON
27
30
 
@@ -54,34 +57,42 @@ install the [executable](http://www.nodejs.org/#download).
54
57
  To use the [V8 JavaScript Engine](http://code.google.com/p/v8/), simple add `therubyracer` to your `Gemfile`.
55
58
  The Ruby Racer acts as a bridge between Ruby and the V8 engine, that will be automatically installed by the Ruby Racer.
56
59
 
57
- group :development do
58
- gem 'therubyracer'
59
- end
60
+ ```ruby
61
+ group :development do
62
+ gem 'therubyracer'
63
+ end
64
+ ```
60
65
 
61
66
  Another alternative is [Mustang](https://github.com/nu7hatch/mustang), a Ruby proxy library for the awesome Google V8
62
67
  JavaScript engine. Just add `mustang` to your `Gemfile`:
63
68
 
64
- group :development do
65
- gem 'mustang'
66
- end
69
+ ```ruby
70
+ group :development do
71
+ gem 'mustang'
72
+ end
73
+ ```
67
74
 
68
75
  ### Mozilla SpiderMonkey
69
76
 
70
77
  To use [Mozilla SpiderMonkey](https://developer.mozilla.org/en/SpiderMonkey), simple add `johnson` to your `Gemfile`.
71
78
  Johnson embeds the Mozilla SpiderMonkey JavaScript runtime as a C extension.
72
79
 
73
- group :development do
74
- gem 'johnson'
75
- end
80
+ ```ruby
81
+ group :development do
82
+ gem 'johnson'
83
+ end
84
+ ```
76
85
 
77
86
  ### Mozilla Rhino
78
87
 
79
88
  If you're using JRuby, you can embed the [Mozilla Rhino](http://www.mozilla.org/rhino/) runtime by adding `therubyrhino`
80
89
  to your `Gemfile`:
81
90
 
82
- group :development do
83
- gem 'therubyrhino'
84
- end
91
+ ```ruby
92
+ group :development do
93
+ gem 'therubyrhino'
94
+ end
95
+ ```
85
96
 
86
97
  ### Apple JavaScriptCore
87
98
 
@@ -107,11 +118,15 @@ Guard::CoffeeScript can be adapted to all kind of projects. Please read the
107
118
 
108
119
  In a Ruby project you want to configure your input and output directories.
109
120
 
110
- guard 'coffeescript', :input => 'coffeescripts', :output => 'javascripts'
121
+ ```ruby
122
+ guard 'coffeescript', :input => 'coffeescripts', :output => 'javascripts'
123
+ ```
111
124
 
112
125
  If your output directory is the same as the input directory, you can simply skip it:
113
126
 
114
- guard 'coffeescript', :input => 'javascripts'
127
+ ```ruby
128
+ guard 'coffeescript', :input => 'javascripts'
129
+ ```
115
130
 
116
131
  ### Rails app with the asset pipeline
117
132
 
@@ -122,45 +137,53 @@ However, if you would still like to have feedback on the validation of your Coff
122
137
  (preferably with a Growl notification) directly after you save a change, then you can still
123
138
  use this Guard and simply skip generation of the output file:
124
139
 
125
- guard 'coffeescript', :input => 'app/assets/javascripts', :noop => true
140
+ ```ruby
141
+ guard 'coffeescript', :input => 'app/assets/javascripts', :noop => true
142
+ ```
126
143
 
127
144
  This give you a faster compilation feedback compared to making a subsequent request to your Rails application. If you
128
145
  just want to be notified when an error occurs you can hide the success compilation message:
129
146
 
130
- guard 'coffeescript', :input => 'app/assets/javascripts', :noop => true, :hide_success => true
147
+ ```ruby
148
+ guard 'coffeescript', :input => 'app/assets/javascripts', :noop => true, :hide_success => true
149
+ ```
131
150
 
132
151
  ### Rails app without the asset pipeline
133
152
 
134
153
  Without the asset pipeline you just define an input and output directory like within a normal Ruby project:
135
154
 
136
- guard 'coffeescript', :input => 'app/coffeescripts', :output => 'public/javascripts'
155
+ ```ruby
156
+ guard 'coffeescript', :input => 'app/coffeescripts', :output => 'public/javascripts'
157
+ ```
137
158
 
138
159
  ## Options
139
160
 
140
161
  There following options can be passed to Guard::CoffeeScript:
141
162
 
142
- :input => 'coffeescripts' # Relative path to the input directory.
143
- # A suffix `/(.+\.coffee)` will be added to this option.
144
- # default: nil
163
+ ```ruby
164
+ :input => 'coffeescripts' # Relative path to the input directory.
165
+ # A suffix `/(.+\.coffee)` will be added to this option.
166
+ # default: nil
145
167
 
146
- :output => 'javascripts' # Relative path to the output directory.
147
- # default: the path given with the :input option
168
+ :output => 'javascripts' # Relative path to the output directory.
169
+ # default: the path given with the :input option
148
170
 
149
- :noop => true # No operation: do not write an output file.
150
- # default: false
171
+ :noop => true # No operation: do not write an output file.
172
+ # default: false
151
173
 
152
- :bare => true # Compile without the top-level function wrapper.
153
- # Provide either a boolean value or an Array of filenames.
154
- # default: false
174
+ :bare => true # Compile without the top-level function wrapper.
175
+ # Provide either a boolean value or an Array of filenames.
176
+ # default: false
155
177
 
156
- :shallow => true # Do not create nested output directories.
157
- # default: false
178
+ :shallow => true # Do not create nested output directories.
179
+ # default: false
158
180
 
159
- :hide_success => true # Disable successful compilation messages.
160
- # default: false
181
+ :hide_success => true # Disable successful compilation messages.
182
+ # default: false
161
183
 
162
- :all_on_start => true # Regenerate all files on startup
163
- # default: false
184
+ :all_on_start => true # Regenerate all files on startup
185
+ # default: false
186
+ ```
164
187
 
165
188
  ### Output short notation
166
189
 
@@ -168,19 +191,25 @@ In addition to the standard configuration, this Guard has a short notation for c
168
191
  and output directory. This notation creates a watcher from the `:input` parameter that matches all CoffeeScript files
169
192
  under the given directory and you don't have to specify a watch regular expression.
170
193
 
171
- guard 'coffeescript', :input => 'javascripts'
194
+ ```ruby
195
+ guard 'coffeescript', :input => 'javascripts'
196
+ ```
172
197
 
173
198
  ### Selective bare option
174
199
 
175
200
  The `:bare` option can take a boolean value that indicates if all scripts should be compiled without the top-level
176
201
  function wrapper.
177
202
 
178
- :bare => true
203
+ ```ruby
204
+ :bare => true
205
+ ```
179
206
 
180
207
  But you can also pass an Array of filenames that should be compiled without the top-level function wrapper. The path of
181
208
  the file to compile is ignored, so the list of filenames should not contain any path information:
182
209
 
183
- :bare => %w{ a.coffee b.coffee }
210
+ ```ruby
211
+ :bare => %w{ a.coffee b.coffee }
212
+ ```
184
213
 
185
214
  In the above example, all `a.coffee` and `b.coffee` files will be compiled with option `:bare => true` and all other
186
215
  files with option `:bare => false`.
@@ -192,19 +221,27 @@ the match of the watch regular expression:
192
221
 
193
222
  A file
194
223
 
195
- /app/coffeescripts/ui/buttons/toggle_button.coffee
224
+ ```ruby
225
+ /app/coffeescripts/ui/buttons/toggle_button.coffee
226
+ ```
196
227
 
197
228
  that has been detected by the watch
198
229
 
199
- watch(%r{^app/coffeescripts/(.+\.coffee)$})
230
+ ```ruby
231
+ watch(%r{^app/coffeescripts/(.+\.coffee)$})
232
+ ```
200
233
 
201
234
  with an output directory of
202
235
 
203
- :output => 'public/javascripts/compiled'
236
+ ```ruby
237
+ :output => 'public/javascripts/compiled'
238
+ ```
204
239
 
205
240
  will be compiled to
206
241
 
207
- public/javascripts/compiled/ui/buttons/toggle_button.js
242
+ ```ruby
243
+ public/javascripts/compiled/ui/buttons/toggle_button.js
244
+ ```
208
245
 
209
246
  Note the parenthesis around the `.+\.coffee`. This enables Guard::CoffeeScript to place the full path that was matched
210
247
  inside the parenthesis into the proper output directory.
@@ -216,43 +253,66 @@ compiled directly to the output directory.
216
253
 
217
254
  The Guard short notation
218
255
 
219
- guard 'coffeescript', :input => 'app/coffeescripts', :output => 'public/javascripts/compiled'
256
+ ```ruby
257
+ guard 'coffeescript', :input => 'app/coffeescripts', :output => 'public/javascripts/compiled'
258
+ ```
220
259
 
221
260
  will be internally converted into the standard notation by adding `/(.+\.coffee)` to the `input` option string and
222
261
  create a Watcher that is equivalent to:
223
262
 
224
- guard 'coffeescript', :output => 'public/javascripts/compiled' do
225
- watch(%r{^app/coffeescripts/(.+\.coffee)$})
226
- end
263
+ ```ruby
264
+ guard 'coffeescript', :output => 'public/javascripts/compiled' do
265
+ watch(%r{^app/coffeescripts/(.+\.coffee)$})
266
+ end
267
+ ```
227
268
 
228
269
  To add a second source directory that will be compiled to the same output directory, just add another watcher:
229
270
 
230
- guard 'coffeescript', :input => 'app/coffeescripts', :output => 'public/javascripts/compiled' do
231
- watch(%r{lib/coffeescripts/(.+\.coffee)})
232
- end
271
+ ```ruby
272
+ guard 'coffeescript', :input => 'app/coffeescripts', :output => 'public/javascripts/compiled' do
273
+ watch(%r{lib/coffeescripts/(.+\.coffee)})
274
+ end
275
+ ```
233
276
 
234
277
  which is equivalent to:
235
278
 
236
- guard 'coffeescript', :output => 'public/javascripts/compiled' do
237
- watch(%r{app/coffeescripts/(.+\.coffee)})
238
- watch(%r{lib/coffeescripts/(.+\.coffee)})
239
- end
279
+ ```ruby
280
+ guard 'coffeescript', :output => 'public/javascripts/compiled' do
281
+ watch(%r{app/coffeescripts/(.+\.coffee)})
282
+ watch(%r{lib/coffeescripts/(.+\.coffee)})
283
+ end
284
+ ```
285
+
286
+ ## Issues
287
+
288
+ You can report issues and feature requests to [GitHub Issues](https://github.com/netzpirat/guard-coffeescript/issues). Try to figure out
289
+ where the issue belongs to: Is it an issue with Guard itself or with a Guard::Cucumber? Please don't
290
+ ask question in the issue tracker, instead join us in our [Google group](http://groups.google.com/group/guard-dev) or on
291
+ `#guard` (irc.freenode.net).
292
+
293
+ When you file an issue, please try to follow to these simple rules if applicable:
294
+
295
+ * Make sure you run Guard with `bundle exec` first.
296
+ * Add debug information to the issue by running Guard with the `--debug` option.
297
+ * Add your `Guardfile` and `Gemfile` to the issue.
298
+ * Make sure that the issue is reproducible with your description.
240
299
 
241
300
  ## Development
242
301
 
243
302
  - Documentation hosted at [RubyDoc](http://rubydoc.info/github/guard/guard-coffeescript/master/frames).
244
303
  - Source hosted at [GitHub](https://github.com/netzpirat/guard-coffeescript).
245
- - Report issues and feature requests to [GitHub Issues](https://github.com/netzpirat/guard-coffeescript/issues).
246
304
 
247
- Pull requests are very welcome! Please try to follow these simple "rules", though:
305
+ Pull requests are very welcome! Please try to follow these simple rules if applicable:
248
306
 
249
- - Please create a topic branch for every separate change you make.
250
- - Make sure your patches are well tested.
251
- - Update the README (if applicable).
252
- - Please **do not change** the version number.
307
+ * Please create a topic branch for every separate change you make.
308
+ * Make sure your patches are well tested.
309
+ * Update the [Yard](http://yardoc.org/) documentation.
310
+ * Update the README.
311
+ * Update the CHANGELOG for noteworthy changes.
312
+ * Please **do not change** the version number.
253
313
 
254
- For questions please join us on our [Google group](http://groups.google.com/group/guard-dev) or on `#guard`
255
- (irc.freenode.net).
314
+ For questions please join us in our [Google group](http://groups.google.com/group/guard-dev) or on
315
+ `#guard` (irc.freenode.net).
256
316
 
257
317
  ## Contributors
258
318
 
@@ -260,17 +320,16 @@ For questions please join us on our [Google group](http://groups.google.com/grou
260
320
  * [Andrew Assarattanakul](https://github.com/vizjerai)
261
321
  * [Elijah Miller](https://github.com/jqr)
262
322
  * [Jeremy Raines](https://github.com/jraines)
323
+ * [JT](https://github.com/jtolds)
263
324
  * [Patrick Ewing](https://github.com/hoverbird)
264
325
 
265
326
  ## Acknowledgment
266
327
 
267
- [Jeremy Ashkenas](http://twitter.com/#!/jashkenas) for [CoffeeScript](http://jashkenas.github.com/coffee-script/),
328
+ * [Jeremy Ashkenas](http://twitter.com/#!/jashkenas) for [CoffeeScript](http://jashkenas.github.com/coffee-script/),
268
329
  that little language that compiles into JavaScript and makes me enjoy the frontend.
269
-
270
- The [Guard Team](https://github.com/guard/guard/contributors) for giving us such a nice piece of software
330
+ * The [Guard Team](https://github.com/guard/guard/contributors) for giving us such a nice piece of software
271
331
  that is so easy to extend, one *has* to make a plugin for it!
272
-
273
- All the authors of the numerous [Guards](https://github.com/guard) available for making the Guard ecosystem
332
+ * All the authors of the numerous [Guards](https://github.com/guard) available for making the Guard ecosystem
274
333
  so much growing and comprehensive.
275
334
 
276
335
  ## License
@@ -297,4 +356,3 @@ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
297
356
  CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
298
357
  TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
299
358
  SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
300
-
@@ -16,9 +16,7 @@ module Guard
16
16
  def clean(paths)
17
17
  paths.uniq!
18
18
  paths.compact!
19
- paths = paths.select { |p| coffee_file?(p) }
20
- clear_coffee_files_list
21
- paths
19
+ paths.select { |p| coffee_file?(p) }
22
20
  end
23
21
 
24
22
  private
@@ -29,23 +27,7 @@ module Guard
29
27
  # @return [Boolean] when the file valid
30
28
  #
31
29
  def coffee_file?(path)
32
- coffee_files.include?(path)
33
- end
34
-
35
- # Scans the project and keeps a list of all
36
- # CoffeeScript files.
37
- #
38
- # @see #clear_coffee_files_list
39
- # @return [Array<String>] the valid files
40
- #
41
- def coffee_files
42
- @coffee_files ||= Dir.glob('**/*.coffee')
43
- end
44
-
45
- # Clears the list of CoffeeScript files in this project.
46
- #
47
- def clear_coffee_files_list
48
- @coffee_files = nil
30
+ path =~ /.coffee$/ && File.exists?(path)
49
31
  end
50
32
 
51
33
  end
@@ -1,6 +1,6 @@
1
1
  module Guard
2
2
  module CoffeeScriptVersion
3
3
  # Guard::CoffeeScript version that is used for the Gem specification
4
- VERSION = '0.5.2'
4
+ VERSION = '0.5.3'
5
5
  end
6
6
  end
@@ -58,7 +58,7 @@ module Guard
58
58
  # @raise [:task_has_failed] when stop has failed
59
59
  #
60
60
  def run_all
61
- run_on_change(Watcher.match_files(self, Dir.glob(File.join('**', '*.coffee'))))
61
+ run_on_change(Watcher.match_files(self, Dir.glob('**{,/*/**}/*.coffee')))
62
62
  end
63
63
 
64
64
  # Gets called when watched paths and files have changes.
metadata CHANGED
@@ -1,188 +1,132 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: guard-coffeescript
3
- version: !ruby/object:Gem::Version
4
- hash: 15
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.5.3
5
5
  prerelease:
6
- segments:
7
- - 0
8
- - 5
9
- - 2
10
- version: 0.5.2
11
6
  platform: ruby
12
- authors:
7
+ authors:
13
8
  - Michael Kessler
14
9
  autorequire:
15
10
  bindir: bin
16
11
  cert_chain: []
17
-
18
- date: 2011-10-01 00:00:00 Z
19
- dependencies:
20
- - !ruby/object:Gem::Dependency
12
+ date: 2011-12-14 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
21
15
  name: guard
22
- prerelease: false
23
- requirement: &id001 !ruby/object:Gem::Requirement
16
+ requirement: &70134895411600 !ruby/object:Gem::Requirement
24
17
  none: false
25
- requirements:
26
- - - ">="
27
- - !ruby/object:Gem::Version
28
- hash: 57
29
- segments:
30
- - 0
31
- - 8
32
- - 3
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
33
21
  version: 0.8.3
34
22
  type: :runtime
35
- version_requirements: *id001
36
- - !ruby/object:Gem::Dependency
37
- name: coffee-script
38
23
  prerelease: false
39
- requirement: &id002 !ruby/object:Gem::Requirement
24
+ version_requirements: *70134895411600
25
+ - !ruby/object:Gem::Dependency
26
+ name: coffee-script
27
+ requirement: &70134895409900 !ruby/object:Gem::Requirement
40
28
  none: false
41
- requirements:
42
- - - ">="
43
- - !ruby/object:Gem::Version
44
- hash: 7
45
- segments:
46
- - 2
47
- - 2
48
- - 0
29
+ requirements:
30
+ - - ! '>='
31
+ - !ruby/object:Gem::Version
49
32
  version: 2.2.0
50
33
  type: :runtime
51
- version_requirements: *id002
52
- - !ruby/object:Gem::Dependency
53
- name: bundler
54
34
  prerelease: false
55
- requirement: &id003 !ruby/object:Gem::Requirement
35
+ version_requirements: *70134895409900
36
+ - !ruby/object:Gem::Dependency
37
+ name: bundler
38
+ requirement: &70134895407560 !ruby/object:Gem::Requirement
56
39
  none: false
57
- requirements:
40
+ requirements:
58
41
  - - ~>
59
- - !ruby/object:Gem::Version
60
- hash: 15
61
- segments:
62
- - 1
63
- - 0
64
- version: "1.0"
42
+ - !ruby/object:Gem::Version
43
+ version: '1.0'
65
44
  type: :development
66
- version_requirements: *id003
67
- - !ruby/object:Gem::Dependency
68
- name: guard-rspec
69
45
  prerelease: false
70
- requirement: &id004 !ruby/object:Gem::Requirement
46
+ version_requirements: *70134895407560
47
+ - !ruby/object:Gem::Dependency
48
+ name: guard-rspec
49
+ requirement: &70134895405620 !ruby/object:Gem::Requirement
71
50
  none: false
72
- requirements:
51
+ requirements:
73
52
  - - ~>
74
- - !ruby/object:Gem::Version
75
- hash: 3
76
- segments:
77
- - 0
78
- - 4
79
- version: "0.4"
53
+ - !ruby/object:Gem::Version
54
+ version: '0.5'
80
55
  type: :development
81
- version_requirements: *id004
82
- - !ruby/object:Gem::Dependency
83
- name: rspec
84
56
  prerelease: false
85
- requirement: &id005 !ruby/object:Gem::Requirement
57
+ version_requirements: *70134895405620
58
+ - !ruby/object:Gem::Dependency
59
+ name: rspec
60
+ requirement: &70134895404440 !ruby/object:Gem::Requirement
86
61
  none: false
87
- requirements:
62
+ requirements:
88
63
  - - ~>
89
- - !ruby/object:Gem::Version
90
- hash: 15
91
- segments:
92
- - 2
93
- - 6
94
- version: "2.6"
64
+ - !ruby/object:Gem::Version
65
+ version: '2.7'
95
66
  type: :development
96
- version_requirements: *id005
97
- - !ruby/object:Gem::Dependency
98
- name: yard
99
67
  prerelease: false
100
- requirement: &id006 !ruby/object:Gem::Requirement
68
+ version_requirements: *70134895404440
69
+ - !ruby/object:Gem::Dependency
70
+ name: yard
71
+ requirement: &70134895400860 !ruby/object:Gem::Requirement
101
72
  none: false
102
- requirements:
73
+ requirements:
103
74
  - - ~>
104
- - !ruby/object:Gem::Version
105
- hash: 7
106
- segments:
107
- - 0
108
- - 7
109
- - 2
75
+ - !ruby/object:Gem::Version
110
76
  version: 0.7.2
111
77
  type: :development
112
- version_requirements: *id006
113
- - !ruby/object:Gem::Dependency
114
- name: kramdown
115
78
  prerelease: false
116
- requirement: &id007 !ruby/object:Gem::Requirement
79
+ version_requirements: *70134895400860
80
+ - !ruby/object:Gem::Dependency
81
+ name: redcarpet
82
+ requirement: &70134895397000 !ruby/object:Gem::Requirement
117
83
  none: false
118
- requirements:
84
+ requirements:
119
85
  - - ~>
120
- - !ruby/object:Gem::Version
121
- hash: 45
122
- segments:
123
- - 0
124
- - 13
125
- - 3
126
- version: 0.13.3
86
+ - !ruby/object:Gem::Version
87
+ version: 1.17.2
127
88
  type: :development
128
- version_requirements: *id007
129
- description: Guard::CoffeeScript automatically generates your JavaScripts from your CoffeeScripts
130
- email:
89
+ prerelease: false
90
+ version_requirements: *70134895397000
91
+ description: Guard::CoffeeScript automatically generates your JavaScripts from your
92
+ CoffeeScripts
93
+ email:
131
94
  - michi@netzpiraten.ch
132
95
  executables: []
133
-
134
96
  extensions: []
135
-
136
97
  extra_rdoc_files: []
137
-
138
- files:
98
+ files:
139
99
  - lib/guard/coffeescript/formatter.rb
140
- - lib/guard/coffeescript/formatter.rbc
141
100
  - lib/guard/coffeescript/inspector.rb
142
- - lib/guard/coffeescript/inspector.rbc
143
101
  - lib/guard/coffeescript/runner.rb
144
- - lib/guard/coffeescript/runner.rbc
145
102
  - lib/guard/coffeescript/templates/Guardfile
146
103
  - lib/guard/coffeescript/version.rb
147
- - lib/guard/coffeescript/version.rbc
148
104
  - lib/guard/coffeescript.rb
149
- - lib/guard/coffeescript.rbc
150
105
  - LICENSE
151
106
  - README.md
152
107
  homepage: http://github.com/netzpirat/guard-coffeescript
153
108
  licenses: []
154
-
155
109
  post_install_message:
156
110
  rdoc_options: []
157
-
158
- require_paths:
111
+ require_paths:
159
112
  - lib
160
- required_ruby_version: !ruby/object:Gem::Requirement
113
+ required_ruby_version: !ruby/object:Gem::Requirement
161
114
  none: false
162
- requirements:
163
- - - ">="
164
- - !ruby/object:Gem::Version
165
- hash: 3
166
- segments:
167
- - 0
168
- version: "0"
169
- required_rubygems_version: !ruby/object:Gem::Requirement
115
+ requirements:
116
+ - - ! '>='
117
+ - !ruby/object:Gem::Version
118
+ version: '0'
119
+ required_rubygems_version: !ruby/object:Gem::Requirement
170
120
  none: false
171
- requirements:
172
- - - ">="
173
- - !ruby/object:Gem::Version
174
- hash: 23
175
- segments:
176
- - 1
177
- - 3
178
- - 6
121
+ requirements:
122
+ - - ! '>='
123
+ - !ruby/object:Gem::Version
179
124
  version: 1.3.6
180
125
  requirements: []
181
-
182
126
  rubyforge_project: guard-coffeescript
183
- rubygems_version: 1.8.6
127
+ rubygems_version: 1.8.10
184
128
  signing_key:
185
129
  specification_version: 3
186
130
  summary: Guard gem for CoffeeScript
187
131
  test_files: []
188
-
132
+ has_rdoc: