bkerley-template_class 0.0.1 → 0.0.2
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/Manifest.txt +0 -3
- data/lib/template_class.rb +1 -1
- metadata +4 -8
- data/script/destroy +0 -14
- data/script/generate +0 -14
data/Manifest.txt
CHANGED
data/lib/template_class.rb
CHANGED
metadata
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bkerley-template_class
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
|
-
-
|
|
7
|
+
- Bryce Kerley
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
@@ -32,7 +32,7 @@ dependencies:
|
|
|
32
32
|
version:
|
|
33
33
|
description: Produces template classes suitable for passing to form_for
|
|
34
34
|
email:
|
|
35
|
-
-
|
|
35
|
+
- bkerley@brycekerley.net
|
|
36
36
|
executables: []
|
|
37
37
|
|
|
38
38
|
extensions: []
|
|
@@ -40,23 +40,19 @@ extensions: []
|
|
|
40
40
|
extra_rdoc_files:
|
|
41
41
|
- History.txt
|
|
42
42
|
- Manifest.txt
|
|
43
|
-
- PostInstall.txt
|
|
44
43
|
- README.rdoc
|
|
45
44
|
files:
|
|
46
45
|
- History.txt
|
|
47
46
|
- Manifest.txt
|
|
48
|
-
- PostInstall.txt
|
|
49
47
|
- README.rdoc
|
|
50
48
|
- Rakefile
|
|
51
49
|
- lib/template_class.rb
|
|
52
50
|
- script/console
|
|
53
|
-
- script/destroy
|
|
54
|
-
- script/generate
|
|
55
51
|
- test/test_helper.rb
|
|
56
52
|
- test/test_template_class.rb
|
|
57
53
|
has_rdoc: true
|
|
58
54
|
homepage: http://github.com/bkerley/template_class/tree/master
|
|
59
|
-
post_install_message:
|
|
55
|
+
post_install_message:
|
|
60
56
|
rdoc_options:
|
|
61
57
|
- --main
|
|
62
58
|
- README.rdoc
|
data/script/destroy
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env ruby
|
|
2
|
-
APP_ROOT = File.expand_path(File.join(File.dirname(__FILE__), '..'))
|
|
3
|
-
|
|
4
|
-
begin
|
|
5
|
-
require 'rubigen'
|
|
6
|
-
rescue LoadError
|
|
7
|
-
require 'rubygems'
|
|
8
|
-
require 'rubigen'
|
|
9
|
-
end
|
|
10
|
-
require 'rubigen/scripts/destroy'
|
|
11
|
-
|
|
12
|
-
ARGV.shift if ['--help', '-h'].include?(ARGV[0])
|
|
13
|
-
RubiGen::Base.use_component_sources! [:rubygems, :newgem, :newgem_theme, :test_unit]
|
|
14
|
-
RubiGen::Scripts::Destroy.new.run(ARGV)
|
data/script/generate
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env ruby
|
|
2
|
-
APP_ROOT = File.expand_path(File.join(File.dirname(__FILE__), '..'))
|
|
3
|
-
|
|
4
|
-
begin
|
|
5
|
-
require 'rubigen'
|
|
6
|
-
rescue LoadError
|
|
7
|
-
require 'rubygems'
|
|
8
|
-
require 'rubigen'
|
|
9
|
-
end
|
|
10
|
-
require 'rubigen/scripts/generate'
|
|
11
|
-
|
|
12
|
-
ARGV.shift if ['--help', '-h'].include?(ARGV[0])
|
|
13
|
-
RubiGen::Base.use_component_sources! [:rubygems, :newgem, :newgem_theme, :test_unit]
|
|
14
|
-
RubiGen::Scripts::Generate.new.run(ARGV)
|