bcms_contact_us 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.
- data/Copyright.txt +23 -0
- data/GPL.txt +674 -0
- data/Gemfile +33 -0
- data/LICENSE.txt +165 -0
- data/README +256 -0
- data/app/controllers/application_controller.rb +3 -0
- data/app/controllers/cms/contacts_controller.rb +2 -0
- data/app/helpers/application_helper.rb +2 -0
- data/app/models/contact.rb +10 -0
- data/app/portlets/contact_form_portlet.rb +22 -0
- data/app/portlets/helpers/contact_form_portlet_helper.rb +5 -0
- data/app/views/cms/contacts/_form.html.erb +7 -0
- data/app/views/cms/contacts/render.html.erb +7 -0
- data/app/views/layouts/application.html.erb +14 -0
- data/app/views/portlets/contact_form/_form.html.erb +3 -0
- data/app/views/portlets/contact_form/render.html.erb +21 -0
- data/db/migrate/20110906200737_create_contacts.rb +23 -0
- data/lib/bcms_contact_us/engine.rb +7 -0
- data/lib/bcms_contact_us/routes.rb +8 -0
- data/lib/bcms_contact_us.rb +3 -0
- data/lib/generators/bcms_contact_us/install/USAGE +10 -0
- data/lib/generators/bcms_contact_us/install/install_generator.rb +8 -0
- metadata +84 -0
metadata
ADDED
@@ -0,0 +1,84 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: bcms_contact_us
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- BrowserMedia
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2011-09-07 00:00:00.000000000Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: browsercms
|
16
|
+
requirement: &2153990460 !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ~>
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: 3.3.1
|
22
|
+
type: :runtime
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: *2153990460
|
25
|
+
description:
|
26
|
+
email: github@browsermedia.com
|
27
|
+
executables: []
|
28
|
+
extensions: []
|
29
|
+
extra_rdoc_files:
|
30
|
+
- README
|
31
|
+
files:
|
32
|
+
- app/controllers/application_controller.rb
|
33
|
+
- app/controllers/cms/contacts_controller.rb
|
34
|
+
- app/helpers/application_helper.rb
|
35
|
+
- app/models/contact.rb
|
36
|
+
- app/portlets/contact_form_portlet.rb
|
37
|
+
- app/portlets/helpers/contact_form_portlet_helper.rb
|
38
|
+
- app/views/cms/contacts/_form.html.erb
|
39
|
+
- app/views/cms/contacts/render.html.erb
|
40
|
+
- app/views/layouts/application.html.erb
|
41
|
+
- app/views/portlets/contact_form/_form.html.erb
|
42
|
+
- app/views/portlets/contact_form/render.html.erb
|
43
|
+
- db/migrate/20110906200737_create_contacts.rb
|
44
|
+
- lib/bcms_contact_us/engine.rb
|
45
|
+
- lib/bcms_contact_us/routes.rb
|
46
|
+
- lib/bcms_contact_us.rb
|
47
|
+
- lib/generators/bcms_contact_us/install/install_generator.rb
|
48
|
+
- lib/generators/bcms_contact_us/install/USAGE
|
49
|
+
- LICENSE.txt
|
50
|
+
- GPL.txt
|
51
|
+
- Gemfile
|
52
|
+
- Copyright.txt
|
53
|
+
- README
|
54
|
+
homepage: http://www.github.com/browsermedia/bcms_contact_us
|
55
|
+
licenses: []
|
56
|
+
post_install_message:
|
57
|
+
rdoc_options: []
|
58
|
+
require_paths:
|
59
|
+
- lib
|
60
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
61
|
+
none: false
|
62
|
+
requirements:
|
63
|
+
- - ! '>='
|
64
|
+
- !ruby/object:Gem::Version
|
65
|
+
version: '0'
|
66
|
+
segments:
|
67
|
+
- 0
|
68
|
+
hash: 1562104618848684215
|
69
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
70
|
+
none: false
|
71
|
+
requirements:
|
72
|
+
- - ! '>='
|
73
|
+
- !ruby/object:Gem::Version
|
74
|
+
version: '0'
|
75
|
+
segments:
|
76
|
+
- 0
|
77
|
+
hash: 1562104618848684215
|
78
|
+
requirements: []
|
79
|
+
rubyforge_project: bcms_contact_us
|
80
|
+
rubygems_version: 1.8.8
|
81
|
+
signing_key:
|
82
|
+
specification_version: 3
|
83
|
+
summary: A Bcms Contact Us Module for BrowserCMS
|
84
|
+
test_files: []
|