padrino-mailer 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.0
1
+ 0.1.1
@@ -1,5 +1,5 @@
1
1
  require 'tilt'
2
- # require 'padrino-core/support_lite'
2
+ require 'padrino-core/support_lite'
3
3
  Dir[File.dirname(__FILE__) + '/padrino-mailer/**/*.rb'].each { |file| require file }
4
4
 
5
5
  module Padrino
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{padrino-mailer}
8
- s.version = "0.1.0"
8
+ s.version = "0.1.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Padrino Team", "Nathan Esquenazi", "Davide D'Agostino", "Arthur Chiu"]
12
- s.date = %q{2009-11-16}
12
+ s.date = %q{2009-11-17}
13
13
  s.description = %q{Mailer system for padrino allowing easy delivery of application emails}
14
14
  s.email = %q{nesquena@gmail.com}
15
15
  s.extra_rdoc_files = [
@@ -21,6 +21,8 @@ Gem::Specification.new do |s|
21
21
  ".gitignore",
22
22
  "LICENSE",
23
23
  "README.rdoc",
24
+ "README.rdoc",
25
+ "Rakefile",
24
26
  "Rakefile",
25
27
  "VERSION",
26
28
  "lib/padrino-mailer.rb",
@@ -43,14 +45,6 @@ Gem::Specification.new do |s|
43
45
  s.require_paths = ["lib"]
44
46
  s.rubygems_version = %q{1.3.5}
45
47
  s.summary = %q{Mailer system for padrino}
46
- s.test_files = [
47
- "test/active_support_helpers.rb",
48
- "test/fixtures/mailer_app/app.rb",
49
- "test/helper.rb",
50
- "test/test_mail_object.rb",
51
- "test/test_mailer_base.rb",
52
- "test/test_padrino_mailer.rb"
53
- ]
54
48
 
55
49
  if s.respond_to? :specification_version then
56
50
  current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
data/test/helper.rb CHANGED
@@ -8,8 +8,8 @@ require 'webrat'
8
8
  $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
9
9
  $LOAD_PATH.unshift(File.dirname(__FILE__))
10
10
  require 'active_support_helpers'
11
- require File.dirname(__FILE__) + '/../../padrino-helpers/lib/padrino-helpers.rb'
12
- require File.dirname(__FILE__) + '/../lib/padrino-mailer.rb'
11
+ require 'padrino-helpers'
12
+ require 'padrino-mailer'
13
13
 
14
14
  class Test::Unit::TestCase
15
15
  include Padrino::Helpers::OutputHelpers
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: padrino-mailer
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
  - Padrino Team
@@ -12,7 +12,7 @@ autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
14
 
15
- date: 2009-11-16 00:00:00 -08:00
15
+ date: 2009-11-17 00:00:00 -08:00
16
16
  default_executable:
17
17
  dependencies:
18
18
  - !ruby/object:Gem::Dependency
@@ -143,10 +143,5 @@ rubygems_version: 1.3.5
143
143
  signing_key:
144
144
  specification_version: 3
145
145
  summary: Mailer system for padrino
146
- test_files:
147
- - test/active_support_helpers.rb
148
- - test/fixtures/mailer_app/app.rb
149
- - test/helper.rb
150
- - test/test_mail_object.rb
151
- - test/test_mailer_base.rb
152
- - test/test_padrino_mailer.rb
146
+ test_files: []
147
+