bkerley-have-code 0.1.1 → 0.1.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/.document +5 -0
- data/.gitignore +5 -0
- data/VERSION.yml +1 -1
- data/have-code.gemspec +57 -0
- metadata +5 -2
data/.document
ADDED
data/VERSION.yml
CHANGED
data/have-code.gemspec
ADDED
@@ -0,0 +1,57 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
|
3
|
+
Gem::Specification.new do |s|
|
4
|
+
s.name = %q{have-code}
|
5
|
+
s.version = "0.1.2"
|
6
|
+
|
7
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
8
|
+
s.authors = ["Bryce Kerley"]
|
9
|
+
s.date = %q{2009-05-18}
|
10
|
+
s.email = %q{bkerley@brycekerley.net}
|
11
|
+
s.extra_rdoc_files = [
|
12
|
+
"LICENSE",
|
13
|
+
"README.rdoc"
|
14
|
+
]
|
15
|
+
s.files = [
|
16
|
+
".document",
|
17
|
+
".gitignore",
|
18
|
+
"LICENSE",
|
19
|
+
"README.rdoc",
|
20
|
+
"Rakefile",
|
21
|
+
"VERSION.yml",
|
22
|
+
"have-code.gemspec",
|
23
|
+
"lib/have-code.rb",
|
24
|
+
"lib/have-code/ar_code.rb",
|
25
|
+
"lib/have-code/dm_code.rb",
|
26
|
+
"test/active_record_helper.rb",
|
27
|
+
"test/data_mapper_helper.rb",
|
28
|
+
"test/have_code_test.rb",
|
29
|
+
"test/test_helper.rb"
|
30
|
+
]
|
31
|
+
s.has_rdoc = true
|
32
|
+
s.homepage = %q{http://github.com/bkerley/have-code}
|
33
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
34
|
+
s.require_paths = ["lib"]
|
35
|
+
s.rubyforge_project = %q{have-code}
|
36
|
+
s.rubygems_version = %q{1.3.1}
|
37
|
+
s.summary = %q{TODO}
|
38
|
+
s.test_files = [
|
39
|
+
"test/active_record_helper.rb",
|
40
|
+
"test/data_mapper_helper.rb",
|
41
|
+
"test/have_code_test.rb",
|
42
|
+
"test/test_helper.rb"
|
43
|
+
]
|
44
|
+
|
45
|
+
if s.respond_to? :specification_version then
|
46
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
47
|
+
s.specification_version = 2
|
48
|
+
|
49
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
50
|
+
s.add_runtime_dependency(%q<bkerley-affine>, [">= 0"])
|
51
|
+
else
|
52
|
+
s.add_dependency(%q<bkerley-affine>, [">= 0"])
|
53
|
+
end
|
54
|
+
else
|
55
|
+
s.add_dependency(%q<bkerley-affine>, [">= 0"])
|
56
|
+
end
|
57
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bkerley-have-code
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Bryce Kerley
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-05-
|
12
|
+
date: 2009-05-18 00:00:00 -07:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -32,10 +32,13 @@ extra_rdoc_files:
|
|
32
32
|
- LICENSE
|
33
33
|
- README.rdoc
|
34
34
|
files:
|
35
|
+
- .document
|
36
|
+
- .gitignore
|
35
37
|
- LICENSE
|
36
38
|
- README.rdoc
|
37
39
|
- Rakefile
|
38
40
|
- VERSION.yml
|
41
|
+
- have-code.gemspec
|
39
42
|
- lib/have-code.rb
|
40
43
|
- lib/have-code/ar_code.rb
|
41
44
|
- lib/have-code/dm_code.rb
|