bkerley-template_class 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
data/Manifest.txt CHANGED
@@ -1,11 +1,8 @@
1
1
  History.txt
2
2
  Manifest.txt
3
- PostInstall.txt
4
3
  README.rdoc
5
4
  Rakefile
6
5
  lib/template_class.rb
7
6
  script/console
8
- script/destroy
9
- script/generate
10
7
  test/test_helper.rb
11
8
  test/test_template_class.rb
@@ -6,5 +6,5 @@ def TemplateClass(name, cells)
6
6
  end
7
7
 
8
8
  module TemplateClass
9
- VERSION = '0.0.1'
9
+ VERSION = '0.0.2'
10
10
  end
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.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
- - FIXME full name
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
- - FIXME email
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: PostInstall.txt
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)