haml-edge 2.3.178 → 2.3.179

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.
Files changed (38) hide show
  1. data/EDGE_GEM_VERSION +1 -1
  2. data/VERSION +1 -1
  3. data/test/haml/spec/README.md +97 -0
  4. data/test/haml/spec/lua_haml_spec.lua +30 -0
  5. data/test/haml/spec/ruby_haml_test.rb +19 -0
  6. data/test/haml/spec/tests.json +534 -0
  7. data/test/sass/engine_test.rb +12 -8
  8. data/vendor/fssm/LICENSE +20 -0
  9. data/vendor/fssm/README.markdown +55 -0
  10. data/vendor/fssm/Rakefile +59 -0
  11. data/vendor/fssm/VERSION.yml +5 -0
  12. data/vendor/fssm/example.rb +9 -0
  13. data/vendor/fssm/fssm.gemspec +77 -0
  14. data/vendor/fssm/lib/fssm/backends/fsevents.rb +36 -0
  15. data/vendor/fssm/lib/fssm/backends/inotify.rb +26 -0
  16. data/vendor/fssm/lib/fssm/backends/polling.rb +25 -0
  17. data/vendor/fssm/lib/fssm/backends/rubycocoa/fsevents.rb +131 -0
  18. data/vendor/fssm/lib/fssm/monitor.rb +26 -0
  19. data/vendor/fssm/lib/fssm/path.rb +91 -0
  20. data/vendor/fssm/lib/fssm/pathname.rb +502 -0
  21. data/vendor/fssm/lib/fssm/state/directory.rb +57 -0
  22. data/vendor/fssm/lib/fssm/state/file.rb +24 -0
  23. data/vendor/fssm/lib/fssm/support.rb +63 -0
  24. data/vendor/fssm/lib/fssm/tree.rb +176 -0
  25. data/vendor/fssm/lib/fssm.rb +33 -0
  26. data/vendor/fssm/profile/prof-cache.rb +40 -0
  27. data/vendor/fssm/profile/prof-fssm-pathname.html +1231 -0
  28. data/vendor/fssm/profile/prof-pathname.rb +68 -0
  29. data/vendor/fssm/profile/prof-plain-pathname.html +988 -0
  30. data/vendor/fssm/profile/prof.html +2379 -0
  31. data/vendor/fssm/spec/path_spec.rb +75 -0
  32. data/vendor/fssm/spec/root/duck/quack.txt +0 -0
  33. data/vendor/fssm/spec/root/file.css +0 -0
  34. data/vendor/fssm/spec/root/file.rb +0 -0
  35. data/vendor/fssm/spec/root/file.yml +0 -0
  36. data/vendor/fssm/spec/root/moo/cow.txt +0 -0
  37. data/vendor/fssm/spec/spec_helper.rb +14 -0
  38. metadata +37 -2
@@ -0,0 +1,75 @@
1
+ require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
2
+
3
+ describe "The File System State Monitor" do
4
+ describe "paths" do
5
+ it "should accept a valid filesystem directory" do
6
+ lambda {FSSM::Path.new("#{@watch_root}")}.should_not raise_error
7
+ end
8
+
9
+ it "should not accept an invalid filesystem directory" do
10
+ lambda {FSSM::Path.new('/does/not/exist/kthxbye')}.should raise_error
11
+ end
12
+
13
+ it "should default the path to the current directory" do
14
+ path = FSSM::Path.new
15
+ here = Pathname.new('.').realpath
16
+
17
+ "#{here}".should == "#{path}"
18
+ end
19
+
20
+ it "should accept an optional glob array parameter" do
21
+ path = FSSM::Path.new('.', ['**/*.yml'])
22
+ path.glob.should == ['**/*.yml']
23
+ end
24
+
25
+ it "should accept an optional glob string parameter" do
26
+ path = FSSM::Path.new('.', '**/*.yml')
27
+ path.glob.should == ['**/*.yml']
28
+ end
29
+
30
+ it "should default the glob to ['**/*']" do
31
+ path = FSSM::Path.new
32
+ path.glob.should == ['**/*']
33
+ end
34
+
35
+ it "should accept a callback for update events" do
36
+ path = FSSM::Path.new
37
+ callback = lambda {|base, relative| return true}
38
+ path.update(callback)
39
+ (path.update).should == callback
40
+ end
41
+
42
+ it "should accept a callback for delete events" do
43
+ path = FSSM::Path.new
44
+ callback = lambda {|base, relative| return true}
45
+ path.delete(callback)
46
+ (path.delete).should == callback
47
+ end
48
+
49
+ it "should accept a callback for create events" do
50
+ path = FSSM::Path.new
51
+ callback = lambda {|base, relative| return true}
52
+ path.create(callback)
53
+ (path.create).should == callback
54
+ end
55
+
56
+ it "should accept a configuration block" do
57
+ path = FSSM::Path.new "#{@watch_root}" do
58
+ glob '**/*.yml'
59
+ update {|base, relative| 'success'}
60
+ delete {|base, relative| 'success'}
61
+ create {|base, relative| 'success'}
62
+ end
63
+
64
+ "#{path}".should == "#{@watch_root}"
65
+ path.glob.should == ['**/*.yml']
66
+ path.update.should be_a_kind_of(Proc)
67
+ path.delete.should be_a_kind_of(Proc)
68
+ path.create.should be_a_kind_of(Proc)
69
+ path.update.call('', '').should == 'success'
70
+ path.delete.call('', '').should == 'success'
71
+ path.create.call('', '').should == 'success'
72
+ end
73
+
74
+ end
75
+ end
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -0,0 +1,14 @@
1
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
2
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
3
+
4
+ require 'pathname'
5
+ require 'fssm'
6
+
7
+ require 'spec'
8
+ require 'spec/autorun'
9
+
10
+ Spec::Runner.configure do |config|
11
+ config.before :all do
12
+ @watch_root = Pathname.new(__FILE__).dirname.join('root').expand_path
13
+ end
14
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: haml-edge
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.178
4
+ version: 2.3.179
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nathan Weizenbaum
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2010-03-29 00:00:00 -04:00
13
+ date: 2010-03-30 00:00:00 -04:00
14
14
  default_executable:
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
@@ -113,6 +113,36 @@ files:
113
113
  - lib/sass/tree/root_node.rb
114
114
  - lib/sass/tree/variable_node.rb
115
115
  - lib/sass/tree/while_node.rb
116
+ - vendor/fssm/LICENSE
117
+ - vendor/fssm/README.markdown
118
+ - vendor/fssm/Rakefile
119
+ - vendor/fssm/VERSION.yml
120
+ - vendor/fssm/example.rb
121
+ - vendor/fssm/fssm.gemspec
122
+ - vendor/fssm/lib/fssm.rb
123
+ - vendor/fssm/lib/fssm/backends/fsevents.rb
124
+ - vendor/fssm/lib/fssm/backends/inotify.rb
125
+ - vendor/fssm/lib/fssm/backends/polling.rb
126
+ - vendor/fssm/lib/fssm/backends/rubycocoa/fsevents.rb
127
+ - vendor/fssm/lib/fssm/monitor.rb
128
+ - vendor/fssm/lib/fssm/path.rb
129
+ - vendor/fssm/lib/fssm/pathname.rb
130
+ - vendor/fssm/lib/fssm/state/directory.rb
131
+ - vendor/fssm/lib/fssm/state/file.rb
132
+ - vendor/fssm/lib/fssm/support.rb
133
+ - vendor/fssm/lib/fssm/tree.rb
134
+ - vendor/fssm/profile/prof-cache.rb
135
+ - vendor/fssm/profile/prof-fssm-pathname.html
136
+ - vendor/fssm/profile/prof-pathname.rb
137
+ - vendor/fssm/profile/prof-plain-pathname.html
138
+ - vendor/fssm/profile/prof.html
139
+ - vendor/fssm/spec/path_spec.rb
140
+ - vendor/fssm/spec/root/duck/quack.txt
141
+ - vendor/fssm/spec/root/file.css
142
+ - vendor/fssm/spec/root/file.rb
143
+ - vendor/fssm/spec/root/file.yml
144
+ - vendor/fssm/spec/root/moo/cow.txt
145
+ - vendor/fssm/spec/spec_helper.rb
116
146
  - bin/css2sass
117
147
  - bin/haml
118
148
  - bin/html2haml
@@ -146,6 +176,10 @@ files:
146
176
  - test/haml/results/tag_parsing.xhtml
147
177
  - test/haml/results/very_basic.xhtml
148
178
  - test/haml/results/whitespace_handling.xhtml
179
+ - test/haml/spec/README.md
180
+ - test/haml/spec/lua_haml_spec.lua
181
+ - test/haml/spec/ruby_haml_test.rb
182
+ - test/haml/spec/tests.json
149
183
  - test/haml/template_test.rb
150
184
  - test/haml/util_test.rb
151
185
  - test/haml/templates/_av_partial_1.haml
@@ -294,6 +328,7 @@ test_files:
294
328
  - test/haml/engine_test.rb
295
329
  - test/haml/helper_test.rb
296
330
  - test/haml/html2haml_test.rb
331
+ - test/haml/spec/ruby_haml_test.rb
297
332
  - test/haml/template_test.rb
298
333
  - test/haml/util_test.rb
299
334
  - test/haml/spec_test.rb