radiant-mailer-extension 1.0.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.
metadata ADDED
@@ -0,0 +1,103 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: radiant-mailer-extension
3
+ version: !ruby/object:Gem::Version
4
+ prerelease: false
5
+ segments:
6
+ - 1
7
+ - 0
8
+ - 0
9
+ version: 1.0.0
10
+ platform: ruby
11
+ authors:
12
+ - Nathaniel Talbott
13
+ - Sean Cribbs
14
+ - Matt McCray
15
+ autorequire:
16
+ bindir: bin
17
+ cert_chain: []
18
+
19
+ date: 2010-04-29 00:00:00 -04:00
20
+ default_executable:
21
+ dependencies:
22
+ - !ruby/object:Gem::Dependency
23
+ name: rspec
24
+ prerelease: false
25
+ requirement: &id001 !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ segments:
30
+ - 0
31
+ version: "0"
32
+ type: :development
33
+ version_requirements: *id001
34
+ description: An extension for Radiant CMS that allows you to create 'contact us' and other mail-bound forms.
35
+ email: radiant@radiantcms.org
36
+ executables: []
37
+
38
+ extensions: []
39
+
40
+ extra_rdoc_files:
41
+ - LICENSE
42
+ - README.rdoc
43
+ files:
44
+ - .gitignore
45
+ - LICENSE
46
+ - README.rdoc
47
+ - Rakefile
48
+ - VERSION
49
+ - app/controllers/mail_controller.rb
50
+ - app/models/mail.rb
51
+ - app/models/mailer.rb
52
+ - lib/mailer_process.rb
53
+ - lib/mailer_tags.rb
54
+ - lib/radiant-mailer-extension.rb
55
+ - lib/tasks/mailer_extension_tasks.rake
56
+ - mailer_extension.rb
57
+ - radiant-mailer-extension.gemspec
58
+ - spec/controllers/mail_controller_spec.rb
59
+ - spec/dataset/mailer_dataset.rb
60
+ - spec/lib/mailer_process_spec.rb
61
+ - spec/lib/mailer_tags_spec.rb
62
+ - spec/models/mail_spec.rb
63
+ - spec/models/mailer_spec.rb
64
+ - spec/spec.opts
65
+ - spec/spec_helper.rb
66
+ has_rdoc: true
67
+ homepage: http://github.com/radiant/radiant-mailer-extension
68
+ licenses: []
69
+
70
+ post_install_message:
71
+ rdoc_options:
72
+ - --charset=UTF-8
73
+ require_paths:
74
+ - lib
75
+ required_ruby_version: !ruby/object:Gem::Requirement
76
+ requirements:
77
+ - - ">="
78
+ - !ruby/object:Gem::Version
79
+ segments:
80
+ - 0
81
+ version: "0"
82
+ required_rubygems_version: !ruby/object:Gem::Requirement
83
+ requirements:
84
+ - - ">="
85
+ - !ruby/object:Gem::Version
86
+ segments:
87
+ - 0
88
+ version: "0"
89
+ requirements: []
90
+
91
+ rubyforge_project:
92
+ rubygems_version: 1.3.6
93
+ signing_key:
94
+ specification_version: 3
95
+ summary: Enables form mail on a page.
96
+ test_files:
97
+ - spec/controllers/mail_controller_spec.rb
98
+ - spec/dataset/mailer_dataset.rb
99
+ - spec/lib/mailer_process_spec.rb
100
+ - spec/lib/mailer_tags_spec.rb
101
+ - spec/models/mail_spec.rb
102
+ - spec/models/mailer_spec.rb
103
+ - spec/spec_helper.rb