erubis 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/COPYING +340 -0
- data/ChangeLog +8 -0
- data/README +50 -0
- data/bin/erubis +187 -0
- data/doc/docstyle.css +188 -0
- data/doc/users-guide.html +676 -0
- data/lib/erubis.rb +254 -0
- data/setup.rb +1331 -0
- data/test/test-bin.rb +229 -0
- data/test/test-erubis.rb +461 -0
- metadata +52 -0
metadata
ADDED
@@ -0,0 +1,52 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
rubygems_version: 0.8.10
|
3
|
+
specification_version: 1
|
4
|
+
name: erubis
|
5
|
+
version: !ruby/object:Gem::Version
|
6
|
+
version: 1.0.0
|
7
|
+
date: 2006-01-31
|
8
|
+
summary: an implementation of eRuby
|
9
|
+
require_paths:
|
10
|
+
- lib
|
11
|
+
email:
|
12
|
+
homepage: http://rubyforge.org/projects/erubis
|
13
|
+
rubyforge_project:
|
14
|
+
description: "Erubis is an implementation of eRuby and has the following features: * Auto trimming spaces around '<% %>' * Auto sanitizing * Change embedded pattern (default '<% %>') * Context object available * Easy to expand in subclass"
|
15
|
+
autorequire:
|
16
|
+
default_executable:
|
17
|
+
bindir: bin
|
18
|
+
has_rdoc: false
|
19
|
+
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">"
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 0.0.0
|
24
|
+
version:
|
25
|
+
platform: ruby
|
26
|
+
authors:
|
27
|
+
- kwatch
|
28
|
+
files:
|
29
|
+
- lib/erubis.rb
|
30
|
+
- bin/erubis
|
31
|
+
- test/test-erubis.rb
|
32
|
+
- test/test-bin.rb
|
33
|
+
- doc/users-guide.html
|
34
|
+
- doc/docstyle.css
|
35
|
+
- README
|
36
|
+
- ChangeLog
|
37
|
+
- COPYING
|
38
|
+
- setup.rb
|
39
|
+
test_files:
|
40
|
+
- test/test-erubis.rb
|
41
|
+
rdoc_options: []
|
42
|
+
|
43
|
+
extra_rdoc_files: []
|
44
|
+
|
45
|
+
executables:
|
46
|
+
- erubis
|
47
|
+
extensions: []
|
48
|
+
|
49
|
+
requirements: []
|
50
|
+
|
51
|
+
dependencies: []
|
52
|
+
|