the-perfect-gem 3.1.22 → 3.1.23

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore CHANGED
@@ -2,3 +2,4 @@
2
2
  .DS_Store
3
3
  coverage
4
4
  pkg
5
+ doc
data/README CHANGED
@@ -1,9 +1,9 @@
1
1
  the-perfect-gem
2
2
  ===============
3
3
 
4
- Description goes here.
4
+ This project is just an example of using jeweler for a project, and is used for testing purposes.
5
5
 
6
6
  COPYRIGHT
7
7
  =========
8
8
 
9
- Copyright (c) 2008 Josh Nichols. See LICENSE for details.
9
+ Copyright (c) 2009 Josh Nichols. See LICENSE for details.
data/Rakefile CHANGED
@@ -8,14 +8,18 @@ begin
8
8
  Jeweler::Tasks.new do |s|
9
9
  s.name = "the-perfect-gem"
10
10
  s.summary = "the perfect gem (a testing gem for jeweler)"
11
+ s.description = "the perfect gem (a testing gem for jeweler)"
11
12
  s.email = "josh@technicalpickles.com"
12
13
  s.homepage = "http://github.com/technicalpickles/the-perfect-gem"
13
14
  s.rubyforge_project = 'pickles'
14
15
  s.authors = ["Josh Nichols"]
16
+ s.add_development_dependency "thoughtbot-shoulda"
15
17
  end
16
18
  Jeweler::RubyforgeTasks.new do |rubyforge|
17
19
  rubyforge.doc_task = "yardoc"
18
20
  end
21
+
22
+ Jeweler::GemcutterTasks.new
19
23
  rescue LoadError
20
24
  puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
21
25
  end
@@ -31,7 +35,7 @@ begin
31
35
  YARD::Rake::YardocTask.new(:yardoc)
32
36
  rescue LoadError
33
37
  task :yardoc do
34
- abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov"
38
+ abort "YARD is not available. In order to run yard, you must: sudo gem install yard"
35
39
  end
36
40
  end
37
41
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.1.9
1
+ 3.1.23
@@ -1,7 +1,6 @@
1
1
  require 'rubygems'
2
2
  require 'test/unit'
3
3
  require 'shoulda'
4
- require 'mocha'
5
4
 
6
5
  class Test::Unit::TestCase
7
- end
6
+ end
@@ -1,7 +1,7 @@
1
1
  require File.dirname(__FILE__) + '/test_helper'
2
2
 
3
3
  class ThePerfectGemTest < Test::Unit::TestCase
4
- should "probably rename this file and start testing for real" do
5
- flunk "hey buddy, you should probably rename this file and start testing for real"
4
+ should "be true" do
5
+ assert true
6
6
  end
7
- end
7
+ end
@@ -5,11 +5,12 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{the-perfect-gem}
8
- s.version = "3.1.22"
8
+ s.version = "3.1.23"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Josh Nichols"]
12
- s.date = %q{2009-08-04}
12
+ s.date = %q{2009-08-15}
13
+ s.description = %q{the perfect gem (a testing gem for jeweler)}
13
14
  s.email = %q{josh@technicalpickles.com}
14
15
  s.extra_rdoc_files = [
15
16
  "LICENSE",
@@ -21,7 +22,6 @@ Gem::Specification.new do |s|
21
22
  "README",
22
23
  "Rakefile",
23
24
  "VERSION",
24
- "VERSION.yml",
25
25
  "lib/the_perfect_gem.rb",
26
26
  "test/test_helper.rb",
27
27
  "test/the_perfect_gem_test.rb",
@@ -43,8 +43,11 @@ Gem::Specification.new do |s|
43
43
  s.specification_version = 3
44
44
 
45
45
  if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
46
+ s.add_development_dependency(%q<thoughtbot-shoulda>, [">= 0"])
46
47
  else
48
+ s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
47
49
  end
48
50
  else
51
+ s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
49
52
  end
50
53
  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.22
4
+ version: 3.1.23
5
5
  platform: ruby
6
6
  authors:
7
7
  - Josh Nichols
@@ -9,11 +9,20 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-08-04 00:00:00 -04:00
12
+ date: 2009-08-15 00:00:00 -04:00
13
13
  default_executable:
14
- dependencies: []
15
-
16
- description:
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: thoughtbot-shoulda
17
+ type: :development
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: "0"
24
+ version:
25
+ description: the perfect gem (a testing gem for jeweler)
17
26
  email: josh@technicalpickles.com
18
27
  executables: []
19
28
 
@@ -28,7 +37,6 @@ files:
28
37
  - README
29
38
  - Rakefile
30
39
  - VERSION
31
- - VERSION.yml
32
40
  - lib/the_perfect_gem.rb
33
41
  - test/test_helper.rb
34
42
  - test/the_perfect_gem_test.rb
@@ -1,4 +0,0 @@
1
- ---
2
- :patch: 22
3
- :major: 3
4
- :minor: 1