the-perfect-gem 3.1.6 → 3.1.15
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +4 -0
- data/Rakefile +2 -6
- data/VERSION +1 -0
- data/VERSION.yml +1 -1
- data/the-perfect-gem.gemspec +47 -0
- metadata +12 -7
data/.gitignore
ADDED
data/Rakefile
CHANGED
@@ -7,17 +7,13 @@ begin
|
|
7
7
|
require 'jeweler'
|
8
8
|
Jeweler::Tasks.new do |s|
|
9
9
|
s.name = "the-perfect-gem"
|
10
|
-
s.summary = "
|
10
|
+
s.summary = "the perfect gem (a testing gem for jeweler)"
|
11
11
|
s.email = "josh@technicalpickles.com"
|
12
12
|
s.homepage = "http://github.com/technicalpickles/the-perfect-gem"
|
13
|
-
s.description = "TODO"
|
14
13
|
s.rubyforge_project = 'pickles'
|
15
14
|
s.authors = ["Josh Nichols"]
|
16
15
|
end
|
17
|
-
Jeweler::RubyforgeTasks.new
|
18
|
-
rubyforge.project = 'pickles'
|
19
|
-
rubyforge.package = 'the-perfect-gem'
|
20
|
-
end
|
16
|
+
Jeweler::RubyforgeTasks.new
|
21
17
|
rescue LoadError
|
22
18
|
puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
|
23
19
|
end
|
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
3.1.9
|
data/VERSION.yml
CHANGED
@@ -0,0 +1,47 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
|
3
|
+
Gem::Specification.new do |s|
|
4
|
+
s.name = %q{the-perfect-gem}
|
5
|
+
s.version = "3.1.15"
|
6
|
+
|
7
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
8
|
+
s.authors = ["Josh Nichols"]
|
9
|
+
s.date = %q{2009-08-01}
|
10
|
+
s.email = %q{josh@technicalpickles.com}
|
11
|
+
s.extra_rdoc_files = [
|
12
|
+
"LICENSE",
|
13
|
+
"README"
|
14
|
+
]
|
15
|
+
s.files = [
|
16
|
+
".gitignore",
|
17
|
+
"LICENSE",
|
18
|
+
"README",
|
19
|
+
"Rakefile",
|
20
|
+
"VERSION",
|
21
|
+
"VERSION.yml",
|
22
|
+
"lib/the_perfect_gem.rb",
|
23
|
+
"test/test_helper.rb",
|
24
|
+
"test/the_perfect_gem_test.rb",
|
25
|
+
"the-perfect-gem.gemspec"
|
26
|
+
]
|
27
|
+
s.homepage = %q{http://github.com/technicalpickles/the-perfect-gem}
|
28
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
29
|
+
s.require_paths = ["lib"]
|
30
|
+
s.rubyforge_project = %q{pickles}
|
31
|
+
s.rubygems_version = %q{1.3.5}
|
32
|
+
s.summary = %q{the perfect gem (a testing gem for jeweler)}
|
33
|
+
s.test_files = [
|
34
|
+
"test/test_helper.rb",
|
35
|
+
"test/the_perfect_gem_test.rb"
|
36
|
+
]
|
37
|
+
|
38
|
+
if s.respond_to? :specification_version then
|
39
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
40
|
+
s.specification_version = 3
|
41
|
+
|
42
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
43
|
+
else
|
44
|
+
end
|
45
|
+
else
|
46
|
+
end
|
47
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: the-perfect-gem
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.1.
|
4
|
+
version: 3.1.15
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Josh Nichols
|
@@ -9,11 +9,11 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-
|
12
|
+
date: 2009-08-01 00:00:00 -04:00
|
13
13
|
default_executable:
|
14
14
|
dependencies: []
|
15
15
|
|
16
|
-
description:
|
16
|
+
description:
|
17
17
|
email: josh@technicalpickles.com
|
18
18
|
executables: []
|
19
19
|
|
@@ -23,15 +23,20 @@ extra_rdoc_files:
|
|
23
23
|
- LICENSE
|
24
24
|
- README
|
25
25
|
files:
|
26
|
+
- .gitignore
|
26
27
|
- LICENSE
|
28
|
+
- README
|
27
29
|
- Rakefile
|
30
|
+
- VERSION
|
28
31
|
- VERSION.yml
|
29
32
|
- lib/the_perfect_gem.rb
|
30
33
|
- test/test_helper.rb
|
31
34
|
- test/the_perfect_gem_test.rb
|
32
|
-
-
|
35
|
+
- the-perfect-gem.gemspec
|
33
36
|
has_rdoc: true
|
34
37
|
homepage: http://github.com/technicalpickles/the-perfect-gem
|
38
|
+
licenses: []
|
39
|
+
|
35
40
|
post_install_message:
|
36
41
|
rdoc_options:
|
37
42
|
- --charset=UTF-8
|
@@ -52,10 +57,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
52
57
|
requirements: []
|
53
58
|
|
54
59
|
rubyforge_project: pickles
|
55
|
-
rubygems_version: 1.3.
|
60
|
+
rubygems_version: 1.3.5
|
56
61
|
signing_key:
|
57
|
-
specification_version:
|
58
|
-
summary:
|
62
|
+
specification_version: 3
|
63
|
+
summary: the perfect gem (a testing gem for jeweler)
|
59
64
|
test_files:
|
60
65
|
- test/test_helper.rb
|
61
66
|
- test/the_perfect_gem_test.rb
|