testopia 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. data/Rakefile +1 -1
  2. data/VERSION +1 -1
  3. data/test/helper.rb +1 -1
  4. data/testopia.gemspec +56 -0
  5. metadata +11 -19
data/Rakefile CHANGED
@@ -8,7 +8,7 @@ begin
8
8
  gem.summary = %Q{Because laziness is the new cuil}
9
9
  gem.description = %Q{a collection of test helpers for Ohm, Sinatra, Rack}
10
10
  gem.email = "cyx.ucron@gmail.com"
11
- gem.homepage = "http://github.com/cyx/testopia"
11
+ gem.homepage = "http://github.com/sinefunc/testopia"
12
12
  gem.authors = ["Cyril David"]
13
13
  gem.add_development_dependency "contest"
14
14
  end
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.0
1
+ 0.1.1
@@ -1,6 +1,6 @@
1
1
  require 'rubygems'
2
2
  require 'test/unit'
3
- require 'shoulda'
3
+ require 'contest'
4
4
 
5
5
  $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
6
6
  $LOAD_PATH.unshift(File.dirname(__FILE__))
@@ -0,0 +1,56 @@
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{testopia}
8
+ s.version = "0.1.1"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Cyril David"]
12
+ s.date = %q{2010-05-18}
13
+ s.description = %q{a collection of test helpers for Ohm, Sinatra, Rack}
14
+ s.email = %q{cyx.ucron@gmail.com}
15
+ s.extra_rdoc_files = [
16
+ "LICENSE",
17
+ "README.md"
18
+ ]
19
+ s.files = [
20
+ ".document",
21
+ ".gitignore",
22
+ "LICENSE",
23
+ "README.md",
24
+ "Rakefile",
25
+ "VERSION",
26
+ "lib/testopia.rb",
27
+ "lib/testopia/active_merchant.rb",
28
+ "lib/testopia/ohm.rb",
29
+ "test/helper.rb",
30
+ "test/test_testopia.rb",
31
+ "testopia.gemspec"
32
+ ]
33
+ s.homepage = %q{http://github.com/sinefunc/testopia}
34
+ s.rdoc_options = ["--charset=UTF-8"]
35
+ s.require_paths = ["lib"]
36
+ s.rubygems_version = %q{1.3.5}
37
+ s.summary = %q{Because laziness is the new cuil}
38
+ s.test_files = [
39
+ "test/helper.rb",
40
+ "test/test_testopia.rb"
41
+ ]
42
+
43
+ if s.respond_to? :specification_version then
44
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
45
+ s.specification_version = 3
46
+
47
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
48
+ s.add_development_dependency(%q<contest>, [">= 0"])
49
+ else
50
+ s.add_dependency(%q<contest>, [">= 0"])
51
+ end
52
+ else
53
+ s.add_dependency(%q<contest>, [">= 0"])
54
+ end
55
+ end
56
+
metadata CHANGED
@@ -1,12 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: testopia
3
3
  version: !ruby/object:Gem::Version
4
- prerelease: false
5
- segments:
6
- - 0
7
- - 1
8
- - 0
9
- version: 0.1.0
4
+ version: 0.1.1
10
5
  platform: ruby
11
6
  authors:
12
7
  - Cyril David
@@ -14,21 +9,19 @@ autorequire:
14
9
  bindir: bin
15
10
  cert_chain: []
16
11
 
17
- date: 2010-05-06 00:00:00 +08:00
12
+ date: 2010-05-18 00:00:00 +08:00
18
13
  default_executable:
19
14
  dependencies:
20
15
  - !ruby/object:Gem::Dependency
21
16
  name: contest
22
- prerelease: false
23
- requirement: &id001 !ruby/object:Gem::Requirement
17
+ type: :development
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
24
20
  requirements:
25
21
  - - ">="
26
22
  - !ruby/object:Gem::Version
27
- segments:
28
- - 0
29
23
  version: "0"
30
- type: :development
31
- version_requirements: *id001
24
+ version:
32
25
  description: a collection of test helpers for Ohm, Sinatra, Rack
33
26
  email: cyx.ucron@gmail.com
34
27
  executables: []
@@ -50,8 +43,9 @@ files:
50
43
  - lib/testopia/ohm.rb
51
44
  - test/helper.rb
52
45
  - test/test_testopia.rb
46
+ - testopia.gemspec
53
47
  has_rdoc: true
54
- homepage: http://github.com/cyx/testopia
48
+ homepage: http://github.com/sinefunc/testopia
55
49
  licenses: []
56
50
 
57
51
  post_install_message:
@@ -63,20 +57,18 @@ required_ruby_version: !ruby/object:Gem::Requirement
63
57
  requirements:
64
58
  - - ">="
65
59
  - !ruby/object:Gem::Version
66
- segments:
67
- - 0
68
60
  version: "0"
61
+ version:
69
62
  required_rubygems_version: !ruby/object:Gem::Requirement
70
63
  requirements:
71
64
  - - ">="
72
65
  - !ruby/object:Gem::Version
73
- segments:
74
- - 0
75
66
  version: "0"
67
+ version:
76
68
  requirements: []
77
69
 
78
70
  rubyforge_project:
79
- rubygems_version: 1.3.6
71
+ rubygems_version: 1.3.5
80
72
  signing_key:
81
73
  specification_version: 3
82
74
  summary: Because laziness is the new cuil