mad_mimi_two 0.1.1 → 0.2.0

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 (5) hide show
  1. data/Rakefile +44 -0
  2. metadata +56 -19
  3. data/.gitignore +0 -3
  4. data/VERSION +0 -1
  5. data/mad_mimi_two.gemspec +0 -41
data/Rakefile ADDED
@@ -0,0 +1,44 @@
1
+ require 'rubygems'
2
+ gem 'hoe', '>= 2.1.0'
3
+ require 'hoe'
4
+ require 'fileutils'
5
+ require './lib/mad_mimi_two'
6
+
7
+
8
+ Hoe.plugin :newgem
9
+ # Hoe.plugin :website
10
+ # Hoe.plugin :cucumberfeatures
11
+
12
+ # Generate all the Rake tasks
13
+ # Run 'rake -T' to see list of generated tasks (from gem root directory)
14
+ $hoe = Hoe.spec 'mad_mimi_two' do
15
+ self.developer 'scott sproule', 'scott.sproule@ficonab.com'
16
+ self.post_install_message = 'For more information on mad_mimi_two, see
17
+ http://github.com/semdinsp/mad_mimi_two' # TODO remove if post-install message not required
18
+ self.rubyforge_name = self.name # TODO this is default value
19
+ #self.add_dependency("httpclient")
20
+
21
+ end
22
+
23
+ require 'newgem/tasks'
24
+ Dir['tasks/**/*.rake'].each { |t| load t }
25
+
26
+ # TODO - want other tests/tasks run by default? Add them to the list
27
+ # remove_task :default
28
+ # task :default => [:spec, :features]
29
+
30
+ begin
31
+ require 'jeweler'
32
+ Jeweler::Tasks.new do |gemspec|
33
+ gemspec.name = "mad_mimi_two"
34
+ gemspec.summary = "Use MadMimi with Rails 3"
35
+ gemspec.description = "Use MadMimi with Rails 3"
36
+ gemspec.email = "scott.sproule@estormtech.com"
37
+ gemspec.homepage = "http://github.com/semdinsp/mad-mimi-on-rails-3"
38
+ gemspec.authors = ["Scott Sproule","and others from original gem"]
39
+ end
40
+ Jeweler::GemcutterTasks.new
41
+ rescue LoadError
42
+ puts "Jeweler not available. Install it with: sudo gem install jeweler -s http://gemcutter.org"
43
+ end
44
+
metadata CHANGED
@@ -1,56 +1,93 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mad_mimi_two
3
3
  version: !ruby/object:Gem::Version
4
- hash: 25
4
+ hash: 23
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
- - 1
9
- - 1
10
- version: 0.1.1
8
+ - 2
9
+ - 0
10
+ version: 0.2.0
11
11
  platform: ruby
12
12
  authors:
13
- - Scott Sproule
14
- - and others from original gem
13
+ - scott sproule
15
14
  autorequire:
16
15
  bindir: bin
17
16
  cert_chain: []
18
17
 
19
18
  date: 2010-05-26 00:00:00 +08:00
20
19
  default_executable:
21
- dependencies: []
22
-
23
- description: Use MadMimi with Rails 3
24
- email: scott.sproule@estormtech.com
20
+ dependencies:
21
+ - !ruby/object:Gem::Dependency
22
+ name: rubyforge
23
+ prerelease: false
24
+ requirement: &id001 !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ hash: 9
30
+ segments:
31
+ - 2
32
+ - 0
33
+ - 3
34
+ version: 2.0.3
35
+ type: :development
36
+ version_requirements: *id001
37
+ - !ruby/object:Gem::Dependency
38
+ name: hoe
39
+ prerelease: false
40
+ requirement: &id002 !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ">="
44
+ - !ruby/object:Gem::Version
45
+ hash: 23
46
+ segments:
47
+ - 2
48
+ - 6
49
+ - 0
50
+ version: 2.6.0
51
+ type: :development
52
+ version_requirements: *id002
53
+ description: |-
54
+ Using Mad Mimi on rails 3. All of the elegant portions of the code are based on the original http://github.com/redsquirrel/mad_mimi_mailer by ethangunderson. (MadMimiTwo also runs in Rails 2)
55
+
56
+ All of the terrible stuff is by me. Apologies for taking an elegant solution and just crafting something that works.
57
+ email:
58
+ - scott.sproule@ficonab.com
25
59
  executables: []
26
60
 
27
61
  extensions: []
28
62
 
29
63
  extra_rdoc_files:
30
- - README.rdoc
64
+ - History.txt
65
+ - Manifest.txt
66
+ - PostInstall.txt
31
67
  files:
32
- - .gitignore
33
68
  - History.txt
34
69
  - Manifest.txt
35
70
  - PostInstall.txt
36
71
  - README.rdoc
37
- - VERSION
72
+ - Rakefile
38
73
  - lib/mad_mimi_two.rb
39
74
  - lib/mad_mimi_two/mad_mimi_mailer.rb
40
75
  - lib/mad_mimi_two/mad_mimi_message.rb
41
- - mad_mimi_two.gemspec
42
76
  - script/console
43
77
  - script/destroy
44
78
  - script/generate
45
79
  - test/test_helper.rb
46
80
  - test/test_mad_mimi_two.rb
47
81
  has_rdoc: true
48
- homepage: http://github.com/semdinsp/mad-mimi-on-rails-3
82
+ homepage: http://github.com/semdinsp/mad_mimi_two
49
83
  licenses: []
50
84
 
51
- post_install_message:
85
+ post_install_message: |-
86
+ For more information on mad_mimi_two, see
87
+ http://github.com/semdinsp/mad_mimi_two
52
88
  rdoc_options:
53
- - --charset=UTF-8
89
+ - --main
90
+ - README.rdoc
54
91
  require_paths:
55
92
  - lib
56
93
  required_ruby_version: !ruby/object:Gem::Requirement
@@ -73,11 +110,11 @@ required_rubygems_version: !ruby/object:Gem::Requirement
73
110
  version: "0"
74
111
  requirements: []
75
112
 
76
- rubyforge_project:
113
+ rubyforge_project: mad_mimi_two
77
114
  rubygems_version: 1.3.7
78
115
  signing_key:
79
116
  specification_version: 3
80
- summary: Use MadMimi with Rails 3
117
+ summary: Using Mad Mimi on rails 3
81
118
  test_files:
82
119
  - test/test_helper.rb
83
120
  - test/test_mad_mimi_two.rb
data/.gitignore DELETED
@@ -1,3 +0,0 @@
1
- pkg/
2
- test/
3
- *.gem
data/VERSION DELETED
@@ -1 +0,0 @@
1
- 0.1.1
data/mad_mimi_two.gemspec DELETED
@@ -1,41 +0,0 @@
1
- # -*- encoding: utf-8 -*-
2
-
3
- Gem::Specification.new do |s|
4
- s.name = %q{mad_mimi_two}
5
- s.version = "0.0.6"
6
-
7
- s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
- s.authors = ["scott sproule"]
9
- s.date = %q{2010-05-26}
10
- s.description = %q{Using Mad Mimi on rails 3. All of the elegant portions of the code are based on the original http://github.com/redsquirrel/mad_mimi_mailer by ethangunderson. (MadMimiTwo also runs in Rails 2)
11
-
12
- All of the terrible stuff is by me. Apologies for taking an elegant solution and just crafting something that works.}
13
- s.email = ["scott.sproule@ficonab.com"]
14
- s.extra_rdoc_files = ["History.txt", "Manifest.txt", "PostInstall.txt"]
15
- s.files = ["History.txt", "Manifest.txt", "PostInstall.txt", "README.rdoc", "Rakefile", "lib/mad_mimi_two.rb", "lib/mad_mimi_two/mad_mimi_mailer.rb", "lib/mad_mimi_two/mad_mimi_message.rb", "script/console", "script/destroy", "script/generate", "test/test_helper.rb", "test/test_mad_mimi_two.rb"]
16
- s.homepage = %q{http://github.com/semdinsp/mad_mimi_two}
17
- s.post_install_message = %q{For more information on mad_mimi_two, see
18
- http://github.com/semdinsp/mad_mimi_two}
19
- s.rdoc_options = ["--main", "README.rdoc"]
20
- s.require_paths = ["lib"]
21
- s.rubyforge_project = %q{mad_mimi_two}
22
- s.rubygems_version = %q{1.3.7}
23
- s.summary = %q{Using Mad Mimi on rails 3}
24
- s.test_files = ["test/test_helper.rb", "test/test_mad_mimi_two.rb"]
25
-
26
- if s.respond_to? :specification_version then
27
- current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
28
- s.specification_version = 3
29
-
30
- if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
31
- s.add_development_dependency(%q<rubyforge>, [">= 2.0.3"])
32
- s.add_development_dependency(%q<hoe>, [">= 2.6.0"])
33
- else
34
- s.add_dependency(%q<rubyforge>, [">= 2.0.3"])
35
- s.add_dependency(%q<hoe>, [">= 2.6.0"])
36
- end
37
- else
38
- s.add_dependency(%q<rubyforge>, [">= 2.0.3"])
39
- s.add_dependency(%q<hoe>, [">= 2.6.0"])
40
- end
41
- end