ruby_it 0.1.0 → 0.2.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/bin/ruby_it CHANGED
@@ -1,13 +1,24 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
- require 'rubygems'
3
+ begin
4
+ require_relative File.join('..', 'lib', 'ruby_it')
5
+ rescue
6
+ # Ruby 1.8 Falls back here
7
+ require 'rubygems'
4
8
 
5
- $LOAD_PATH.unshift File.join(File.dirname(__FILE__), '..', 'lib')
6
- require 'ruby_it'
9
+ $LOAD_PATH.unshift File.join( File.dirname(__FILE__), '..', 'lib')
10
+ require 'ruby_it'
11
+ end
7
12
 
8
13
  opts = RubyIt::RubyItOptions.parse( ARGV )
9
14
 
10
15
 
16
+ if not opts.data.nil?
17
+ opts.data.each do |data|
18
+ load data
19
+ end
20
+ end
21
+
11
22
  opts.filelist.each do |f|
12
23
 
13
24
  pp f
@@ -0,0 +1,2 @@
1
+ @size = 3
2
+ @name = 'HelloWorld'
@@ -0,0 +1,2 @@
1
+ <%= @size %>
2
+ <%= @name %>
@@ -0,0 +1,10 @@
1
+ Hello
2
+ Hello
3
+ Hello
4
+ Hello
5
+ Hello
6
+ Hello
7
+ Hello
8
+ Hello
9
+ Hello
10
+ Hello
data/lib/ruby_it.rb CHANGED
@@ -1,7 +1,12 @@
1
1
  module RubyIt
2
- VERSION = "0.1.0"
2
+ VERSION = "0.2.0"
3
3
  end
4
4
 
5
- require "ruby_it/document"
6
- require "ruby_it/ruby_it_options"
7
-
5
+ #Ruby 1.9.2 did not work with the relative links
6
+ begin
7
+ require_relative "ruby_it/document"
8
+ require_relative "ruby_it/ruby_it_options"
9
+ rescue
10
+ require "ruby_it/document"
11
+ require "ruby_it/ruby_it_options"
12
+ end
data/spec/cli_spec.rb CHANGED
@@ -1,54 +1,83 @@
1
- require '../lib/ruby_it'
1
+ require 'spec_helper'
2
2
 
3
- describe RubyIt, "Command Line Interface" do
4
- it "Generates Files to correct output folder" do
5
- source = "../examples/hello_erb.rtxt"
6
- generated = "../generated/hello_erb.txt"
7
- source_expected_text = "\n<% 3.times do -%>\n<%= 'hello' %>\n<% end -%>\n"
8
- generated_expected_text = "hello\nhello\nhello\n"
3
+ describe RubyIt do
4
+ before(:all) do
5
+ @prefix = File.dirname( __FILE__ )
9
6
 
10
- check_source_and_remove_gen( source, generated )
7
+ puts @prefix
8
+ end
9
+ describe RubyIt, "Command Line Interface" do
10
+ it "Generates Files to correct output folder" do
11
+ source = "#{@prefix}/../examples/hello_erb.rtxt"
12
+ generated = "#{@prefix}/../generated/hello_erb.txt"
13
+ source_expected_text = "\n<% 3.times do -%>\n<%= 'hello' %>\n<% end -%>\n"
14
+ generated_expected_text = "hello\nhello\nhello\n"
11
15
 
12
- check_source_text( source, source_expected_text )
16
+ check_source_and_remove_gen( source, generated )
13
17
 
14
- # run CLI (With blocking function)
15
- do_and_report("../bin/ruby_it --outpath ../generated/ --file #{source}")
18
+ check_source_text( source, source_expected_text )
16
19
 
17
- check_generated_text( generated, generated_expected_text )
18
- end
20
+ # run CLI (With blocking function)
21
+ do_and_report("#{@prefix}/../bin/ruby_it --outpath #{@prefix}/../generated/ --file #{source}")
19
22
 
23
+ check_generated_text( generated, generated_expected_text )
24
+ end
20
25
 
21
- it "evaluates command line parameters" do
22
- source = "../examples/hellos.rtxt"
23
- generated = "../generated/hellos.txt"
24
- source_expected_text = "\n<% @hellos.times do -%>\n<%= 'Hello' %>\n<% end -%>\n"
25
- generated_expected_text = "Hello\nHello\nHello\n"
26
26
 
27
- check_source_and_remove_gen( source, generated )
27
+ it "evaluates command line parameters" do
28
+ source = "#{@prefix}/../examples/hellos.rtxt"
29
+ generated = "#{@prefix}/../generated/hellos.txt"
30
+ source_expected_text = "\n<% @hellos.times do -%>\n<%= 'Hello' %>\n<% end -%>\n"
31
+ generated_expected_text = "Hello\nHello\nHello\n"
28
32
 
29
- check_source_text( source, source_expected_text )
33
+ check_source_and_remove_gen( source, generated )
30
34
 
31
- # run CLI (With blocking function)
32
- do_and_report("../bin/ruby_it --parameter @hellos=3 --outpath ../generated/ --file #{source}")
35
+ check_source_text( source, source_expected_text )
33
36
 
34
- check_generated_text( generated, generated_expected_text )
35
- end
37
+ # run CLI (With blocking function)
38
+ do_and_report("#{@prefix}/../bin/ruby_it --parameter @hellos=3 --outpath #{@prefix}/../generated/ --file #{source}")
36
39
 
40
+ check_generated_text( generated, generated_expected_text )
41
+ end
37
42
 
38
- it "evaluates command line parameters with different values '5'" do
39
- source = "../examples/hellos.rtxt"
40
- generated = "../generated/hellos.txt"
41
- source_expected_text = "\n<% @hellos.times do -%>\n<%= 'Hello' %>\n<% end -%>\n"
42
- generated_expected_text = "Hello\nHello\nHello\nHello\nHello\n"
43
43
 
44
- check_source_and_remove_gen( source, generated )
44
+ it "evaluates command line parameters with different values '5'" do
45
+ source = "#{@prefix}/../examples/hellos.rtxt"
46
+ generated = "#{@prefix}/../generated/hellos.txt"
47
+ source_expected_text = "\n<% @hellos.times do -%>\n<%= 'Hello' %>\n<% end -%>\n"
48
+ generated_expected_text = "Hello\nHello\nHello\nHello\nHello\n"
45
49
 
46
- check_source_text( source, source_expected_text )
50
+ check_source_and_remove_gen( source, generated )
51
+
52
+ check_source_text( source, source_expected_text )
53
+
54
+ # run CLI (With blocking function)
55
+ do_and_report("#{@prefix}/../bin/ruby_it --parameter @hellos=5 --outpath #{@prefix}/../generated/ --file #{source}")
56
+
57
+ check_generated_text( generated, generated_expected_text )
58
+ end
59
+ it "evaluates command line parameters with different values '5'" do
60
+ source = "#{@prefix}/../examples/example3.rtxt"
61
+ generated = "#{@prefix}/../generated/example3.txt"
62
+ source_expected_text = "<%= @size %>\n<%= @name %>\n"
63
+ generated_expected_text = "3\nHelloWorld\n"
64
+
65
+ check_source_and_remove_gen( source, generated )
66
+
67
+ check_source_text( source, source_expected_text )
68
+
69
+
70
+ puts "#{@prefix}/../bin/ruby_it --config #{@prefix}/../examples/example3.conf --outpath #{@prefix}/../generated/ --file #{source}"
71
+
72
+
73
+
74
+ # run CLI (With blocking function)
75
+ do_and_report("#{@prefix}/../bin/ruby_it --config #{@prefix}/../examples/example3.conf --outpath #{@prefix}/../generated/ --file #{source}")
76
+
77
+ check_generated_text( generated, generated_expected_text )
78
+ end
47
79
 
48
- # run CLI (With blocking function)
49
- do_and_report("../bin/ruby_it --parameter @hellos=5 --outpath ../generated/ --file #{source}")
50
80
 
51
- check_generated_text( generated, generated_expected_text )
52
81
  end
53
82
  end
54
83
 
data/spec/ruby_it_spec.rb CHANGED
@@ -1,160 +1,167 @@
1
- require '../lib/ruby_it'
1
+ require 'spec_helper'
2
+ #Run from the Spec Folder
3
+ #Dir.chdir( File.dirname( __FILE__ ) )
2
4
 
3
5
 
4
-
5
- describe RubyIt, "RubyIt" do
6
- it "hello_erb basic load and parse" do
7
- rubyit = RubyIt::Document.new('../examples/hello_erb.rtxt')
6
+ describe RubyIt do
7
+ before(:all) do
8
+ @prefix = File.dirname( __FILE__ )
9
+ end
10
+
8
11
 
9
- rubyit.input.should == '../examples/hello_erb.rtxt'
10
- rubyit.output.should == '../examples/hello_erb.txt'
11
- rubyit.path.should == '../examples/'
12
+ describe RubyIt, "RubyIt" do
13
+ it "hello_erb basic load and parse" do
14
+ rubyit = RubyIt::Document.new("#{@prefix}/../examples/hello_erb.rtxt")
12
15
 
13
- rubyit.erb_text.should == "\n<% 3.times do -%>\n<%= 'hello' %>\n<% end -%>\n"
16
+ rubyit.input.should == "#{@prefix}/../examples/hello_erb.rtxt"
17
+ rubyit.output.should == "#{@prefix}/../examples/hello_erb.txt"
18
+ rubyit.path.should == "#{@prefix}/../examples/"
14
19
 
15
- rubyit.result.should == "hello\nhello\nhello\n"
20
+ rubyit.erb_text.should == "\n<% 3.times do -%>\n<%= 'hello' %>\n<% end -%>\n"
21
+
22
+ rubyit.result.should == "hello\nhello\nhello\n"
23
+ end
16
24
  end
17
- end
18
25
 
19
- describe RubyIt, "#clean_whitespace" do
20
- it "testing whitespace <%" do
21
- rubyit = RubyIt::Document.new('../examples/hello_erb.rtxt')
22
- text = rubyit.clean_whitespace( " <%" )
23
- text.should == '<%'
26
+ describe RubyIt, "#clean_whitespace" do
27
+ it "testing whitespace <%" do
28
+ rubyit = RubyIt::Document.new("#{@prefix}/../examples/hello_erb.rtxt")
29
+ text = rubyit.clean_whitespace( " <%" )
30
+ text.should == '<%'
24
31
 
25
- text = rubyit.clean_whitespace( "\t\t<%" )
26
- text.should == '<%'
32
+ text = rubyit.clean_whitespace( "\t\t<%" )
33
+ text.should == '<%'
27
34
 
28
- text = rubyit.clean_whitespace( " \t \t<%" )
29
- text.should == '<%'
35
+ text = rubyit.clean_whitespace( " \t \t<%" )
36
+ text.should == '<%'
37
+ end
30
38
  end
31
- end
32
39
 
33
- describe RubyIt, "#clean_whitespace" do
34
- it "testing whitespace <%=" do
35
- ## <%= not modified
36
- rubyit = RubyIt::Document.new('../examples/hello_erb.rtxt')
37
- text = rubyit.clean_whitespace( " <%=" )
38
- text.should == ' <%='
40
+ describe RubyIt, "#clean_whitespace" do
41
+ it "testing whitespace <%=" do
42
+ ## <%= not modified
43
+ rubyit = RubyIt::Document.new("#{@prefix}/../examples/hello_erb.rtxt")
44
+ text = rubyit.clean_whitespace( " <%=" )
45
+ text.should == ' <%='
39
46
 
40
- text = rubyit.clean_whitespace( "\t<%=" )
41
- text.should == "\t<%="
47
+ text = rubyit.clean_whitespace( "\t<%=" )
48
+ text.should == "\t<%="
42
49
 
43
- text = rubyit.clean_whitespace( " \t \t<%=" )
44
- text.should == " \t \t<%="
50
+ text = rubyit.clean_whitespace( " \t \t<%=" )
51
+ text.should == " \t \t<%="
52
+ end
45
53
  end
46
- end
47
54
 
48
- describe RubyIt, "#clean_whitespace" do
49
- it "testing whitespace -%>" do
50
- rubyit = RubyIt::Document.new('../examples/hello_erb.rtxt')
51
- text = rubyit.clean_whitespace( " -%> " )
52
- text.should == ' %> '
55
+ describe RubyIt, "#clean_whitespace" do
56
+ it "testing whitespace -%>" do
57
+ rubyit = RubyIt::Document.new("#{@prefix}/../examples/hello_erb.rtxt")
58
+ text = rubyit.clean_whitespace( " -%> " )
59
+ text.should == ' %> '
53
60
 
54
- text = rubyit.clean_whitespace( " -%>\t" )
55
- text.should == " %>\t"
61
+ text = rubyit.clean_whitespace( " -%>\t" )
62
+ text.should == " %>\t"
56
63
 
57
- text = rubyit.clean_whitespace( " -%>\n" )
58
- text.should == " %>"
64
+ text = rubyit.clean_whitespace( " -%>\n" )
65
+ text.should == " %>"
59
66
 
60
- text = rubyit.clean_whitespace( " -%> \n" )
61
- text.should == " %>"
67
+ text = rubyit.clean_whitespace( " -%> \n" )
68
+ text.should == " %>"
62
69
 
63
- text = rubyit.clean_whitespace( " -%>\t\n" )
64
- text.should == " %>"
70
+ text = rubyit.clean_whitespace( " -%>\t\n" )
71
+ text.should == " %>"
65
72
 
66
- text = rubyit.clean_whitespace( " -%> \t \t \n" )
67
- text.should == " %>"
73
+ text = rubyit.clean_whitespace( " -%> \t \t \n" )
74
+ text.should == " %>"
68
75
 
69
- #Only remove one line return
70
- text = rubyit.clean_whitespace( " -%>\n\t \t\n \n \t " )
71
- text.should == " %>\t \t\n \n \t "
76
+ #Only remove one line return
77
+ text = rubyit.clean_whitespace( " -%>\n\t \t\n \n \t " )
78
+ text.should == " %>\t \t\n \n \t "
79
+ end
72
80
  end
73
- end
74
81
 
75
- describe RubyIt, "#clean_whitespace" do
76
- it "testing whitespace -%> not on blank line" do
77
- ## <%= not modified
78
- rubyit = RubyIt::Document.new('../examples/hello_erb.rtxt')
79
- text = rubyit.clean_whitespace( " -%> boo" )
80
- text.should == ' %> boo'
82
+ describe RubyIt, "#clean_whitespace" do
83
+ it "testing whitespace -%> not on blank line" do
84
+ ## <%= not modified
85
+ rubyit = RubyIt::Document.new("#{@prefix}/../examples/hello_erb.rtxt")
86
+ text = rubyit.clean_whitespace( " -%> boo" )
87
+ text.should == ' %> boo'
81
88
 
82
- text = rubyit.clean_whitespace( " -%>\t boo" )
83
- text.should == " %>\t boo"
89
+ text = rubyit.clean_whitespace( " -%>\t boo" )
90
+ text.should == " %>\t boo"
84
91
 
85
- text = rubyit.clean_whitespace( " -%>\n boo" )
86
- text.should == " %> boo"
92
+ text = rubyit.clean_whitespace( " -%>\n boo" )
93
+ text.should == " %> boo"
87
94
 
88
- text = rubyit.clean_whitespace( " -%>\t \t\n\t \t\n \n \t boo" )
89
- text.should == " %>\t \t\n \n \t boo"
95
+ text = rubyit.clean_whitespace( " -%>\t \t\n\t \t\n \n \t boo" )
96
+ text.should == " %>\t \t\n \n \t boo"
97
+ end
90
98
  end
91
- end
92
99
 
93
- ## TODO Complete this test
94
- describe RubyIt, "erb output to file" do
95
- it "example2.erb" do
96
- rubyit = RubyIt::Document.new('../examples/example2.rtxt')
97
- #load file and then make sure it is as expected
100
+ ## TODO Complete this test
101
+ describe RubyIt, "erb output to file" do
102
+ it "example2.erb" do
103
+ rubyit = RubyIt::Document.new("#{@prefix}/../examples/hello_erb.rtxt")
104
+ #load file and then make sure it is as expected
98
105
 
106
+ end
99
107
  end
100
- end
101
108
 
102
109
 
103
- #Check output redirection
104
- describe RubyIt, "Outut file redirection" do
105
- it "set output to ../generated" do
106
- rubyit = RubyIt::Document.new('../examples/hellos.rtxt', '', '../generated')
107
- rubyit.input.should == '../examples/hellos.rtxt'
108
- rubyit.output.should == '../generated/hellos.txt'
109
- rubyit.path.should == '../generated/'
110
- end
110
+ #Check output redirection
111
+ describe RubyIt, "Outut file redirection" do
112
+ it "set output to ../generated" do
113
+ rubyit = RubyIt::Document.new("#{@prefix}/../examples/hellos.rtxt", '', "#{@prefix}/../generated")
114
+ rubyit.input.should == "#{@prefix}/../examples/hellos.rtxt"
115
+ rubyit.output.should == "#{@prefix}/../generated/hellos.txt"
116
+ rubyit.path.should == "#{@prefix}/../generated/"
117
+ end
111
118
 
112
- it "Redirect output after intialisation" do
113
- # TODO
114
- puts "fill in this section"
119
+ it "Redirect output after intialisation" do
120
+ # TODO
121
+ puts "fill in this section"
122
+ end
115
123
  end
116
- end
117
124
 
118
- #Check set_parameter and get_parameters
119
- describe RubyIt, "set and get params" do
120
- it "set and get params" do
121
- rubyit = RubyIt::Document.new('../examples/hellos.rtxt')
122
- rubyit.add_parameter( '@a = 4' )
123
- rubyit.add_parameter( '@b = 5' )
124
- rubyit.add_parameter( '@c = 6' )
125
- params = rubyit.get_parameters
126
- params.should == "<% @a = 4 \n @b = 5 \n @c = 6 \n -%>"
125
+ #Check set_parameter and get_parameters
126
+ describe RubyIt, "set and get params" do
127
+ it "set and get params" do
128
+ rubyit = RubyIt::Document.new("#{@prefix}/../examples/hellos.rtxt")
129
+ rubyit.add_parameter( '@a = 4' )
130
+ rubyit.add_parameter( '@b = 5' )
131
+ rubyit.add_parameter( '@c = 6' )
132
+ params = rubyit.get_parameters
133
+ params.should == "<% @a = 4 \n @b = 5 \n @c = 6 \n -%>"
134
+ end
127
135
  end
128
- end
129
136
 
130
137
 
131
- #Check setting variables for generated erb content
132
- describe RubyIt, "variables inserted into erb" do
133
- it "say 3 Hellos" do
134
- rubyit = RubyIt::Document.new('../examples/hellos.rtxt')
135
- rubyit.add_parameter( '@hellos = 3' )
138
+ #Check setting variables for generated erb content
139
+ describe RubyIt, "variables inserted into erb" do
140
+ it "say 3 Hellos" do
141
+ rubyit = RubyIt::Document.new("#{@prefix}/../examples/hellos.rtxt")
142
+ rubyit.add_parameter( '@hellos = 3' )
136
143
 
137
- rubyit.input.should == '../examples/hellos.rtxt'
138
- rubyit.output.should == '../examples/hellos.txt'
139
- rubyit.path.should == '../examples/'
144
+ rubyit.input.should == "#{@prefix}/../examples/hellos.rtxt"
145
+ rubyit.output.should == "#{@prefix}/../examples/hellos.txt"
146
+ rubyit.path.should == "#{@prefix}/../examples/"
140
147
 
141
- rubyit.erb_text.should == "\n<% @hellos.times do -%>\n<%= 'Hello' %>\n<% end -%>\n"
142
- #puts rubyit.result
143
- rubyit.result.should == "Hello\nHello\nHello\n"
148
+ rubyit.erb_text.should == "\n<% @hellos.times do -%>\n<%= 'Hello' %>\n<% end -%>\n"
149
+ #puts rubyit.result
150
+ rubyit.result.should == "Hello\nHello\nHello\n"
144
151
 
145
- end
146
- it "say 4 hellos" do
147
- rubyit = RubyIt::Document.new('../examples/hellos.rtxt')
148
- rubyit.add_parameter( '@hellos = 4' )
149
- rubyit.result.should == "Hello\nHello\nHello\nHello\n"
152
+ end
153
+ it "say 4 hellos" do
154
+ rubyit = RubyIt::Document.new("#{@prefix}/../examples/hellos.rtxt")
155
+ rubyit.add_parameter( '@hellos = 4' )
156
+ rubyit.result.should == "Hello\nHello\nHello\nHello\n"
150
157
 
151
- end
152
- it "say 0 hellos" do
153
- rubyit = RubyIt::Document.new('../examples/hellos.rtxt')
154
- rubyit.add_parameter( '@hellos = 0' )
155
- rubyit.result.should == ""
158
+ end
159
+ it "say 0 hellos" do
160
+ rubyit = RubyIt::Document.new("#{@prefix}/../examples/hellos.rtxt")
161
+ rubyit.add_parameter( '@hellos = 0' )
162
+ rubyit.result.should == ""
156
163
 
164
+ end
157
165
  end
158
166
  end
159
-
160
167
  #Check file creation
@@ -0,0 +1,6 @@
1
+ $LOAD_PATH.unshift File.join(File.dirname(__FILE__), '..', 'lib')
2
+
3
+ require 'rspec'
4
+ require 'ruby_it'
5
+
6
+
metadata CHANGED
@@ -1,77 +1,64 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: ruby_it
3
- version: !ruby/object:Gem::Version
4
- hash: 27
5
- prerelease: false
6
- segments:
7
- - 0
8
- - 1
9
- - 0
10
- version: 0.1.0
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.2.0
5
+ prerelease:
11
6
  platform: ruby
12
- authors:
7
+ authors:
13
8
  - Morgan Prior
14
9
  autorequire:
15
10
  bindir: bin
16
11
  cert_chain: []
17
-
18
- date: 2010-12-18 00:00:00 +00:00
12
+ date: 2011-08-23 00:00:00.000000000 +01:00
19
13
  default_executable:
20
14
  dependencies: []
21
-
22
- description: " Comand Line Interface (CLI) and Object class can be used to evaluate erb template files\n file.rtxt will be turnealuated and written as file.txt\n"
15
+ description: ! " Comand Line Interface (CLI) and Object class can be used to evaluate
16
+ erb template files\n file.rtxt will be evaluated and written as file.txt\n"
23
17
  email: ruby_it_gem@amaras-tech.co.uk
24
- executables:
18
+ executables:
25
19
  - ruby_it
26
20
  extensions: []
27
-
28
21
  extra_rdoc_files: []
29
-
30
- files:
22
+ files:
31
23
  - bin/ruby_it
32
24
  - LICENSE.rtf
33
25
  - examples/example2.rtxt
34
26
  - examples/example2.txt
27
+ - examples/example3.conf
28
+ - examples/example3.rtxt
35
29
  - examples/hello_erb.rtxt
36
30
  - examples/hellos.rtxt
31
+ - examples/hellos.txt
37
32
  - lib/ruby_it/document.rb
38
33
  - lib/ruby_it/ruby_it_options.rb
39
34
  - lib/ruby_it.rb
40
35
  - spec/cli_spec.rb
41
36
  - spec/ruby_it_spec.rb
37
+ - spec/spec_helper.rb
42
38
  has_rdoc: true
43
39
  homepage: http://amaras-tech.co.uk/software/RubyIt
44
40
  licenses: []
45
-
46
- post_install_message: To use 'ruby_it' as a executable application the gems folder must be on your path
41
+ post_install_message: To use 'ruby_it' as a executable application the gems folder
42
+ must be on your path
47
43
  rdoc_options: []
48
-
49
- require_paths:
44
+ require_paths:
50
45
  - lib
51
- required_ruby_version: !ruby/object:Gem::Requirement
46
+ required_ruby_version: !ruby/object:Gem::Requirement
52
47
  none: false
53
- requirements:
54
- - - ">="
55
- - !ruby/object:Gem::Version
56
- hash: 3
57
- segments:
58
- - 0
59
- version: "0"
60
- required_rubygems_version: !ruby/object:Gem::Requirement
48
+ requirements:
49
+ - - ! '>='
50
+ - !ruby/object:Gem::Version
51
+ version: '0'
52
+ required_rubygems_version: !ruby/object:Gem::Requirement
61
53
  none: false
62
- requirements:
63
- - - ">="
64
- - !ruby/object:Gem::Version
65
- hash: 3
66
- segments:
67
- - 0
68
- version: "0"
54
+ requirements:
55
+ - - ! '>='
56
+ - !ruby/object:Gem::Version
57
+ version: '0'
69
58
  requirements: []
70
-
71
59
  rubyforge_project:
72
- rubygems_version: 1.3.7
60
+ rubygems_version: 1.6.2
73
61
  signing_key:
74
62
  specification_version: 3
75
63
  summary: Executable and Object class to evaluate erb templates
76
64
  test_files: []
77
-