plank 0.0.0 → 0.0.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/VERSION +1 -1
- data/bin/plank +3 -0
- data/lib/plank.rb +1 -0
- data/plank.gemspec +55 -0
- metadata +6 -4
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0.
|
|
1
|
+
0.0.1
|
data/bin/plank
ADDED
data/lib/plank.rb
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
puts 'Plank'
|
data/plank.gemspec
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
# Generated by jeweler
|
|
2
|
+
# DO NOT EDIT THIS FILE
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
|
|
4
|
+
# -*- encoding: utf-8 -*-
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |s|
|
|
7
|
+
s.name = %q{plank}
|
|
8
|
+
s.version = "0.0.1"
|
|
9
|
+
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
+
s.authors = ["Jim Neath"]
|
|
12
|
+
s.date = %q{2009-10-13}
|
|
13
|
+
s.default_executable = %q{plank}
|
|
14
|
+
s.description = %q{I will fill this in later}
|
|
15
|
+
s.email = %q{jimneath@googlemail.com}
|
|
16
|
+
s.executables = ["plank"]
|
|
17
|
+
s.extra_rdoc_files = [
|
|
18
|
+
"LICENSE"
|
|
19
|
+
]
|
|
20
|
+
s.files = [
|
|
21
|
+
".document",
|
|
22
|
+
".gitignore",
|
|
23
|
+
"LICENSE",
|
|
24
|
+
"Rakefile",
|
|
25
|
+
"VERSION",
|
|
26
|
+
"bin/plank",
|
|
27
|
+
"lib/plank.rb",
|
|
28
|
+
"plank.gemspec",
|
|
29
|
+
"readme.textile",
|
|
30
|
+
"spec/plank_spec.rb",
|
|
31
|
+
"spec/spec_helper.rb"
|
|
32
|
+
]
|
|
33
|
+
s.homepage = %q{http://github.com/JimNeath/plank}
|
|
34
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
|
35
|
+
s.require_paths = ["lib"]
|
|
36
|
+
s.rubygems_version = %q{1.3.5}
|
|
37
|
+
s.summary = %q{Generate useful scaffolds for existing models}
|
|
38
|
+
s.test_files = [
|
|
39
|
+
"spec/plank_spec.rb",
|
|
40
|
+
"spec/spec_helper.rb"
|
|
41
|
+
]
|
|
42
|
+
|
|
43
|
+
if s.respond_to? :specification_version then
|
|
44
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
45
|
+
s.specification_version = 3
|
|
46
|
+
|
|
47
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
|
48
|
+
s.add_development_dependency(%q<rspec>, [">= 0"])
|
|
49
|
+
else
|
|
50
|
+
s.add_dependency(%q<rspec>, [">= 0"])
|
|
51
|
+
end
|
|
52
|
+
else
|
|
53
|
+
s.add_dependency(%q<rspec>, [">= 0"])
|
|
54
|
+
end
|
|
55
|
+
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: plank
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jim Neath
|
|
@@ -10,7 +10,7 @@ bindir: bin
|
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
12
|
date: 2009-10-13 00:00:00 +01:00
|
|
13
|
-
default_executable:
|
|
13
|
+
default_executable: plank
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: rspec
|
|
@@ -24,8 +24,8 @@ dependencies:
|
|
|
24
24
|
version:
|
|
25
25
|
description: I will fill this in later
|
|
26
26
|
email: jimneath@googlemail.com
|
|
27
|
-
executables:
|
|
28
|
-
|
|
27
|
+
executables:
|
|
28
|
+
- plank
|
|
29
29
|
extensions: []
|
|
30
30
|
|
|
31
31
|
extra_rdoc_files:
|
|
@@ -36,7 +36,9 @@ files:
|
|
|
36
36
|
- LICENSE
|
|
37
37
|
- Rakefile
|
|
38
38
|
- VERSION
|
|
39
|
+
- bin/plank
|
|
39
40
|
- lib/plank.rb
|
|
41
|
+
- plank.gemspec
|
|
40
42
|
- readme.textile
|
|
41
43
|
- spec/plank_spec.rb
|
|
42
44
|
- spec/spec_helper.rb
|