dirb 0.1.0 → 0.1.1

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.
Files changed (4) hide show
  1. data/Rakefile +0 -15
  2. data/VERSION +1 -1
  3. data/dirb.gemspec +44 -0
  4. metadata +5 -23
data/Rakefile CHANGED
@@ -32,21 +32,6 @@ begin
32
32
  s.require_paths = ["lib"]
33
33
  s.summary = %q{A convenient way to diff string in ruby}
34
34
 
35
- if s.respond_to? :specification_version then
36
- current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
37
- s.specification_version = 2
38
-
39
- if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
40
- s.add_runtime_dependency(%q<mime-types>, [">= 1.16"])
41
- s.add_runtime_dependency(%q<diff-lcs>, [">= 1.1.2"])
42
- else
43
- s.add_dependency(%q<mime-types>, [">= 1.16"])
44
- s.add_dependency(%q<diff-lcs>, [">= 1.1.2"])
45
- end
46
- else
47
- s.add_dependency(%q<mime-types>, [">= 1.16"])
48
- s.add_dependency(%q<diff-lcs>, [">= 1.1.2"])
49
- end
50
35
  end
51
36
  rescue LoadError
52
37
  puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.0
1
+ 0.1.1
data/dirb.gemspec ADDED
@@ -0,0 +1,44 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE
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{dirb}
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 = ["Sam Goldstein"]
12
+ s.date = %q{2010-06-28}
13
+ s.description = %q{Convenient diffing in ruby}
14
+ s.email = %q{sgrock@gmail.com}
15
+ s.extra_rdoc_files = [
16
+ "README.md"
17
+ ]
18
+ s.files = [
19
+ "README.md",
20
+ "Rakefile",
21
+ "VERSION",
22
+ "dirb.gemspec",
23
+ "lib/dirb.rb",
24
+ "spec/dirb_spec.rb"
25
+ ]
26
+ s.homepage = %q{http://github.com/samg/dirb/tree/master}
27
+ s.rdoc_options = ["--inline-source", "--charset=UTF-8"]
28
+ s.require_paths = ["lib"]
29
+ s.rubygems_version = %q{1.3.5}
30
+ s.summary = %q{A convenient way to diff string in ruby}
31
+ s.test_files = [
32
+ "spec/dirb_spec.rb"
33
+ ]
34
+
35
+ if s.respond_to? :specification_version then
36
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
37
+ s.specification_version = 3
38
+
39
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
40
+ else
41
+ end
42
+ else
43
+ end
44
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dirb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sam Goldstein
@@ -11,27 +11,8 @@ cert_chain: []
11
11
 
12
12
  date: 2010-06-28 00:00:00 -07:00
13
13
  default_executable:
14
- dependencies:
15
- - !ruby/object:Gem::Dependency
16
- name: mime-types
17
- type: :runtime
18
- version_requirement:
19
- version_requirements: !ruby/object:Gem::Requirement
20
- requirements:
21
- - - ">="
22
- - !ruby/object:Gem::Version
23
- version: "1.16"
24
- version:
25
- - !ruby/object:Gem::Dependency
26
- name: diff-lcs
27
- type: :runtime
28
- version_requirement:
29
- version_requirements: !ruby/object:Gem::Requirement
30
- requirements:
31
- - - ">="
32
- - !ruby/object:Gem::Version
33
- version: 1.1.2
34
- version:
14
+ dependencies: []
15
+
35
16
  description: Convenient diffing in ruby
36
17
  email: sgrock@gmail.com
37
18
  executables: []
@@ -44,6 +25,7 @@ files:
44
25
  - README.md
45
26
  - Rakefile
46
27
  - VERSION
28
+ - dirb.gemspec
47
29
  - lib/dirb.rb
48
30
  - spec/dirb_spec.rb
49
31
  has_rdoc: true
@@ -73,7 +55,7 @@ requirements: []
73
55
  rubyforge_project:
74
56
  rubygems_version: 1.3.5
75
57
  signing_key:
76
- specification_version: 2
58
+ specification_version: 3
77
59
  summary: A convenient way to diff string in ruby
78
60
  test_files:
79
61
  - spec/dirb_spec.rb