hobosupport 1.1.0.pre3 → 1.1.0.pre4
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +5 -4
- data/hobosupport.gemspec +58 -0
- data/lib/hobo_support.rb +1 -1
- data/test/hobosupport.rdoctest +1 -1
- metadata +10 -8
data/Rakefile
CHANGED
@@ -3,7 +3,11 @@ ActiveRecord::ActiveRecordError # hack for https://rails.lighthouseapp.com/proje
|
|
3
3
|
require File.dirname(__FILE__) + '/lib/hobo_support.rb'
|
4
4
|
|
5
5
|
RUBY = File.join(Config::CONFIG['bindir'], Config::CONFIG['ruby_install_name']).sub(/.*\s.*/m, '"\&"')
|
6
|
-
|
6
|
+
if defined?(Bundler)
|
7
|
+
RUBYDOCTEST = 'bundle exec rubydoctest'
|
8
|
+
else
|
9
|
+
RUBYDOCTEST = ENV['RUBYDOCTEST'] || "#{RUBY} -S rubydoctest"
|
10
|
+
end
|
7
11
|
|
8
12
|
namespace "test" do
|
9
13
|
desc "Run the doctests"
|
@@ -26,6 +30,3 @@ Jeweler::Tasks.new do |gemspec|
|
|
26
30
|
gemspec.rubyforge_project = "hobosupport"
|
27
31
|
end
|
28
32
|
Jeweler::GemcutterTasks.new
|
29
|
-
Jeweler::RubyforgeTasks.new do |rubyforge|
|
30
|
-
rubyforge.doc_task = false
|
31
|
-
end
|
data/hobosupport.gemspec
ADDED
@@ -0,0 +1,58 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
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{hobosupport}
|
8
|
+
s.version = "1.1.0.pre4"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["Tom Locke"]
|
12
|
+
s.date = %q{2011-02-25}
|
13
|
+
s.email = %q{tom@tomlocke.com}
|
14
|
+
s.files = [
|
15
|
+
"CHANGES.txt",
|
16
|
+
"README.txt",
|
17
|
+
"Rakefile",
|
18
|
+
"hobosupport.gemspec",
|
19
|
+
"lib/hobo_support.rb",
|
20
|
+
"lib/hobo_support/array.rb",
|
21
|
+
"lib/hobo_support/blankslate.rb",
|
22
|
+
"lib/hobo_support/enumerable.rb",
|
23
|
+
"lib/hobo_support/fixes.rb",
|
24
|
+
"lib/hobo_support/fixes/chronic.rb",
|
25
|
+
"lib/hobo_support/fixes/module.rb",
|
26
|
+
"lib/hobo_support/fixes/pp.rb",
|
27
|
+
"lib/hobo_support/hash.rb",
|
28
|
+
"lib/hobo_support/implies.rb",
|
29
|
+
"lib/hobo_support/metaid.rb",
|
30
|
+
"lib/hobo_support/methodcall.rb",
|
31
|
+
"lib/hobo_support/methodphitamine.rb",
|
32
|
+
"lib/hobo_support/module.rb",
|
33
|
+
"lib/hobo_support/string.rb",
|
34
|
+
"lib/hobosupport.rb",
|
35
|
+
"test/hobosupport.rdoctest",
|
36
|
+
"test/hobosupport/enumerable.rdoctest",
|
37
|
+
"test/hobosupport/hash.rdoctest",
|
38
|
+
"test/hobosupport/implies.rdoctest",
|
39
|
+
"test/hobosupport/metaid.rdoctest",
|
40
|
+
"test/hobosupport/methodphitamine.rdoctest",
|
41
|
+
"test/hobosupport/module.rdoctest"
|
42
|
+
]
|
43
|
+
s.homepage = %q{http://hobocentral.net/}
|
44
|
+
s.require_paths = ["lib"]
|
45
|
+
s.rubyforge_project = %q{hobosupport}
|
46
|
+
s.rubygems_version = %q{1.4.2}
|
47
|
+
s.summary = %q{Core Ruby extensions from the Hobo project}
|
48
|
+
|
49
|
+
if s.respond_to? :specification_version then
|
50
|
+
s.specification_version = 3
|
51
|
+
|
52
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
53
|
+
else
|
54
|
+
end
|
55
|
+
else
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
data/lib/hobo_support.rb
CHANGED
data/test/hobosupport.rdoctest
CHANGED
metadata
CHANGED
@@ -1,14 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hobosupport
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
5
|
-
prerelease:
|
4
|
+
hash: 1923831953
|
5
|
+
prerelease: 6
|
6
6
|
segments:
|
7
7
|
- 1
|
8
8
|
- 1
|
9
9
|
- 0
|
10
|
-
-
|
11
|
-
|
10
|
+
- pre
|
11
|
+
- 4
|
12
|
+
version: 1.1.0.pre4
|
12
13
|
platform: ruby
|
13
14
|
authors:
|
14
15
|
- Tom Locke
|
@@ -16,7 +17,7 @@ autorequire:
|
|
16
17
|
bindir: bin
|
17
18
|
cert_chain: []
|
18
19
|
|
19
|
-
date: 2011-
|
20
|
+
date: 2011-02-25 00:00:00 -05:00
|
20
21
|
default_executable:
|
21
22
|
dependencies: []
|
22
23
|
|
@@ -32,6 +33,7 @@ files:
|
|
32
33
|
- CHANGES.txt
|
33
34
|
- README.txt
|
34
35
|
- Rakefile
|
36
|
+
- hobosupport.gemspec
|
35
37
|
- lib/hobo_support.rb
|
36
38
|
- lib/hobo_support/array.rb
|
37
39
|
- lib/hobo_support/blankslate.rb
|
@@ -60,8 +62,8 @@ homepage: http://hobocentral.net/
|
|
60
62
|
licenses: []
|
61
63
|
|
62
64
|
post_install_message:
|
63
|
-
rdoc_options:
|
64
|
-
|
65
|
+
rdoc_options: []
|
66
|
+
|
65
67
|
require_paths:
|
66
68
|
- lib
|
67
69
|
required_ruby_version: !ruby/object:Gem::Requirement
|
@@ -87,7 +89,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
87
89
|
requirements: []
|
88
90
|
|
89
91
|
rubyforge_project: hobosupport
|
90
|
-
rubygems_version: 1.
|
92
|
+
rubygems_version: 1.4.2
|
91
93
|
signing_key:
|
92
94
|
specification_version: 3
|
93
95
|
summary: Core Ruby extensions from the Hobo project
|