bodyparts 0.1.2 → 0.1.3

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 +3 -2
  2. data/VERSION +1 -1
  3. data/bodyparts.gemspec +6 -3
  4. metadata +18 -6
data/Rakefile CHANGED
@@ -5,12 +5,13 @@ begin
5
5
  require 'jeweler'
6
6
  Jeweler::Tasks.new do |gem|
7
7
  gem.name = "bodyparts"
8
- gem.summary = %Q{Separates new messages from included reply chains in the body of forwarded emails}
9
- gem.description = %Q{Separates new messages from included reply chains in the body of forwarded emails}
8
+ gem.summary = %Q{Separates new messages from included reply chains in the body of emails}
9
+ gem.description = %Q{Separates new messages from included reply chains in the body of emails}
10
10
  gem.email = "max@maxogden.com"
11
11
  gem.homepage = "http://github.com/maxogden/bodyparts"
12
12
  gem.authors = ["Max Ogden"]
13
13
  gem.add_dependency "mail", ">= 0"
14
+ gem.add_dependency "tmail", ">= 0"
14
15
  gem.add_development_dependency "rspec", ">= 1.2.9"
15
16
  end
16
17
  Jeweler::GemcutterTasks.new
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.2
1
+ 0.1.3
data/bodyparts.gemspec CHANGED
@@ -5,12 +5,12 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{bodyparts}
8
- s.version = "0.1.2"
8
+ s.version = "0.1.3"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Max Ogden"]
12
12
  s.date = %q{2010-06-10}
13
- s.description = %q{Separates new messages from included reply chains in the body of forwarded emails}
13
+ s.description = %q{Separates new messages from included reply chains in the body of emails}
14
14
  s.email = %q{max@maxogden.com}
15
15
  s.extra_rdoc_files = [
16
16
  "LICENSE",
@@ -33,7 +33,7 @@ Gem::Specification.new do |s|
33
33
  s.rdoc_options = ["--charset=UTF-8"]
34
34
  s.require_paths = ["lib"]
35
35
  s.rubygems_version = %q{1.3.6}
36
- s.summary = %q{Separates new messages from included reply chains in the body of forwarded emails}
36
+ s.summary = %q{Separates new messages from included reply chains in the body of emails}
37
37
  s.test_files = [
38
38
  "spec/bodyparts_spec.rb",
39
39
  "spec/spec_helper.rb"
@@ -45,13 +45,16 @@ Gem::Specification.new do |s|
45
45
 
46
46
  if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
47
47
  s.add_runtime_dependency(%q<mail>, [">= 0"])
48
+ s.add_runtime_dependency(%q<tmail>, [">= 0"])
48
49
  s.add_development_dependency(%q<rspec>, [">= 1.2.9"])
49
50
  else
50
51
  s.add_dependency(%q<mail>, [">= 0"])
52
+ s.add_dependency(%q<tmail>, [">= 0"])
51
53
  s.add_dependency(%q<rspec>, [">= 1.2.9"])
52
54
  end
53
55
  else
54
56
  s.add_dependency(%q<mail>, [">= 0"])
57
+ s.add_dependency(%q<tmail>, [">= 0"])
55
58
  s.add_dependency(%q<rspec>, [">= 1.2.9"])
56
59
  end
57
60
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 1
8
- - 2
9
- version: 0.1.2
8
+ - 3
9
+ version: 0.1.3
10
10
  platform: ruby
11
11
  authors:
12
12
  - Max Ogden
@@ -30,9 +30,21 @@ dependencies:
30
30
  type: :runtime
31
31
  version_requirements: *id001
32
32
  - !ruby/object:Gem::Dependency
33
- name: rspec
33
+ name: tmail
34
34
  prerelease: false
35
35
  requirement: &id002 !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ">="
38
+ - !ruby/object:Gem::Version
39
+ segments:
40
+ - 0
41
+ version: "0"
42
+ type: :runtime
43
+ version_requirements: *id002
44
+ - !ruby/object:Gem::Dependency
45
+ name: rspec
46
+ prerelease: false
47
+ requirement: &id003 !ruby/object:Gem::Requirement
36
48
  requirements:
37
49
  - - ">="
38
50
  - !ruby/object:Gem::Version
@@ -42,8 +54,8 @@ dependencies:
42
54
  - 9
43
55
  version: 1.2.9
44
56
  type: :development
45
- version_requirements: *id002
46
- description: Separates new messages from included reply chains in the body of forwarded emails
57
+ version_requirements: *id003
58
+ description: Separates new messages from included reply chains in the body of emails
47
59
  email: max@maxogden.com
48
60
  executables: []
49
61
 
@@ -93,7 +105,7 @@ rubyforge_project:
93
105
  rubygems_version: 1.3.6
94
106
  signing_key:
95
107
  specification_version: 3
96
- summary: Separates new messages from included reply chains in the body of forwarded emails
108
+ summary: Separates new messages from included reply chains in the body of emails
97
109
  test_files:
98
110
  - spec/bodyparts_spec.rb
99
111
  - spec/spec_helper.rb