haml-edge 2.3.199 → 2.3.200

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 (42) hide show
  1. data/EDGE_GEM_VERSION +1 -1
  2. data/VERSION +1 -1
  3. data/lib/haml/helpers/action_view_mods.rb +2 -3
  4. data/lib/haml/helpers.rb +1 -1
  5. data/lib/sass/environment.rb +1 -1
  6. data/lib/sass/script/lexer.rb +1 -1
  7. data/lib/sass.rb +1 -1
  8. metadata +1 -36
  9. data/test/haml/spec/README.md +0 -97
  10. data/test/haml/spec/lua_haml_spec.lua +0 -30
  11. data/test/haml/spec/ruby_haml_test.rb +0 -19
  12. data/test/haml/spec/tests.json +0 -534
  13. data/vendor/fssm/LICENSE +0 -20
  14. data/vendor/fssm/README.markdown +0 -55
  15. data/vendor/fssm/Rakefile +0 -59
  16. data/vendor/fssm/VERSION.yml +0 -5
  17. data/vendor/fssm/example.rb +0 -9
  18. data/vendor/fssm/fssm.gemspec +0 -77
  19. data/vendor/fssm/lib/fssm/backends/fsevents.rb +0 -36
  20. data/vendor/fssm/lib/fssm/backends/inotify.rb +0 -26
  21. data/vendor/fssm/lib/fssm/backends/polling.rb +0 -25
  22. data/vendor/fssm/lib/fssm/backends/rubycocoa/fsevents.rb +0 -131
  23. data/vendor/fssm/lib/fssm/monitor.rb +0 -26
  24. data/vendor/fssm/lib/fssm/path.rb +0 -91
  25. data/vendor/fssm/lib/fssm/pathname.rb +0 -502
  26. data/vendor/fssm/lib/fssm/state/directory.rb +0 -57
  27. data/vendor/fssm/lib/fssm/state/file.rb +0 -24
  28. data/vendor/fssm/lib/fssm/support.rb +0 -63
  29. data/vendor/fssm/lib/fssm/tree.rb +0 -176
  30. data/vendor/fssm/lib/fssm.rb +0 -33
  31. data/vendor/fssm/profile/prof-cache.rb +0 -40
  32. data/vendor/fssm/profile/prof-fssm-pathname.html +0 -1231
  33. data/vendor/fssm/profile/prof-pathname.rb +0 -68
  34. data/vendor/fssm/profile/prof-plain-pathname.html +0 -988
  35. data/vendor/fssm/profile/prof.html +0 -2379
  36. data/vendor/fssm/spec/path_spec.rb +0 -75
  37. data/vendor/fssm/spec/root/duck/quack.txt +0 -0
  38. data/vendor/fssm/spec/root/file.css +0 -0
  39. data/vendor/fssm/spec/root/file.rb +0 -0
  40. data/vendor/fssm/spec/root/file.yml +0 -0
  41. data/vendor/fssm/spec/root/moo/cow.txt +0 -0
  42. data/vendor/fssm/spec/spec_helper.rb +0 -14
@@ -1,68 +0,0 @@
1
- $:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
2
-
3
- require 'fssm'
4
- require 'pathname'
5
-
6
- require 'rubygems'
7
- require 'ruby-prof'
8
-
9
- $test_path = "#{Pathname.new('..').expand_path}"
10
- $iterations = 90000
11
-
12
- class Pathname
13
- # original segments implementation I was using with
14
- # the plain ruby Pathname library.
15
- def segments
16
- prefix, names = split_names(@path)
17
- names.unshift(prefix) unless prefix.empty?
18
- names.shift if names[0] == '.'
19
- names
20
- end
21
- end
22
-
23
- core_result = Pathname.new($test_path).segments
24
- fssm_result = FSSM::Pathname.new($test_path).segments
25
- raise Exception, "#{core_result.inspect} != #{fssm_result.inspect}\nFSSM::Pathname is incompatible with Pathname" unless core_result == fssm_result
26
-
27
- RubyProf.start
28
- RubyProf.pause
29
-
30
- $iterations.times do |num|
31
- iteration = "%-6d" % (num + 1)
32
- puts "FSSM::Pathname iteration #{iteration}"
33
-
34
- RubyProf.resume
35
- p = FSSM::Pathname.new($test_path)
36
- segments = p.segments
37
- RubyProf.pause
38
- end
39
-
40
- puts "\nFSSM Pathname profile finished\n\n"
41
-
42
- result = RubyProf.stop
43
- output = File.new('prof-fssm-pathname.html', 'w+')
44
-
45
- printer = RubyProf::GraphHtmlPrinter.new(result)
46
- printer.print(output, :min_percent => 1)
47
-
48
-
49
- RubyProf.start
50
- RubyProf.pause
51
-
52
- $iterations.times do |num|
53
- iteration = "%-6d" % (num + 1)
54
- puts "::Pathname iteration #{iteration}"
55
-
56
- RubyProf.resume
57
- p = ::Pathname.new($test_path)
58
- segments = p.segments
59
- RubyProf.pause
60
- end
61
-
62
- puts "\nruby Pathname profile finished\n\n"
63
-
64
- result = RubyProf.stop
65
- output = File.new('prof-plain-pathname.html', 'w+')
66
-
67
- printer = RubyProf::GraphHtmlPrinter.new(result)
68
- printer.print(output, :min_percent => 1)