padrino-mailer 0.9.25 → 0.9.26

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. data/padrino-mailer.gemspec +8 -3
  2. metadata +37 -14
@@ -1,3 +1,4 @@
1
+ # -*- encoding: utf-8 -*-
1
2
  require File.expand_path("../../padrino-core/lib/padrino-core/version.rb", __FILE__)
2
3
 
3
4
  Gem::Specification.new do |s|
@@ -11,10 +12,14 @@ Gem::Specification.new do |s|
11
12
  s.required_rubygems_version = ">= 1.3.6"
12
13
  s.version = Padrino.version
13
14
  s.date = Time.now.strftime("%Y-%m-%d")
15
+
14
16
  s.extra_rdoc_files = Dir["*.rdoc"]
15
- s.files = %w(.document .gitignore LICENSE README.rdoc Rakefile padrino-mailer.gemspec) + Dir.glob("{bin,lib,test}/**/*")
16
- s.rdoc_options = ["--charset=UTF-8"]
17
- s.require_path = "lib"
17
+ s.files = `git ls-files`.split("\n")
18
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
19
+ s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
20
+ s.require_paths = ["lib"]
21
+ s.rdoc_options = ["--charset=UTF-8"]
22
+
18
23
  s.add_dependency("padrino-core", Padrino.version)
19
24
  s.add_dependency("mail", ">= 2.2.0")
20
25
  s.add_dependency("tlsmail") if RUBY_VERSION == "1.8.6"
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: padrino-mailer
3
3
  version: !ruby/object:Gem::Version
4
- hash: 9
4
+ hash: 15
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 9
9
- - 25
10
- version: 0.9.25
9
+ - 26
10
+ version: 0.9.26
11
11
  platform: ruby
12
12
  authors:
13
13
  - Padrino Team
@@ -18,8 +18,7 @@ autorequire:
18
18
  bindir: bin
19
19
  cert_chain: []
20
20
 
21
- date: 2011-04-27 00:00:00 +02:00
22
- default_executable:
21
+ date: 2011-04-28 00:00:00 Z
23
22
  dependencies:
24
23
  - !ruby/object:Gem::Dependency
25
24
  name: padrino-core
@@ -29,12 +28,12 @@ dependencies:
29
28
  requirements:
30
29
  - - "="
31
30
  - !ruby/object:Gem::Version
32
- hash: 9
31
+ hash: 15
33
32
  segments:
34
33
  - 0
35
34
  - 9
36
- - 25
37
- version: 0.9.25
35
+ - 26
36
+ version: 0.9.26
38
37
  type: :runtime
39
38
  version_requirements: *id001
40
39
  - !ruby/object:Gem::Dependency
@@ -67,12 +66,12 @@ files:
67
66
  - LICENSE
68
67
  - README.rdoc
69
68
  - Rakefile
70
- - padrino-mailer.gemspec
69
+ - lib/padrino-mailer.rb
71
70
  - lib/padrino-mailer/base.rb
72
71
  - lib/padrino-mailer/ext.rb
73
72
  - lib/padrino-mailer/helpers.rb
74
73
  - lib/padrino-mailer/mime.rb
75
- - lib/padrino-mailer.rb
74
+ - padrino-mailer.gemspec
76
75
  - test/fixtures/basic.erb
77
76
  - test/fixtures/layout.erb
78
77
  - test/fixtures/padrino_app/app.rb
@@ -99,7 +98,6 @@ files:
99
98
  - test/test_message.rb
100
99
  - test/test_padrino_mailer.rb
101
100
  - test/test_part.rb
102
- has_rdoc: true
103
101
  homepage: http://www.padrinorb.com
104
102
  licenses: []
105
103
 
@@ -131,9 +129,34 @@ required_rubygems_version: !ruby/object:Gem::Requirement
131
129
  requirements: []
132
130
 
133
131
  rubyforge_project: padrino-mailer
134
- rubygems_version: 1.5.2
132
+ rubygems_version: 1.7.2
135
133
  signing_key:
136
134
  specification_version: 3
137
135
  summary: Mailer system for padrino
138
- test_files: []
139
-
136
+ test_files:
137
+ - test/fixtures/basic.erb
138
+ - test/fixtures/layout.erb
139
+ - test/fixtures/padrino_app/app.rb
140
+ - test/fixtures/padrino_app/views/mailers/demo/sample_mail.erb
141
+ - test/fixtures/padrino_app/views/mailers/sample/anniversary.erb
142
+ - test/fixtures/padrino_app/views/mailers/sample/birthday.erb
143
+ - test/fixtures/padrino_app/views/mailers/sample/foo_message.erb
144
+ - test/fixtures/padrino_app/views/mailers/sample/helper_message.erb
145
+ - test/fixtures/sinatra_app/app.rb
146
+ - test/fixtures/sinatra_app/views/mailers/demo/sample_mail.erb
147
+ - test/fixtures/sinatra_app/views/mailers/sample/anniversary.erb
148
+ - test/fixtures/sinatra_app/views/mailers/sample/birthday.erb
149
+ - test/fixtures/sinatra_app/views/mailers/sample/foo_message.erb
150
+ - test/fixtures/views/mailers/alternate/foo.erb
151
+ - test/fixtures/views/mailers/bar.erb
152
+ - test/fixtures/views/mailers/i18n/hello.en.erb
153
+ - test/fixtures/views/mailers/i18n/hello.it.erb
154
+ - test/fixtures/views/mailers/layouts/sample.erb
155
+ - test/fixtures/views/mailers/multipart/basic.html.erb
156
+ - test/fixtures/views/mailers/multipart/basic.plain.erb
157
+ - test/fixtures/views/mailers/sample/foo.erb
158
+ - test/helper.rb
159
+ - test/test_email.rb
160
+ - test/test_message.rb
161
+ - test/test_padrino_mailer.rb
162
+ - test/test_part.rb