pointless_feedback 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/MIT-LICENSE +20 -0
- data/README.md +138 -0
- data/Rakefile +40 -0
- data/app/assets/javascripts/pointless_feedback/application.js +15 -0
- data/app/assets/stylesheets/pointless_feedback/application.css +13 -0
- data/app/controllers/pointless_feedback/messages_controller.rb +22 -0
- data/app/helpers/pointless_feedback/application_helper.rb +26 -0
- data/app/mailers/pointless_feedback/feedback_mailer.rb +16 -0
- data/app/models/pointless_feedback/message.rb +26 -0
- data/app/views/layouts/pointless_feedback/application.html.erb +14 -0
- data/app/views/pointless_feedback/feedback_mailer/feedback.html.erb +6 -0
- data/app/views/pointless_feedback/messages/new.html.erb +57 -0
- data/config/locales/en.yml +1 -0
- data/config/routes.rb +5 -0
- data/db/migrate/20130501182659_create_pointless_feedback_messages.rb +12 -0
- data/lib/generators/pointless_feedback/install_generator.rb +13 -0
- data/lib/generators/pointless_feedback/views_generator.rb +16 -0
- data/lib/generators/templates/pointless_feedback.rb +13 -0
- data/lib/pointless_feedback/controllers/helpers.rb +10 -0
- data/lib/pointless_feedback/engine.rb +13 -0
- data/lib/pointless_feedback/version.rb +3 -0
- data/lib/pointless_feedback.rb +32 -0
- data/lib/tasks/pointless_feedback_tasks.rake +4 -0
- data/test/dummy/README.rdoc +261 -0
- data/test/dummy/Rakefile +7 -0
- data/test/dummy/app/assets/javascripts/application.js +15 -0
- data/test/dummy/app/assets/stylesheets/application.css +13 -0
- data/test/dummy/app/controllers/application_controller.rb +3 -0
- data/test/dummy/app/controllers/home_controller.rb +4 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/views/home/index.html.erb +1 -0
- data/test/dummy/app/views/layouts/application.html.erb +16 -0
- data/test/dummy/config/application.rb +59 -0
- data/test/dummy/config/boot.rb +10 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +37 -0
- data/test/dummy/config/environments/production.rb +67 -0
- data/test/dummy/config/environments/test.rb +37 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/inflections.rb +15 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/secret_token.rb +7 -0
- data/test/dummy/config/initializers/session_store.rb +8 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +5 -0
- data/test/dummy/config/routes.rb +5 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/schema.rb +25 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +187 -0
- data/test/dummy/log/test.log +9624 -0
- data/test/dummy/public/404.html +26 -0
- data/test/dummy/public/422.html +26 -0
- data/test/dummy/public/500.html +25 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/script/rails +6 -0
- data/test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
- data/test/dummy/tmp/cache/assets/CDA/AF0/sprockets%2F2b009905de1eb97e693a12d62f76c221 +0 -0
- data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/test/dummy/tmp/cache/assets/D72/890/sprockets%2F6208de944cfe6b5b3c3c37c89d32f41a +0 -0
- data/test/dummy/tmp/cache/assets/DD9/830/sprockets%2Fc25e8f936dbc8c2b26c7c7b3d7ff6d13 +0 -0
- data/test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/test/dummy/tmp/cache/assets/E02/8C0/sprockets%2Fdcaacb4effc911c9573def4b74b82590 +0 -0
- data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/test/dummy/tmp/capybara/capybara-201306030928415341101962.html +48 -0
- data/test/dummy/tmp/capybara/capybara-201306030937025132981181.html +48 -0
- data/test/dummy/tmp/capybara/capybara-201306030937083494523886.html +48 -0
- data/test/dummy/tmp/capybara/capybara-20130603093722783471600.html +65 -0
- data/test/dummy/tmp/capybara/capybara-20130603094056611257399.html +241 -0
- data/test/dummy/tmp/capybara/capybara-201306030944524823294090.html +14 -0
- data/test/dummy/tmp/capybara/capybara-20130828105343685535937.html +50 -0
- data/test/dummy/tmp/capybara/capybara-201308281055176538066301.html +52 -0
- data/test/dummy/tmp/capybara/capybara-201311071553562925508230.html +58 -0
- data/test/factories/messages.rb +8 -0
- data/test/functional/pointless_feedback/feedback_mailer_test.rb +25 -0
- data/test/functional/pointless_feedback/messages_controller_test.rb +61 -0
- data/test/generators/install_generator_test.rb +14 -0
- data/test/generators/views_generator_test.rb +14 -0
- data/test/integration/pointless_feedback/feedback_submission_test.rb +54 -0
- data/test/integration/pointless_feedback/main_app_root_url_test.rb +9 -0
- data/test/pointless_feedback_test.rb +7 -0
- data/test/test_helper.rb +26 -0
- data/test/tmp/app/views/pointless_feedback/messages/new.html.erb +57 -0
- data/test/unit/helpers/pointless_feedback/application_helper_test.rb +39 -0
- data/test/unit/pointless_feedback/message_test.rb +96 -0
- metadata +280 -0
metadata
ADDED
@@ -0,0 +1,280 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: pointless_feedback
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Zachary Porter
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2013-11-07 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: rails
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ~>
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: 3.2.13
|
22
|
+
type: :runtime
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ~>
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: 3.2.13
|
30
|
+
- !ruby/object:Gem::Dependency
|
31
|
+
name: sqlite3
|
32
|
+
requirement: !ruby/object:Gem::Requirement
|
33
|
+
none: false
|
34
|
+
requirements:
|
35
|
+
- - ! '>='
|
36
|
+
- !ruby/object:Gem::Version
|
37
|
+
version: '0'
|
38
|
+
type: :development
|
39
|
+
prerelease: false
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ! '>='
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: '0'
|
46
|
+
- !ruby/object:Gem::Dependency
|
47
|
+
name: capybara
|
48
|
+
requirement: !ruby/object:Gem::Requirement
|
49
|
+
none: false
|
50
|
+
requirements:
|
51
|
+
- - ! '>='
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: '0'
|
54
|
+
type: :development
|
55
|
+
prerelease: false
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
58
|
+
requirements:
|
59
|
+
- - ! '>='
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
- !ruby/object:Gem::Dependency
|
63
|
+
name: factory_girl_rails
|
64
|
+
requirement: !ruby/object:Gem::Requirement
|
65
|
+
none: false
|
66
|
+
requirements:
|
67
|
+
- - ! '>='
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: '0'
|
70
|
+
type: :development
|
71
|
+
prerelease: false
|
72
|
+
version_requirements: !ruby/object:Gem::Requirement
|
73
|
+
none: false
|
74
|
+
requirements:
|
75
|
+
- - ! '>='
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
version: '0'
|
78
|
+
- !ruby/object:Gem::Dependency
|
79
|
+
name: launchy
|
80
|
+
requirement: !ruby/object:Gem::Requirement
|
81
|
+
none: false
|
82
|
+
requirements:
|
83
|
+
- - ! '>='
|
84
|
+
- !ruby/object:Gem::Version
|
85
|
+
version: '0'
|
86
|
+
type: :development
|
87
|
+
prerelease: false
|
88
|
+
version_requirements: !ruby/object:Gem::Requirement
|
89
|
+
none: false
|
90
|
+
requirements:
|
91
|
+
- - ! '>='
|
92
|
+
- !ruby/object:Gem::Version
|
93
|
+
version: '0'
|
94
|
+
description: Simple Rails Engine to allow users to submit feedback
|
95
|
+
email:
|
96
|
+
- developers@viget.com
|
97
|
+
executables: []
|
98
|
+
extensions: []
|
99
|
+
extra_rdoc_files: []
|
100
|
+
files:
|
101
|
+
- app/assets/javascripts/pointless_feedback/application.js
|
102
|
+
- app/assets/stylesheets/pointless_feedback/application.css
|
103
|
+
- app/controllers/pointless_feedback/messages_controller.rb
|
104
|
+
- app/helpers/pointless_feedback/application_helper.rb
|
105
|
+
- app/mailers/pointless_feedback/feedback_mailer.rb
|
106
|
+
- app/models/pointless_feedback/message.rb
|
107
|
+
- app/views/layouts/pointless_feedback/application.html.erb
|
108
|
+
- app/views/pointless_feedback/feedback_mailer/feedback.html.erb
|
109
|
+
- app/views/pointless_feedback/messages/new.html.erb
|
110
|
+
- config/locales/en.yml
|
111
|
+
- config/routes.rb
|
112
|
+
- db/migrate/20130501182659_create_pointless_feedback_messages.rb
|
113
|
+
- lib/generators/pointless_feedback/install_generator.rb
|
114
|
+
- lib/generators/pointless_feedback/views_generator.rb
|
115
|
+
- lib/generators/templates/pointless_feedback.rb
|
116
|
+
- lib/pointless_feedback/controllers/helpers.rb
|
117
|
+
- lib/pointless_feedback/engine.rb
|
118
|
+
- lib/pointless_feedback/version.rb
|
119
|
+
- lib/pointless_feedback.rb
|
120
|
+
- lib/tasks/pointless_feedback_tasks.rake
|
121
|
+
- MIT-LICENSE
|
122
|
+
- Rakefile
|
123
|
+
- README.md
|
124
|
+
- test/dummy/app/assets/javascripts/application.js
|
125
|
+
- test/dummy/app/assets/stylesheets/application.css
|
126
|
+
- test/dummy/app/controllers/application_controller.rb
|
127
|
+
- test/dummy/app/controllers/home_controller.rb
|
128
|
+
- test/dummy/app/helpers/application_helper.rb
|
129
|
+
- test/dummy/app/views/home/index.html.erb
|
130
|
+
- test/dummy/app/views/layouts/application.html.erb
|
131
|
+
- test/dummy/config/application.rb
|
132
|
+
- test/dummy/config/boot.rb
|
133
|
+
- test/dummy/config/database.yml
|
134
|
+
- test/dummy/config/environment.rb
|
135
|
+
- test/dummy/config/environments/development.rb
|
136
|
+
- test/dummy/config/environments/production.rb
|
137
|
+
- test/dummy/config/environments/test.rb
|
138
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
139
|
+
- test/dummy/config/initializers/inflections.rb
|
140
|
+
- test/dummy/config/initializers/mime_types.rb
|
141
|
+
- test/dummy/config/initializers/secret_token.rb
|
142
|
+
- test/dummy/config/initializers/session_store.rb
|
143
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
144
|
+
- test/dummy/config/locales/en.yml
|
145
|
+
- test/dummy/config/routes.rb
|
146
|
+
- test/dummy/config.ru
|
147
|
+
- test/dummy/db/development.sqlite3
|
148
|
+
- test/dummy/db/schema.rb
|
149
|
+
- test/dummy/db/test.sqlite3
|
150
|
+
- test/dummy/log/development.log
|
151
|
+
- test/dummy/log/test.log
|
152
|
+
- test/dummy/public/404.html
|
153
|
+
- test/dummy/public/422.html
|
154
|
+
- test/dummy/public/500.html
|
155
|
+
- test/dummy/public/favicon.ico
|
156
|
+
- test/dummy/Rakefile
|
157
|
+
- test/dummy/README.rdoc
|
158
|
+
- test/dummy/script/rails
|
159
|
+
- test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953
|
160
|
+
- test/dummy/tmp/cache/assets/CDA/AF0/sprockets%2F2b009905de1eb97e693a12d62f76c221
|
161
|
+
- test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705
|
162
|
+
- test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655
|
163
|
+
- test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6
|
164
|
+
- test/dummy/tmp/cache/assets/D72/890/sprockets%2F6208de944cfe6b5b3c3c37c89d32f41a
|
165
|
+
- test/dummy/tmp/cache/assets/DD9/830/sprockets%2Fc25e8f936dbc8c2b26c7c7b3d7ff6d13
|
166
|
+
- test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994
|
167
|
+
- test/dummy/tmp/cache/assets/E02/8C0/sprockets%2Fdcaacb4effc911c9573def4b74b82590
|
168
|
+
- test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af
|
169
|
+
- test/dummy/tmp/capybara/capybara-201306030928415341101962.html
|
170
|
+
- test/dummy/tmp/capybara/capybara-201306030937025132981181.html
|
171
|
+
- test/dummy/tmp/capybara/capybara-201306030937083494523886.html
|
172
|
+
- test/dummy/tmp/capybara/capybara-20130603093722783471600.html
|
173
|
+
- test/dummy/tmp/capybara/capybara-20130603094056611257399.html
|
174
|
+
- test/dummy/tmp/capybara/capybara-201306030944524823294090.html
|
175
|
+
- test/dummy/tmp/capybara/capybara-20130828105343685535937.html
|
176
|
+
- test/dummy/tmp/capybara/capybara-201308281055176538066301.html
|
177
|
+
- test/dummy/tmp/capybara/capybara-201311071553562925508230.html
|
178
|
+
- test/factories/messages.rb
|
179
|
+
- test/functional/pointless_feedback/feedback_mailer_test.rb
|
180
|
+
- test/functional/pointless_feedback/messages_controller_test.rb
|
181
|
+
- test/generators/install_generator_test.rb
|
182
|
+
- test/generators/views_generator_test.rb
|
183
|
+
- test/integration/pointless_feedback/feedback_submission_test.rb
|
184
|
+
- test/integration/pointless_feedback/main_app_root_url_test.rb
|
185
|
+
- test/pointless_feedback_test.rb
|
186
|
+
- test/test_helper.rb
|
187
|
+
- test/tmp/app/views/pointless_feedback/messages/new.html.erb
|
188
|
+
- test/unit/helpers/pointless_feedback/application_helper_test.rb
|
189
|
+
- test/unit/pointless_feedback/message_test.rb
|
190
|
+
homepage: https://github.com/vigetlabs/pointless-feedback
|
191
|
+
licenses: []
|
192
|
+
post_install_message:
|
193
|
+
rdoc_options: []
|
194
|
+
require_paths:
|
195
|
+
- lib
|
196
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
197
|
+
none: false
|
198
|
+
requirements:
|
199
|
+
- - ! '>='
|
200
|
+
- !ruby/object:Gem::Version
|
201
|
+
version: '0'
|
202
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
203
|
+
none: false
|
204
|
+
requirements:
|
205
|
+
- - ! '>='
|
206
|
+
- !ruby/object:Gem::Version
|
207
|
+
version: '0'
|
208
|
+
requirements: []
|
209
|
+
rubyforge_project:
|
210
|
+
rubygems_version: 1.8.25
|
211
|
+
signing_key:
|
212
|
+
specification_version: 3
|
213
|
+
summary: Simple Rails Engine to allow users to submit feedback
|
214
|
+
test_files:
|
215
|
+
- test/dummy/app/assets/javascripts/application.js
|
216
|
+
- test/dummy/app/assets/stylesheets/application.css
|
217
|
+
- test/dummy/app/controllers/application_controller.rb
|
218
|
+
- test/dummy/app/controllers/home_controller.rb
|
219
|
+
- test/dummy/app/helpers/application_helper.rb
|
220
|
+
- test/dummy/app/views/home/index.html.erb
|
221
|
+
- test/dummy/app/views/layouts/application.html.erb
|
222
|
+
- test/dummy/config/application.rb
|
223
|
+
- test/dummy/config/boot.rb
|
224
|
+
- test/dummy/config/database.yml
|
225
|
+
- test/dummy/config/environment.rb
|
226
|
+
- test/dummy/config/environments/development.rb
|
227
|
+
- test/dummy/config/environments/production.rb
|
228
|
+
- test/dummy/config/environments/test.rb
|
229
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
230
|
+
- test/dummy/config/initializers/inflections.rb
|
231
|
+
- test/dummy/config/initializers/mime_types.rb
|
232
|
+
- test/dummy/config/initializers/secret_token.rb
|
233
|
+
- test/dummy/config/initializers/session_store.rb
|
234
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
235
|
+
- test/dummy/config/locales/en.yml
|
236
|
+
- test/dummy/config/routes.rb
|
237
|
+
- test/dummy/config.ru
|
238
|
+
- test/dummy/db/development.sqlite3
|
239
|
+
- test/dummy/db/schema.rb
|
240
|
+
- test/dummy/db/test.sqlite3
|
241
|
+
- test/dummy/log/development.log
|
242
|
+
- test/dummy/log/test.log
|
243
|
+
- test/dummy/public/404.html
|
244
|
+
- test/dummy/public/422.html
|
245
|
+
- test/dummy/public/500.html
|
246
|
+
- test/dummy/public/favicon.ico
|
247
|
+
- test/dummy/Rakefile
|
248
|
+
- test/dummy/README.rdoc
|
249
|
+
- test/dummy/script/rails
|
250
|
+
- test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953
|
251
|
+
- test/dummy/tmp/cache/assets/CDA/AF0/sprockets%2F2b009905de1eb97e693a12d62f76c221
|
252
|
+
- test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705
|
253
|
+
- test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655
|
254
|
+
- test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6
|
255
|
+
- test/dummy/tmp/cache/assets/D72/890/sprockets%2F6208de944cfe6b5b3c3c37c89d32f41a
|
256
|
+
- test/dummy/tmp/cache/assets/DD9/830/sprockets%2Fc25e8f936dbc8c2b26c7c7b3d7ff6d13
|
257
|
+
- test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994
|
258
|
+
- test/dummy/tmp/cache/assets/E02/8C0/sprockets%2Fdcaacb4effc911c9573def4b74b82590
|
259
|
+
- test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af
|
260
|
+
- test/dummy/tmp/capybara/capybara-201306030928415341101962.html
|
261
|
+
- test/dummy/tmp/capybara/capybara-201306030937025132981181.html
|
262
|
+
- test/dummy/tmp/capybara/capybara-201306030937083494523886.html
|
263
|
+
- test/dummy/tmp/capybara/capybara-20130603093722783471600.html
|
264
|
+
- test/dummy/tmp/capybara/capybara-20130603094056611257399.html
|
265
|
+
- test/dummy/tmp/capybara/capybara-201306030944524823294090.html
|
266
|
+
- test/dummy/tmp/capybara/capybara-20130828105343685535937.html
|
267
|
+
- test/dummy/tmp/capybara/capybara-201308281055176538066301.html
|
268
|
+
- test/dummy/tmp/capybara/capybara-201311071553562925508230.html
|
269
|
+
- test/factories/messages.rb
|
270
|
+
- test/functional/pointless_feedback/feedback_mailer_test.rb
|
271
|
+
- test/functional/pointless_feedback/messages_controller_test.rb
|
272
|
+
- test/generators/install_generator_test.rb
|
273
|
+
- test/generators/views_generator_test.rb
|
274
|
+
- test/integration/pointless_feedback/feedback_submission_test.rb
|
275
|
+
- test/integration/pointless_feedback/main_app_root_url_test.rb
|
276
|
+
- test/pointless_feedback_test.rb
|
277
|
+
- test/test_helper.rb
|
278
|
+
- test/tmp/app/views/pointless_feedback/messages/new.html.erb
|
279
|
+
- test/unit/helpers/pointless_feedback/application_helper_test.rb
|
280
|
+
- test/unit/pointless_feedback/message_test.rb
|