haml-edge 2.3.223 → 2.3.224
Sign up to get free protection for your applications and to get access to all the features.
- data/EDGE_GEM_VERSION +1 -1
- data/VERSION +1 -1
- data/lib/sass/plugin/rails.rb +2 -2
- metadata +22 -57
- data/test/haml/spec/README.md +0 -97
- data/test/haml/spec/lua_haml_spec.lua +0 -30
- data/test/haml/spec/ruby_haml_test.rb +0 -19
- data/test/haml/spec/tests.json +0 -534
- data/vendor/fssm/LICENSE +0 -20
- data/vendor/fssm/README.markdown +0 -55
- data/vendor/fssm/Rakefile +0 -59
- data/vendor/fssm/VERSION.yml +0 -5
- data/vendor/fssm/example.rb +0 -9
- data/vendor/fssm/fssm.gemspec +0 -77
- data/vendor/fssm/lib/fssm/backends/fsevents.rb +0 -36
- data/vendor/fssm/lib/fssm/backends/inotify.rb +0 -26
- data/vendor/fssm/lib/fssm/backends/polling.rb +0 -25
- data/vendor/fssm/lib/fssm/backends/rubycocoa/fsevents.rb +0 -131
- data/vendor/fssm/lib/fssm/monitor.rb +0 -26
- data/vendor/fssm/lib/fssm/path.rb +0 -91
- data/vendor/fssm/lib/fssm/pathname.rb +0 -502
- data/vendor/fssm/lib/fssm/state/directory.rb +0 -57
- data/vendor/fssm/lib/fssm/state/file.rb +0 -24
- data/vendor/fssm/lib/fssm/support.rb +0 -63
- data/vendor/fssm/lib/fssm/tree.rb +0 -176
- data/vendor/fssm/lib/fssm.rb +0 -33
- data/vendor/fssm/profile/prof-cache.rb +0 -40
- data/vendor/fssm/profile/prof-fssm-pathname.html +0 -1231
- data/vendor/fssm/profile/prof-pathname.rb +0 -68
- data/vendor/fssm/profile/prof-plain-pathname.html +0 -988
- data/vendor/fssm/profile/prof.html +0 -2379
- data/vendor/fssm/spec/path_spec.rb +0 -75
- data/vendor/fssm/spec/root/duck/quack.txt +0 -0
- data/vendor/fssm/spec/root/file.css +0 -0
- data/vendor/fssm/spec/root/file.rb +0 -0
- data/vendor/fssm/spec/root/file.yml +0 -0
- data/vendor/fssm/spec/root/moo/cow.txt +0 -0
- 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)
|