my-feedback-form 0.0.1
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/MIT-LICENSE +20 -0
- data/README.md +29 -0
- data/Rakefile +40 -0
- data/app/assets/javascripts/my-feedback-form/application.js +15 -0
- data/app/assets/javascripts/my_feedback_form/feedbacks.js +2 -0
- data/app/assets/stylesheets/my-feedback-form/application.css +13 -0
- data/app/assets/stylesheets/my_feedback_form/feedbacks.css +4 -0
- data/app/assets/stylesheets/scaffold.css +56 -0
- data/app/controllers/my_feedback_form/application_controller.rb +4 -0
- data/app/controllers/my_feedback_form/feedbacks_controller.rb +33 -0
- data/app/helpers/my_feedback_form/application_helper.rb +4 -0
- data/app/helpers/my_feedback_form/feedbacks_helper.rb +4 -0
- data/app/models/my_feedback_form/feedback.rb +5 -0
- data/app/models/my_feedback_form/feedback_type.rb +5 -0
- data/app/views/layouts/my-feedback-form/application.html.erb +14 -0
- data/app/views/my_feedback_form/feedbacks/_form.html.erb +29 -0
- data/app/views/my_feedback_form/feedbacks/new.html.erb +31 -0
- data/config/routes.rb +3 -0
- data/db/migrate/20130227125242_create_my_feedback_form_feedbacks.rb +12 -0
- data/db/migrate/20130227174853_create_my_feedback_form_feedback_types.rb +9 -0
- data/lib/my-feedback-form/engine.rb +9 -0
- data/lib/my-feedback-form/version.rb +3 -0
- data/lib/my-feedback-form.rb +4 -0
- data/lib/tasks/setup.rake +11 -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/helpers/application_helper.rb +2 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -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 +4 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/log/test.log +0 -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/fixtures/my_feedback_form/feedback_tipes.yml +7 -0
- data/test/fixtures/my_feedback_form/feedbacks.yml +13 -0
- data/test/functional/my_feedback_form/feedbacks_controller_test.rb +51 -0
- data/test/integration/navigation_test.rb +10 -0
- data/test/my-feedback-form_test.rb +7 -0
- data/test/test_helper.rb +15 -0
- data/test/unit/helpers/my_feedback_form/feedbacks_helper_test.rb +6 -0
- data/test/unit/my_feedback_form/feedback_test.rb +9 -0
- data/test/unit/my_feedback_form/feedback_tipe_test.rb +9 -0
- metadata +193 -0
metadata
ADDED
@@ -0,0 +1,193 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: my-feedback-form
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Guilherme Gonçalves
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2013-02-27 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.11
|
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.11
|
30
|
+
- !ruby/object:Gem::Dependency
|
31
|
+
name: jquery-rails
|
32
|
+
requirement: !ruby/object:Gem::Requirement
|
33
|
+
none: false
|
34
|
+
requirements:
|
35
|
+
- - ! '>='
|
36
|
+
- !ruby/object:Gem::Version
|
37
|
+
version: '0'
|
38
|
+
type: :runtime
|
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: sqlite3
|
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
|
+
description: Rails gem to provide feedback form for Rails 3 apps.
|
63
|
+
email:
|
64
|
+
- guilherme@webgoal.com.br
|
65
|
+
executables: []
|
66
|
+
extensions: []
|
67
|
+
extra_rdoc_files: []
|
68
|
+
files:
|
69
|
+
- app/assets/javascripts/my-feedback-form/application.js
|
70
|
+
- app/assets/javascripts/my_feedback_form/feedbacks.js
|
71
|
+
- app/assets/stylesheets/my-feedback-form/application.css
|
72
|
+
- app/assets/stylesheets/my_feedback_form/feedbacks.css
|
73
|
+
- app/assets/stylesheets/scaffold.css
|
74
|
+
- app/controllers/my_feedback_form/application_controller.rb
|
75
|
+
- app/controllers/my_feedback_form/feedbacks_controller.rb
|
76
|
+
- app/helpers/my_feedback_form/application_helper.rb
|
77
|
+
- app/helpers/my_feedback_form/feedbacks_helper.rb
|
78
|
+
- app/models/my_feedback_form/feedback.rb
|
79
|
+
- app/models/my_feedback_form/feedback_type.rb
|
80
|
+
- app/views/layouts/my-feedback-form/application.html.erb
|
81
|
+
- app/views/my_feedback_form/feedbacks/_form.html.erb
|
82
|
+
- app/views/my_feedback_form/feedbacks/new.html.erb
|
83
|
+
- config/routes.rb
|
84
|
+
- db/migrate/20130227125242_create_my_feedback_form_feedbacks.rb
|
85
|
+
- db/migrate/20130227174853_create_my_feedback_form_feedback_types.rb
|
86
|
+
- lib/my-feedback-form/engine.rb
|
87
|
+
- lib/my-feedback-form/version.rb
|
88
|
+
- lib/my-feedback-form.rb
|
89
|
+
- lib/tasks/setup.rake
|
90
|
+
- MIT-LICENSE
|
91
|
+
- Rakefile
|
92
|
+
- README.md
|
93
|
+
- test/dummy/app/assets/javascripts/application.js
|
94
|
+
- test/dummy/app/assets/stylesheets/application.css
|
95
|
+
- test/dummy/app/controllers/application_controller.rb
|
96
|
+
- test/dummy/app/helpers/application_helper.rb
|
97
|
+
- test/dummy/app/views/layouts/application.html.erb
|
98
|
+
- test/dummy/config/application.rb
|
99
|
+
- test/dummy/config/boot.rb
|
100
|
+
- test/dummy/config/database.yml
|
101
|
+
- test/dummy/config/environment.rb
|
102
|
+
- test/dummy/config/environments/development.rb
|
103
|
+
- test/dummy/config/environments/production.rb
|
104
|
+
- test/dummy/config/environments/test.rb
|
105
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
106
|
+
- test/dummy/config/initializers/inflections.rb
|
107
|
+
- test/dummy/config/initializers/mime_types.rb
|
108
|
+
- test/dummy/config/initializers/secret_token.rb
|
109
|
+
- test/dummy/config/initializers/session_store.rb
|
110
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
111
|
+
- test/dummy/config/locales/en.yml
|
112
|
+
- test/dummy/config/routes.rb
|
113
|
+
- test/dummy/config.ru
|
114
|
+
- test/dummy/log/test.log
|
115
|
+
- test/dummy/public/404.html
|
116
|
+
- test/dummy/public/422.html
|
117
|
+
- test/dummy/public/500.html
|
118
|
+
- test/dummy/public/favicon.ico
|
119
|
+
- test/dummy/Rakefile
|
120
|
+
- test/dummy/README.rdoc
|
121
|
+
- test/dummy/script/rails
|
122
|
+
- test/fixtures/my_feedback_form/feedback_tipes.yml
|
123
|
+
- test/fixtures/my_feedback_form/feedbacks.yml
|
124
|
+
- test/functional/my_feedback_form/feedbacks_controller_test.rb
|
125
|
+
- test/integration/navigation_test.rb
|
126
|
+
- test/my-feedback-form_test.rb
|
127
|
+
- test/test_helper.rb
|
128
|
+
- test/unit/helpers/my_feedback_form/feedbacks_helper_test.rb
|
129
|
+
- test/unit/my_feedback_form/feedback_test.rb
|
130
|
+
- test/unit/my_feedback_form/feedback_tipe_test.rb
|
131
|
+
homepage: https://github.com/guigonc/my-feedback-form
|
132
|
+
licenses: []
|
133
|
+
post_install_message:
|
134
|
+
rdoc_options: []
|
135
|
+
require_paths:
|
136
|
+
- lib
|
137
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
138
|
+
none: false
|
139
|
+
requirements:
|
140
|
+
- - ! '>='
|
141
|
+
- !ruby/object:Gem::Version
|
142
|
+
version: '0'
|
143
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
144
|
+
none: false
|
145
|
+
requirements:
|
146
|
+
- - ! '>='
|
147
|
+
- !ruby/object:Gem::Version
|
148
|
+
version: '0'
|
149
|
+
requirements: []
|
150
|
+
rubyforge_project:
|
151
|
+
rubygems_version: 1.8.24
|
152
|
+
signing_key:
|
153
|
+
specification_version: 3
|
154
|
+
summary: Rails gem to provide feedback form for Rails 3 apps.
|
155
|
+
test_files:
|
156
|
+
- test/dummy/app/assets/javascripts/application.js
|
157
|
+
- test/dummy/app/assets/stylesheets/application.css
|
158
|
+
- test/dummy/app/controllers/application_controller.rb
|
159
|
+
- test/dummy/app/helpers/application_helper.rb
|
160
|
+
- test/dummy/app/views/layouts/application.html.erb
|
161
|
+
- test/dummy/config/application.rb
|
162
|
+
- test/dummy/config/boot.rb
|
163
|
+
- test/dummy/config/database.yml
|
164
|
+
- test/dummy/config/environment.rb
|
165
|
+
- test/dummy/config/environments/development.rb
|
166
|
+
- test/dummy/config/environments/production.rb
|
167
|
+
- test/dummy/config/environments/test.rb
|
168
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
169
|
+
- test/dummy/config/initializers/inflections.rb
|
170
|
+
- test/dummy/config/initializers/mime_types.rb
|
171
|
+
- test/dummy/config/initializers/secret_token.rb
|
172
|
+
- test/dummy/config/initializers/session_store.rb
|
173
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
174
|
+
- test/dummy/config/locales/en.yml
|
175
|
+
- test/dummy/config/routes.rb
|
176
|
+
- test/dummy/config.ru
|
177
|
+
- test/dummy/log/test.log
|
178
|
+
- test/dummy/public/404.html
|
179
|
+
- test/dummy/public/422.html
|
180
|
+
- test/dummy/public/500.html
|
181
|
+
- test/dummy/public/favicon.ico
|
182
|
+
- test/dummy/Rakefile
|
183
|
+
- test/dummy/README.rdoc
|
184
|
+
- test/dummy/script/rails
|
185
|
+
- test/fixtures/my_feedback_form/feedback_tipes.yml
|
186
|
+
- test/fixtures/my_feedback_form/feedbacks.yml
|
187
|
+
- test/functional/my_feedback_form/feedbacks_controller_test.rb
|
188
|
+
- test/integration/navigation_test.rb
|
189
|
+
- test/my-feedback-form_test.rb
|
190
|
+
- test/test_helper.rb
|
191
|
+
- test/unit/helpers/my_feedback_form/feedbacks_helper_test.rb
|
192
|
+
- test/unit/my_feedback_form/feedback_test.rb
|
193
|
+
- test/unit/my_feedback_form/feedback_tipe_test.rb
|