hello_mail 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore CHANGED
@@ -3,3 +3,4 @@ pkg/*
3
3
  .bundle
4
4
  .rvmrc
5
5
  **.swp
6
+ Gemfile.lock
data/Rakefile CHANGED
@@ -7,3 +7,5 @@ Rake::TestTask.new(:test) do |test|
7
7
  test.pattern = 'test/**/test_*.rb'
8
8
  test.verbose = true
9
9
  end
10
+
11
+ task :default => :test
@@ -12,7 +12,7 @@ Gem::Specification.new do |s|
12
12
  s.summary = %q{Add a rake task to test your mail configuration on Rails 3}
13
13
  s.description = %q{Add a rake task to test your mail configuration on Rails 3}
14
14
 
15
- s.add_dependency('rails', '~>3.0.0')
15
+ s.add_dependency('rails', '~>3')
16
16
  s.add_development_dependency('rake', '~>0.8')
17
17
 
18
18
  s.rubyforge_project = "hello_mail"
@@ -1,3 +1,3 @@
1
1
  module HelloMail
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hello_mail
3
3
  version: !ruby/object:Gem::Version
4
- hash: 29
4
+ hash: 27
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 1
10
- version: 0.0.1
9
+ - 2
10
+ version: 0.0.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - David Padilla
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2010-11-30 00:00:00 -06:00
18
+ date: 2011-06-08 00:00:00 -05:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
@@ -26,12 +26,10 @@ dependencies:
26
26
  requirements:
27
27
  - - ~>
28
28
  - !ruby/object:Gem::Version
29
- hash: 7
29
+ hash: 5
30
30
  segments:
31
31
  - 3
32
- - 0
33
- - 0
34
- version: 3.0.0
32
+ version: "3"
35
33
  type: :runtime
36
34
  version_requirements: *id001
37
35
  - !ruby/object:Gem::Dependency
@@ -61,7 +59,6 @@ extra_rdoc_files: []
61
59
  files:
62
60
  - .gitignore
63
61
  - Gemfile
64
- - Gemfile.lock
65
62
  - README.markdown
66
63
  - Rakefile
67
64
  - hello_mail.gemspec
@@ -1,79 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- hello_mail (0.0.1)
5
- rails (~> 3.0.0)
6
-
7
- GEM
8
- remote: http://rubygems.org/
9
- specs:
10
- abstract (1.0.0)
11
- actionmailer (3.0.3)
12
- actionpack (= 3.0.3)
13
- mail (~> 2.2.9)
14
- actionpack (3.0.3)
15
- activemodel (= 3.0.3)
16
- activesupport (= 3.0.3)
17
- builder (~> 2.1.2)
18
- erubis (~> 2.6.6)
19
- i18n (~> 0.4)
20
- rack (~> 1.2.1)
21
- rack-mount (~> 0.6.13)
22
- rack-test (~> 0.5.6)
23
- tzinfo (~> 0.3.23)
24
- activemodel (3.0.3)
25
- activesupport (= 3.0.3)
26
- builder (~> 2.1.2)
27
- i18n (~> 0.4)
28
- activerecord (3.0.3)
29
- activemodel (= 3.0.3)
30
- activesupport (= 3.0.3)
31
- arel (~> 2.0.2)
32
- tzinfo (~> 0.3.23)
33
- activeresource (3.0.3)
34
- activemodel (= 3.0.3)
35
- activesupport (= 3.0.3)
36
- activesupport (3.0.3)
37
- arel (2.0.4)
38
- builder (2.1.2)
39
- erubis (2.6.6)
40
- abstract (>= 1.0.0)
41
- i18n (0.5.0)
42
- mail (2.2.11)
43
- activesupport (>= 2.3.6)
44
- i18n (~> 0.5.0)
45
- mime-types (~> 1.16)
46
- treetop (~> 1.4.8)
47
- mime-types (1.16)
48
- polyglot (0.3.1)
49
- rack (1.2.1)
50
- rack-mount (0.6.13)
51
- rack (>= 1.0.0)
52
- rack-test (0.5.6)
53
- rack (>= 1.0)
54
- rails (3.0.3)
55
- actionmailer (= 3.0.3)
56
- actionpack (= 3.0.3)
57
- activerecord (= 3.0.3)
58
- activeresource (= 3.0.3)
59
- activesupport (= 3.0.3)
60
- bundler (~> 1.0)
61
- railties (= 3.0.3)
62
- railties (3.0.3)
63
- actionpack (= 3.0.3)
64
- activesupport (= 3.0.3)
65
- rake (>= 0.8.7)
66
- thor (~> 0.14.4)
67
- rake (0.8.7)
68
- thor (0.14.6)
69
- treetop (1.4.9)
70
- polyglot (>= 0.3.1)
71
- tzinfo (0.3.23)
72
-
73
- PLATFORMS
74
- ruby
75
-
76
- DEPENDENCIES
77
- hello_mail!
78
- rails (~> 3.0.0)
79
- rake (~> 0.8)