simple_contact 0.0.10 → 0.9.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.
- checksums.yaml +4 -4
- data/lib/simple_contact/version.rb +1 -1
- metadata +14 -14
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3bbaa42a88fc00c8a3c64650a2034e9d3162f5be
|
|
4
|
+
data.tar.gz: dd9d9d3de375177f8ec4481e6a230d36913bc9fc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 02a8b6c1863b48e1be66239d79440774e970f82fdcfa26963391ee149b8b571e2ff97153e17a1a10ae0705689502214ce01c428bdea241d638767a1d15a112ff
|
|
7
|
+
data.tar.gz: 09f03163aa52dd433cc7343f2c5966d4ddee39880fda3aca038a1a5da9ff54b5505a222767823dc5ea4c5628abdc95e6a16483ed9082cfd59aecdcf0533875f7
|
metadata
CHANGED
|
@@ -1,29 +1,29 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: simple_contact
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0
|
|
4
|
+
version: 0.9.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ben Eggett
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2014-02-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
-
- -
|
|
17
|
+
- - '>'
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 3.
|
|
19
|
+
version: '3.0'
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
|
-
- -
|
|
24
|
+
- - '>'
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: 3.
|
|
26
|
+
version: '3.0'
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: sqlite3
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -102,6 +102,9 @@ executables: []
|
|
|
102
102
|
extensions: []
|
|
103
103
|
extra_rdoc_files: []
|
|
104
104
|
files:
|
|
105
|
+
- MIT-LICENSE
|
|
106
|
+
- README.rdoc
|
|
107
|
+
- Rakefile
|
|
105
108
|
- app/controllers/simple_contact/application_controller.rb
|
|
106
109
|
- app/controllers/simple_contact/contact_controller.rb
|
|
107
110
|
- app/mailers/simple_contact/contact_mailer.rb
|
|
@@ -110,14 +113,13 @@ files:
|
|
|
110
113
|
- app/views/simple_contact/contact_mailer/contact_message.html.erb
|
|
111
114
|
- config/locales/en.yml
|
|
112
115
|
- config/routes.rb
|
|
116
|
+
- lib/simple_contact.rb
|
|
113
117
|
- lib/simple_contact/engine.rb
|
|
114
118
|
- lib/simple_contact/version.rb
|
|
115
|
-
- lib/simple_contact.rb
|
|
116
119
|
- lib/tasks/simple_contact_tasks.rake
|
|
117
|
-
- MIT-LICENSE
|
|
118
|
-
- Rakefile
|
|
119
|
-
- README.rdoc
|
|
120
120
|
- test/controllers/contact_controller_test.rb
|
|
121
|
+
- test/dummy/README.rdoc
|
|
122
|
+
- test/dummy/Rakefile
|
|
121
123
|
- test/dummy/app/assets/javascripts/application.js
|
|
122
124
|
- test/dummy/app/assets/javascripts/home.js
|
|
123
125
|
- test/dummy/app/assets/stylesheets/application.css
|
|
@@ -128,6 +130,7 @@ files:
|
|
|
128
130
|
- test/dummy/app/helpers/home_helper.rb
|
|
129
131
|
- test/dummy/app/views/home/index.html.erb
|
|
130
132
|
- test/dummy/app/views/layouts/application.html.erb
|
|
133
|
+
- test/dummy/config.ru
|
|
131
134
|
- test/dummy/config/application.rb
|
|
132
135
|
- test/dummy/config/boot.rb
|
|
133
136
|
- test/dummy/config/database.yml
|
|
@@ -143,7 +146,6 @@ files:
|
|
|
143
146
|
- test/dummy/config/initializers/wrap_parameters.rb
|
|
144
147
|
- test/dummy/config/locales/en.yml
|
|
145
148
|
- test/dummy/config/routes.rb
|
|
146
|
-
- test/dummy/config.ru
|
|
147
149
|
- test/dummy/db/development.sqlite3
|
|
148
150
|
- test/dummy/db/test.sqlite3
|
|
149
151
|
- test/dummy/log/development.log
|
|
@@ -152,8 +154,6 @@ files:
|
|
|
152
154
|
- test/dummy/public/422.html
|
|
153
155
|
- test/dummy/public/500.html
|
|
154
156
|
- test/dummy/public/favicon.ico
|
|
155
|
-
- test/dummy/Rakefile
|
|
156
|
-
- test/dummy/README.rdoc
|
|
157
157
|
- test/dummy/script/rails
|
|
158
158
|
- test/dummy/test/controllers/home_controller_test.rb
|
|
159
159
|
- test/dummy/test/helpers/home_helper_test.rb
|
|
@@ -220,7 +220,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
220
220
|
version: '0'
|
|
221
221
|
requirements: []
|
|
222
222
|
rubyforge_project:
|
|
223
|
-
rubygems_version: 2.
|
|
223
|
+
rubygems_version: 2.2.2
|
|
224
224
|
signing_key:
|
|
225
225
|
specification_version: 4
|
|
226
226
|
summary: Provides a stupidly simple contact form with bootstrap class theming for
|