handlebars.rb 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +36 -0
- data/Rakefile +8 -0
- data/handlebars.rb.gemspec +27 -0
- data/lib/handlebars/version.rb +3 -0
- data/lib/handlebars.rb +35 -0
- data/spec/handlebars/handlebars_spec.rb +19 -0
- data/spec/spec_helper.rb +1 -0
- metadata +127 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 95dc412d08df73982f24e5f47abdf111ce1baefc
|
4
|
+
data.tar.gz: bbe07c712234c6399c41c6888a777ee7b23b84c3
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 9f6f4ddb2c315788a7c2a00dc8d1149a7c318085b2eec5e55559ffd4f13deb25a548928fc55768a90532080ca9402b024514eb4df7abe5f566e143a725e32281
|
7
|
+
data.tar.gz: d61d696b8039ad28a2850d9d7a5da4ecf42e87ff96c4370183dad1cde5889cb9eef5f12db54aede882e5535e5a72739d250fd38ca4ba5837f003dcb14998f3c3
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2013 Saito
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,36 @@
|
|
1
|
+
# Handlebars.rb
|
2
|
+
|
3
|
+
Ruby Handlebars is a bridge to the JS Handlebars compiler.
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem 'handlebars.rb'
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install handlebars.rb
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
```ruby
|
22
|
+
[1] pry(main)> require'handlebars'
|
23
|
+
=> true
|
24
|
+
[2] pry(main)> Handlebars.version
|
25
|
+
=> "1.0.0"
|
26
|
+
[3] pry(main)> Handlebars.precompile("<p>Hello World</p>")
|
27
|
+
=> "function (Handlebars,depth0,helpers,partials,data) {\n this.compilerInfo = [4,'>= 1.0.0'];\nhelpers = this.merge(helpers, Handlebars.helpers); data = data || {};\n \n\n\n return \"<p>Hello World</p>\";\n }"
|
28
|
+
```
|
29
|
+
|
30
|
+
## Contributing
|
31
|
+
|
32
|
+
1. Fork it
|
33
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
34
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
35
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
36
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'handlebars/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "handlebars.rb"
|
8
|
+
spec.version = Handlebars::VERSION
|
9
|
+
spec.authors = ["Saito"]
|
10
|
+
spec.email = ["saitowu@gmail.com"]
|
11
|
+
spec.description = %q{Ruby Handlebars is a bridge to the JS Handlebars compiler.}
|
12
|
+
spec.summary = %q{bridge to the JS Handlebars compiler.}
|
13
|
+
spec.homepage = "https://github.com/SaitoWu/handlebar.rb"
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files`.split($/)
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.add_dependency 'handlebars-source'
|
22
|
+
spec.add_dependency 'execjs'
|
23
|
+
|
24
|
+
spec.add_development_dependency "rake"
|
25
|
+
spec.add_development_dependency "rspec", "~> 2.14"
|
26
|
+
spec.add_development_dependency "bundler", "~> 1.3"
|
27
|
+
end
|
data/lib/handlebars.rb
ADDED
@@ -0,0 +1,35 @@
|
|
1
|
+
require 'execjs'
|
2
|
+
require 'handlebars/source'
|
3
|
+
require 'handlebars/version'
|
4
|
+
|
5
|
+
module Handlebars
|
6
|
+
module Source
|
7
|
+
def self.path
|
8
|
+
@path ||= bundled_path
|
9
|
+
end
|
10
|
+
|
11
|
+
def self.contents
|
12
|
+
@contents ||= File.read(path)
|
13
|
+
end
|
14
|
+
|
15
|
+
def self.version
|
16
|
+
# Handlebars.VERSION = "1.0.0";
|
17
|
+
@version ||= contents[/Handlebars\.VERSION\s=\s\"([\d.]+)\"/, 1]
|
18
|
+
end
|
19
|
+
|
20
|
+
def self.context
|
21
|
+
@context ||= ExecJS.compile(contents)
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
25
|
+
class << self
|
26
|
+
def version
|
27
|
+
Source.version
|
28
|
+
end
|
29
|
+
|
30
|
+
def precompile(script)
|
31
|
+
script = script.read if script.respond_to?(:read)
|
32
|
+
Source.context.call("Handlebars.precompile", script)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
@@ -0,0 +1,19 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe Handlebars do
|
4
|
+
it "should has version" do
|
5
|
+
Handlebars.version.should == "1.0.0"
|
6
|
+
end
|
7
|
+
|
8
|
+
it "should enable to precompile handlebars template" do
|
9
|
+
Handlebars.precompile "<p>Hello World</p>"
|
10
|
+
Handlebars.precompile "<p>{{name}}</p>"
|
11
|
+
Handlebars.precompile "{{#each people}}{{name}}{{/each}}"
|
12
|
+
Handlebars.precompile "{{#each people}}{{> person}}{{/each}}"
|
13
|
+
end
|
14
|
+
|
15
|
+
it "should raise errors when precompile failed" do
|
16
|
+
Handlebars.precompile "{{#each people}}{{name}}{{/if}}" rescue true
|
17
|
+
Handlebars.precompile "{{#each people}}{{< name}}{{/each}}" rescue true
|
18
|
+
end
|
19
|
+
end
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "handlebars"
|
metadata
ADDED
@@ -0,0 +1,127 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: handlebars.rb
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Saito
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2013-11-02 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: handlebars-source
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - '>='
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - '>='
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: execjs
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - '>='
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - '>='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rake
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - '>='
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - '>='
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rspec
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ~>
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '2.14'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ~>
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '2.14'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: bundler
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ~>
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '1.3'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ~>
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '1.3'
|
83
|
+
description: Ruby Handlebars is a bridge to the JS Handlebars compiler.
|
84
|
+
email:
|
85
|
+
- saitowu@gmail.com
|
86
|
+
executables: []
|
87
|
+
extensions: []
|
88
|
+
extra_rdoc_files: []
|
89
|
+
files:
|
90
|
+
- .gitignore
|
91
|
+
- Gemfile
|
92
|
+
- LICENSE.txt
|
93
|
+
- README.md
|
94
|
+
- Rakefile
|
95
|
+
- handlebars.rb.gemspec
|
96
|
+
- lib/handlebars.rb
|
97
|
+
- lib/handlebars/version.rb
|
98
|
+
- spec/handlebars/handlebars_spec.rb
|
99
|
+
- spec/spec_helper.rb
|
100
|
+
homepage: https://github.com/SaitoWu/handlebar.rb
|
101
|
+
licenses:
|
102
|
+
- MIT
|
103
|
+
metadata: {}
|
104
|
+
post_install_message:
|
105
|
+
rdoc_options: []
|
106
|
+
require_paths:
|
107
|
+
- lib
|
108
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
109
|
+
requirements:
|
110
|
+
- - '>='
|
111
|
+
- !ruby/object:Gem::Version
|
112
|
+
version: '0'
|
113
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - '>='
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '0'
|
118
|
+
requirements: []
|
119
|
+
rubyforge_project:
|
120
|
+
rubygems_version: 2.1.0
|
121
|
+
signing_key:
|
122
|
+
specification_version: 4
|
123
|
+
summary: bridge to the JS Handlebars compiler.
|
124
|
+
test_files:
|
125
|
+
- spec/handlebars/handlebars_spec.rb
|
126
|
+
- spec/spec_helper.rb
|
127
|
+
has_rdoc:
|