txprails 0.1.1
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/.document +5 -0
- data/.gitignore +21 -0
- data/LICENSE +20 -0
- data/README.rdoc +50 -0
- data/Rakefile +54 -0
- data/VERSION +1 -0
- data/VERSION_NAME +1 -0
- data/bin/txprails +9 -0
- data/ext/txparse/Makefile +157 -0
- data/ext/txparse/extconf.rb +8 -0
- data/ext/txparse/test_txp.rb +65 -0
- data/ext/txparse/txparse.cpp +139 -0
- data/ext/txparse/txparse.h +15 -0
- data/ext/txparse/txparse_lib.cpp +191 -0
- data/ext/txparse/txparse_lib.h +17 -0
- data/ext/txparse/txparse_tag.cpp +109 -0
- data/ext/txparse/txparse_tag.h +7 -0
- data/lib/init_rails.rb +16 -0
- data/lib/txprails/commands.rb +88 -0
- data/lib/txprails/template.rb +29 -0
- data/lib/txprails/util.rb +44 -0
- data/lib/txprails/version.rb +64 -0
- data/lib/txprails.rb +44 -0
- data/test/helper.rb +10 -0
- data/test/test_txprails.rb +7 -0
- data/txprails.gemspec +73 -0
- metadata +91 -0
data/txprails.gemspec
ADDED
@@ -0,0 +1,73 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = %q{txprails}
|
8
|
+
s.version = "0.1.1"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["Jose Miguel P\303\251rez Ruiz"]
|
12
|
+
s.date = %q{2010-01-09}
|
13
|
+
s.default_executable = %q{txprails}
|
14
|
+
s.description = %q{TXPRails is a template engine based on TextPattern for Rails.}
|
15
|
+
s.email = %q{josemiguel@perezruiz.com}
|
16
|
+
s.executables = ["txprails"]
|
17
|
+
s.extensions = ["ext/txparse/extconf.rb"]
|
18
|
+
s.extra_rdoc_files = [
|
19
|
+
"LICENSE",
|
20
|
+
"README.rdoc"
|
21
|
+
]
|
22
|
+
s.files = [
|
23
|
+
".document",
|
24
|
+
".gitignore",
|
25
|
+
"LICENSE",
|
26
|
+
"README.rdoc",
|
27
|
+
"Rakefile",
|
28
|
+
"VERSION",
|
29
|
+
"VERSION_NAME",
|
30
|
+
"bin/txprails",
|
31
|
+
"ext/txparse/Makefile",
|
32
|
+
"ext/txparse/extconf.rb",
|
33
|
+
"ext/txparse/test_txp.rb",
|
34
|
+
"ext/txparse/txparse.cpp",
|
35
|
+
"ext/txparse/txparse.h",
|
36
|
+
"ext/txparse/txparse_lib.cpp",
|
37
|
+
"ext/txparse/txparse_lib.h",
|
38
|
+
"ext/txparse/txparse_tag.cpp",
|
39
|
+
"ext/txparse/txparse_tag.h",
|
40
|
+
"lib/init_rails.rb",
|
41
|
+
"lib/txprails.rb",
|
42
|
+
"lib/txprails/commands.rb",
|
43
|
+
"lib/txprails/template.rb",
|
44
|
+
"lib/txprails/util.rb",
|
45
|
+
"lib/txprails/version.rb",
|
46
|
+
"test/helper.rb",
|
47
|
+
"test/test_txprails.rb",
|
48
|
+
"txprails.gemspec"
|
49
|
+
]
|
50
|
+
s.homepage = %q{http://github.com/twoixter/txprails}
|
51
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
52
|
+
s.require_paths = ["lib"]
|
53
|
+
s.rubygems_version = %q{1.3.5}
|
54
|
+
s.summary = %q{TextPattern-like template engine for Rails}
|
55
|
+
s.test_files = [
|
56
|
+
"test/helper.rb",
|
57
|
+
"test/test_txprails.rb"
|
58
|
+
]
|
59
|
+
|
60
|
+
if s.respond_to? :specification_version then
|
61
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
62
|
+
s.specification_version = 3
|
63
|
+
|
64
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
65
|
+
s.add_development_dependency(%q<thoughtbot-shoulda>, [">= 0"])
|
66
|
+
else
|
67
|
+
s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
|
68
|
+
end
|
69
|
+
else
|
70
|
+
s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
|
71
|
+
end
|
72
|
+
end
|
73
|
+
|
metadata
ADDED
@@ -0,0 +1,91 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: txprails
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- "Jose Miguel P\xC3\xA9rez Ruiz"
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2010-01-09 00:00:00 +01:00
|
13
|
+
default_executable: txprails
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: thoughtbot-shoulda
|
17
|
+
type: :development
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: "0"
|
24
|
+
version:
|
25
|
+
description: TXPRails is a template engine based on TextPattern for Rails.
|
26
|
+
email: josemiguel@perezruiz.com
|
27
|
+
executables:
|
28
|
+
- txprails
|
29
|
+
extensions:
|
30
|
+
- ext/txparse/extconf.rb
|
31
|
+
extra_rdoc_files:
|
32
|
+
- LICENSE
|
33
|
+
- README.rdoc
|
34
|
+
files:
|
35
|
+
- .document
|
36
|
+
- .gitignore
|
37
|
+
- LICENSE
|
38
|
+
- README.rdoc
|
39
|
+
- Rakefile
|
40
|
+
- VERSION
|
41
|
+
- VERSION_NAME
|
42
|
+
- bin/txprails
|
43
|
+
- ext/txparse/Makefile
|
44
|
+
- ext/txparse/extconf.rb
|
45
|
+
- ext/txparse/test_txp.rb
|
46
|
+
- ext/txparse/txparse.cpp
|
47
|
+
- ext/txparse/txparse.h
|
48
|
+
- ext/txparse/txparse_lib.cpp
|
49
|
+
- ext/txparse/txparse_lib.h
|
50
|
+
- ext/txparse/txparse_tag.cpp
|
51
|
+
- ext/txparse/txparse_tag.h
|
52
|
+
- lib/init_rails.rb
|
53
|
+
- lib/txprails.rb
|
54
|
+
- lib/txprails/commands.rb
|
55
|
+
- lib/txprails/template.rb
|
56
|
+
- lib/txprails/util.rb
|
57
|
+
- lib/txprails/version.rb
|
58
|
+
- test/helper.rb
|
59
|
+
- test/test_txprails.rb
|
60
|
+
- txprails.gemspec
|
61
|
+
has_rdoc: true
|
62
|
+
homepage: http://github.com/twoixter/txprails
|
63
|
+
licenses: []
|
64
|
+
|
65
|
+
post_install_message:
|
66
|
+
rdoc_options:
|
67
|
+
- --charset=UTF-8
|
68
|
+
require_paths:
|
69
|
+
- lib
|
70
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
71
|
+
requirements:
|
72
|
+
- - ">="
|
73
|
+
- !ruby/object:Gem::Version
|
74
|
+
version: "0"
|
75
|
+
version:
|
76
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
77
|
+
requirements:
|
78
|
+
- - ">="
|
79
|
+
- !ruby/object:Gem::Version
|
80
|
+
version: "0"
|
81
|
+
version:
|
82
|
+
requirements: []
|
83
|
+
|
84
|
+
rubyforge_project:
|
85
|
+
rubygems_version: 1.3.5
|
86
|
+
signing_key:
|
87
|
+
specification_version: 3
|
88
|
+
summary: TextPattern-like template engine for Rails
|
89
|
+
test_files:
|
90
|
+
- test/helper.rb
|
91
|
+
- test/test_txprails.rb
|