flay-haml 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
data/MIT-LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright 2013 Eugene Kalenkovich
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.
data/README.md ADDED
@@ -0,0 +1,14 @@
1
+ flay-haml
2
+ =========
3
+
4
+ HAML plugin for flay
5
+
6
+ Installation
7
+ ------------
8
+
9
+ gem install flay-haml
10
+
11
+ For flay usage read [flay docummentation](https://github.com/seattlerb/flay)
12
+
13
+ Please be aware that line numbers reported by flay correspond to precompiled haml, and do not map direcly to source code.
14
+ The same applies to diffs.
data/Rakefile ADDED
@@ -0,0 +1,11 @@
1
+ #!/usr/bin/env rake
2
+ require 'rake/testtask'
3
+
4
+ Rake::TestTask.new(:test) do |t|
5
+ t.libs << 'lib'
6
+ t.libs << 'test'
7
+ t.pattern = 'test/**/*_test.rb'
8
+ t.verbose = false
9
+ end
10
+
11
+ task :default => :test
data/lib/flay_haml.rb ADDED
@@ -0,0 +1,21 @@
1
+ #!/usr/bin/ruby
2
+ require 'flay'
3
+ require 'haml'
4
+
5
+ class Flay
6
+ ##
7
+ # Process haml and parse the result. Returns the sexp of the parsed
8
+ # ruby.
9
+
10
+ def process_haml file
11
+ haml = File.read file
12
+
13
+ ruby = Haml::Engine.new(haml).precompiled
14
+ begin
15
+ RubyParser.new.process(ruby, file)
16
+ rescue => e
17
+ warn ruby if option[:verbose]
18
+ raise e
19
+ end
20
+ end
21
+ end
@@ -0,0 +1,12 @@
1
+ #!/usr/bin/ruby -w
2
+
3
+ require 'minitest/autorun'
4
+ require 'flay_haml'
5
+
6
+ class FlayHamlTest < MiniTest::Unit::TestCase
7
+ def test_flay_haml
8
+ res = Flay.new.process_haml File.dirname(__FILE__) + '/sample.haml'
9
+ assert Sexp === res
10
+ assert res.size > 0
11
+ end
12
+ end
data/test/sample.haml ADDED
@@ -0,0 +1,7 @@
1
+ .class
2
+ .class
3
+ = a
4
+ .class
5
+ = b
6
+ #id
7
+ = c
metadata ADDED
@@ -0,0 +1,97 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: flay-haml
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Eugene Kalenkovich
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2013-05-07 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: flay
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: '1.2'
22
+ - - <
23
+ - !ruby/object:Gem::Version
24
+ version: '3'
25
+ type: :runtime
26
+ prerelease: false
27
+ version_requirements: !ruby/object:Gem::Requirement
28
+ none: false
29
+ requirements:
30
+ - - ! '>='
31
+ - !ruby/object:Gem::Version
32
+ version: '1.2'
33
+ - - <
34
+ - !ruby/object:Gem::Version
35
+ version: '3'
36
+ - !ruby/object:Gem::Dependency
37
+ name: haml
38
+ requirement: !ruby/object:Gem::Requirement
39
+ none: false
40
+ requirements:
41
+ - - ! '>='
42
+ - !ruby/object:Gem::Version
43
+ version: '3'
44
+ - - <
45
+ - !ruby/object:Gem::Version
46
+ version: '5'
47
+ type: :runtime
48
+ prerelease: false
49
+ version_requirements: !ruby/object:Gem::Requirement
50
+ none: false
51
+ requirements:
52
+ - - ! '>='
53
+ - !ruby/object:Gem::Version
54
+ version: '3'
55
+ - - <
56
+ - !ruby/object:Gem::Version
57
+ version: '5'
58
+ description: Plagin for flay enabling processing of .haml files
59
+ email:
60
+ - rubify@softover.com
61
+ executables: []
62
+ extensions: []
63
+ extra_rdoc_files: []
64
+ files:
65
+ - lib/flay_haml.rb
66
+ - MIT-LICENSE
67
+ - Rakefile
68
+ - README.md
69
+ - test/flay_haml_test.rb
70
+ - test/sample.haml
71
+ homepage: https://github.com/kalenkov/flay-haml
72
+ licenses: []
73
+ post_install_message:
74
+ rdoc_options: []
75
+ require_paths:
76
+ - lib
77
+ required_ruby_version: !ruby/object:Gem::Requirement
78
+ none: false
79
+ requirements:
80
+ - - ! '>='
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ required_rubygems_version: !ruby/object:Gem::Requirement
84
+ none: false
85
+ requirements:
86
+ - - ! '>='
87
+ - !ruby/object:Gem::Version
88
+ version: '0'
89
+ requirements: []
90
+ rubyforge_project:
91
+ rubygems_version: 1.8.25
92
+ signing_key:
93
+ specification_version: 3
94
+ summary: HAML plugin for flay
95
+ test_files:
96
+ - test/flay_haml_test.rb
97
+ - test/sample.haml