gmallard_test_hw01 0.0.3 → 0.0.4

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/Rakefile CHANGED
@@ -11,6 +11,10 @@ begin
11
11
  gem.homepage = "http://github.com/gmallard/gmallard_test_hw01"
12
12
  gem.authors = ["gmallard"]
13
13
  # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
14
+ gem.files = [ "README.rdoc", "LICENSE", "Rakefile", "VERSION" ]
15
+ gem.files += Dir['lib/**/*.rb']
16
+ gem.files += Dir['test/**/*.rb']
17
+ gem.files.reject! { |fn| fn.include? ".gitignore" }
14
18
  end
15
19
  Jeweler::GemcutterTasks.new
16
20
  rescue LoadError
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.3
1
+ 0.0.4
@@ -1,4 +1,9 @@
1
- require 'helper'
1
+ if RUBY_VERSION =~ /1\.9/
2
+ require_relative 'helper'
3
+ else
4
+ $:.unshift(File.dirname(__FILE__))
5
+ require 'helper'
6
+ end
2
7
 
3
8
  class TestGmallardTestHw01 < Test::Unit::TestCase
4
9
  #
metadata CHANGED
@@ -1,12 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gmallard_test_hw01
3
3
  version: !ruby/object:Gem::Version
4
- prerelease: false
4
+ hash: 23
5
+ prerelease:
5
6
  segments:
6
7
  - 0
7
8
  - 0
8
- - 3
9
- version: 0.0.3
9
+ - 4
10
+ version: 0.0.4
10
11
  platform: ruby
11
12
  authors:
12
13
  - gmallard
@@ -14,7 +15,7 @@ autorequire:
14
15
  bindir: bin
15
16
  cert_chain: []
16
17
 
17
- date: 2010-05-20 00:00:00 -04:00
18
+ date: 2011-01-11 00:00:00 -05:00
18
19
  default_executable:
19
20
  dependencies: []
20
21
 
@@ -28,13 +29,10 @@ extra_rdoc_files:
28
29
  - LICENSE
29
30
  - README.rdoc
30
31
  files:
31
- - .document
32
- - .gitignore
33
32
  - LICENSE
34
33
  - README.rdoc
35
34
  - Rakefile
36
35
  - VERSION
37
- - gmallard_test_hw01.gemspec
38
36
  - lib/gmallard_test_hw01.rb
39
37
  - test/helper.rb
40
38
  - test/test_gmallard_test_hw01.rb
@@ -43,28 +41,32 @@ homepage: http://github.com/gmallard/gmallard_test_hw01
43
41
  licenses: []
44
42
 
45
43
  post_install_message:
46
- rdoc_options:
47
- - --charset=UTF-8
44
+ rdoc_options: []
45
+
48
46
  require_paths:
49
47
  - lib
50
48
  required_ruby_version: !ruby/object:Gem::Requirement
49
+ none: false
51
50
  requirements:
52
51
  - - ">="
53
52
  - !ruby/object:Gem::Version
53
+ hash: 3
54
54
  segments:
55
55
  - 0
56
56
  version: "0"
57
57
  required_rubygems_version: !ruby/object:Gem::Requirement
58
+ none: false
58
59
  requirements:
59
60
  - - ">="
60
61
  - !ruby/object:Gem::Version
62
+ hash: 3
61
63
  segments:
62
64
  - 0
63
65
  version: "0"
64
66
  requirements: []
65
67
 
66
68
  rubyforge_project:
67
- rubygems_version: 1.3.6
69
+ rubygems_version: 1.4.1
68
70
  signing_key:
69
71
  specification_version: 3
70
72
  summary: A short test hello world gem.
data/.document DELETED
@@ -1,5 +0,0 @@
1
- README.rdoc
2
- lib/**/*.rb
3
- bin/*
4
- features/**/*.feature
5
- LICENSE
data/.gitignore DELETED
@@ -1,21 +0,0 @@
1
- ## MAC OS
2
- .DS_Store
3
-
4
- ## TEXTMATE
5
- *.tmproj
6
- tmtags
7
-
8
- ## EMACS
9
- *~
10
- \#*
11
- .\#*
12
-
13
- ## VIM
14
- *.swp
15
-
16
- ## PROJECT::GENERAL
17
- coverage
18
- rdoc
19
- pkg
20
-
21
- ## PROJECT::SPECIFIC
@@ -1,51 +0,0 @@
1
- # Generated by jeweler
2
- # DO NOT EDIT THIS FILE DIRECTLY
3
- # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
4
- # -*- encoding: utf-8 -*-
5
-
6
- Gem::Specification.new do |s|
7
- s.name = %q{gmallard_test_hw01}
8
- s.version = "0.0.3"
9
-
10
- s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
- s.authors = ["gmallard"]
12
- s.date = %q{2010-05-20}
13
- s.description = %q{A test gem destined for gemcutter.org.}
14
- s.email = %q{allard.guy.m@gmail.com}
15
- s.extra_rdoc_files = [
16
- "LICENSE",
17
- "README.rdoc"
18
- ]
19
- s.files = [
20
- ".document",
21
- ".gitignore",
22
- "LICENSE",
23
- "README.rdoc",
24
- "Rakefile",
25
- "VERSION",
26
- "gmallard_test_hw01.gemspec",
27
- "lib/gmallard_test_hw01.rb",
28
- "test/helper.rb",
29
- "test/test_gmallard_test_hw01.rb"
30
- ]
31
- s.homepage = %q{http://github.com/gmallard/gmallard_test_hw01}
32
- s.rdoc_options = ["--charset=UTF-8"]
33
- s.require_paths = ["lib"]
34
- s.rubygems_version = %q{1.3.6}
35
- s.summary = %q{A short test hello world gem.}
36
- s.test_files = [
37
- "test/helper.rb",
38
- "test/test_gmallard_test_hw01.rb"
39
- ]
40
-
41
- if s.respond_to? :specification_version then
42
- current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
43
- s.specification_version = 3
44
-
45
- if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
46
- else
47
- end
48
- else
49
- end
50
- end
51
-