jqr-railmail 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/Rakefile +36 -0
  2. data/VERSION.yml +2 -2
  3. metadata +9 -12
data/Rakefile ADDED
@@ -0,0 +1,36 @@
1
+ require 'rake'
2
+ require 'rake/testtask'
3
+ require 'rake/rdoctask'
4
+
5
+ desc 'Default: run unit tests.'
6
+ task :default => :test
7
+
8
+ desc 'Test the railmail plugin.'
9
+ Rake::TestTask.new(:test) do |t|
10
+ t.libs << 'lib'
11
+ t.pattern = 'test/**/*_test.rb'
12
+ t.verbose = true
13
+ end
14
+
15
+ desc 'Generate documentation for the railmail plugin.'
16
+ Rake::RDocTask.new(:rdoc) do |rdoc|
17
+ rdoc.rdoc_dir = 'rdoc'
18
+ rdoc.title = 'Railmail'
19
+ rdoc.options << '--line-numbers' << '--inline-source'
20
+ rdoc.rdoc_files.include('README')
21
+ rdoc.rdoc_files.include('lib/**/*.rb')
22
+ end
23
+
24
+ begin
25
+ require 'jeweler'
26
+ Jeweler::Tasks.new do |s|
27
+ s.name = "railmail"
28
+ s.summary = "Railmail allows email to be delivered and inspected in development mode without the use of a mail server."
29
+ # s.email = ""
30
+ s.homepage = "http://nullstyle.com/railmail/"
31
+ s.description = "When Railmail is enabled, any mail sent by your application will be trapped and stored in a database table. An interface is enabled within your application where you can view these emails. With railmail there is no need to set up testing email accounts while developing your application; just send out mail to any address and Railmail will capture it."
32
+ s.authors = ["Scott Fleckenstein"]
33
+ end
34
+ rescue LoadError
35
+ puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
36
+ end
data/VERSION.yml CHANGED
@@ -1,4 +1,4 @@
1
1
  ---
2
- :minor: 0
3
- :patch: 2
4
2
  :major: 0
3
+ :minor: 0
4
+ :patch: 3
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jqr-railmail
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Scott Fleckenstein
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-04-02 00:00:00 -07:00
12
+ date: 2009-04-19 00:00:00 -07:00
13
13
  default_executable:
14
14
  dependencies: []
15
15
 
@@ -20,26 +20,23 @@ executables: []
20
20
  extensions: []
21
21
 
22
22
  extra_rdoc_files:
23
- - README.rdoc
24
23
  - LICENSE
24
+ - README.rdoc
25
25
  files:
26
+ - LICENSE
26
27
  - README.rdoc
28
+ - Rakefile
27
29
  - VERSION.yml
28
- - generators/railmail_migration
30
+ - generators/railmail_migration/USAGE
29
31
  - generators/railmail_migration/railmail_migration_generator.rb
30
- - generators/railmail_migration/templates
31
32
  - generators/railmail_migration/templates/migration.rb
32
- - generators/railmail_migration/USAGE
33
- - lib/railmail
34
- - lib/railmail/action_mailer.rb
35
33
  - lib/railmail.rb
34
+ - lib/railmail/action_mailer.rb
36
35
  - test/railmail_test.rb
37
- - LICENSE
38
36
  has_rdoc: true
39
37
  homepage: http://nullstyle.com/railmail/
40
38
  post_install_message:
41
39
  rdoc_options:
42
- - --inline-source
43
40
  - --charset=UTF-8
44
41
  require_paths:
45
42
  - lib
@@ -62,5 +59,5 @@ rubygems_version: 1.2.0
62
59
  signing_key:
63
60
  specification_version: 2
64
61
  summary: Railmail allows email to be delivered and inspected in development mode without the use of a mail server.
65
- test_files: []
66
-
62
+ test_files:
63
+ - test/railmail_test.rb