baby_erubis 0.1.0
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.
- data/MIT-LICENSE +20 -0
- data/README.md +315 -0
- data/Rakefile +83 -0
- data/baby_erubis.gemspec +38 -0
- data/lib/baby_erubis.rb +196 -0
- data/setup.rb +1585 -0
- data/test/context_test.rb +97 -0
- data/test/run_all.rb +12 -0
- data/test/template_test.rb +429 -0
- metadata +68 -0
metadata
ADDED
@@ -0,0 +1,68 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: baby_erubis
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- makoto kuwata
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2014-05-06 00:00:00.000000000 Z
|
13
|
+
dependencies: []
|
14
|
+
description: ! 'BabyErubis is an yet another eRuby implementation, based on Erubis.
|
15
|
+
|
16
|
+
|
17
|
+
* Small and fast
|
18
|
+
|
19
|
+
* Supports HTML as well as plain text
|
20
|
+
|
21
|
+
* Accepts both template file and template string
|
22
|
+
|
23
|
+
* Easy to customize
|
24
|
+
|
25
|
+
|
26
|
+
BabyErubis support Ruby 1.9 or higher.
|
27
|
+
|
28
|
+
'
|
29
|
+
email: kwa(at)kuwata-lab.com
|
30
|
+
executables: []
|
31
|
+
extensions: []
|
32
|
+
extra_rdoc_files: []
|
33
|
+
files:
|
34
|
+
- lib/baby_erubis.rb
|
35
|
+
- test/context_test.rb
|
36
|
+
- test/run_all.rb
|
37
|
+
- test/template_test.rb
|
38
|
+
- README.md
|
39
|
+
- MIT-LICENSE
|
40
|
+
- setup.rb
|
41
|
+
- baby_erubis.gemspec
|
42
|
+
- Rakefile
|
43
|
+
homepage: https://github.com/kwatch/BabyErubis/tree/ruby
|
44
|
+
licenses: []
|
45
|
+
post_install_message:
|
46
|
+
rdoc_options: []
|
47
|
+
require_paths:
|
48
|
+
- lib
|
49
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
50
|
+
none: false
|
51
|
+
requirements:
|
52
|
+
- - ! '>='
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
56
|
+
none: false
|
57
|
+
requirements:
|
58
|
+
- - ! '>='
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
version: '0'
|
61
|
+
requirements: []
|
62
|
+
rubyforge_project:
|
63
|
+
rubygems_version: 1.8.25
|
64
|
+
signing_key:
|
65
|
+
specification_version: 3
|
66
|
+
summary: yet another eRuby implementation based on Erubis
|
67
|
+
test_files:
|
68
|
+
- test/run_all.rb
|