hobosupport 1.0.2 → 1.0.3

Sign up to get free protection for your applications and to get access to all the features.
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
- RUBYDOCTEST = ENV['RUBYDOCTEST'] || "#{RUBY} -S rubydoctest"
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
@@ -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.0.3"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") 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
@@ -1,6 +1,6 @@
1
1
  module HoboSupport
2
2
 
3
- VERSION = "1.0.2"
3
+ VERSION = "1.0.3"
4
4
 
5
5
  RAILS_VERSION_FLOAT = Object.const_defined?(:Rails) ? Rails::VERSION::STRING.match(/^\d+\.\d+/)[0].to_f : 0
6
6
 
@@ -8,7 +8,7 @@ HoboSupport is a mixed bag of core ruby extensions that have been extracted from
8
8
  {.hidden}
9
9
 
10
10
  >> HoboSupport::VERSION
11
- => "1.0.2"
11
+ => "1.0.3"
12
12
 
13
13
  ## Contents
14
14
 
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hobosupport
3
3
  version: !ruby/object:Gem::Version
4
- hash: 19
5
- prerelease: false
4
+ hash: 17
5
+ prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 0
9
- - 2
10
- version: 1.0.2
9
+ - 3
10
+ version: 1.0.3
11
11
  platform: ruby
12
12
  authors:
13
13
  - Tom Locke
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2010-11-12 00:00:00 -05:00
18
+ date: 2011-02-25 00:00:00 -05:00
19
19
  default_executable:
20
20
  dependencies: []
21
21
 
@@ -31,6 +31,7 @@ files:
31
31
  - CHANGES.txt
32
32
  - README.txt
33
33
  - Rakefile
34
+ - hobosupport.gemspec
34
35
  - lib/hobo_support.rb
35
36
  - lib/hobo_support/array.rb
36
37
  - lib/hobo_support/blankslate.rb
@@ -59,8 +60,8 @@ homepage: http://hobocentral.net/
59
60
  licenses: []
60
61
 
61
62
  post_install_message:
62
- rdoc_options:
63
- - --charset=UTF-8
63
+ rdoc_options: []
64
+
64
65
  require_paths:
65
66
  - lib
66
67
  required_ruby_version: !ruby/object:Gem::Requirement
@@ -84,7 +85,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
84
85
  requirements: []
85
86
 
86
87
  rubyforge_project: hobosupport
87
- rubygems_version: 1.3.7
88
+ rubygems_version: 1.4.2
88
89
  signing_key:
89
90
  specification_version: 3
90
91
  summary: Core Ruby extensions from the Hobo project