homesteading_publisher 0.2.0 → 0.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/controllers/homesteading_publisher/posts_controller.rb +94 -0
- data/app/views/homesteading_publisher/posts/_audio.html.erb +3 -0
- data/app/views/homesteading_publisher/posts/_flickr.html.erb +16 -0
- data/app/views/homesteading_publisher/posts/_form.html.erb +87 -0
- data/app/views/homesteading_publisher/posts/_image.html.erb +3 -0
- data/app/views/homesteading_publisher/posts/_instagram.html.erb +3 -0
- data/app/views/homesteading_publisher/posts/_post.html.erb +132 -0
- data/app/views/homesteading_publisher/posts/_thisismyjam.html.erb +13 -0
- data/app/views/homesteading_publisher/posts/_twitter.html.erb +1 -0
- data/app/views/homesteading_publisher/posts/_video.html.erb +3 -0
- data/app/views/homesteading_publisher/posts/_vimeo.html.erb +3 -0
- data/app/views/homesteading_publisher/posts/_vine.html.erb +3 -0
- data/app/views/homesteading_publisher/posts/_youtube.html.erb +8 -0
- data/app/views/homesteading_publisher/posts/edit.html.erb +3 -0
- data/app/views/homesteading_publisher/posts/index.atom.erb +53 -0
- data/app/views/homesteading_publisher/posts/index.html.erb +5 -0
- data/app/views/homesteading_publisher/posts/new.html.erb +3 -0
- data/app/views/homesteading_publisher/posts/show.html.erb +1 -0
- data/config/routes.rb +38 -0
- data/lib/homesteading_publisher/version.rb +1 -1
- data/spec/controllers/homesteading_publisher/posts_controllers_spec.rb +141 -0
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/log/development.log +118 -0
- data/spec/dummy/log/test.log +8496 -0
- metadata +39 -1
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: homesteading_publisher
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Shane Becker
|
@@ -25,6 +25,20 @@ dependencies:
|
|
25
25
|
- - "~>"
|
26
26
|
- !ruby/object:Gem::Version
|
27
27
|
version: 4.2.0
|
28
|
+
- !ruby/object:Gem::Dependency
|
29
|
+
name: will_paginate
|
30
|
+
requirement: !ruby/object:Gem::Requirement
|
31
|
+
requirements:
|
32
|
+
- - "~>"
|
33
|
+
- !ruby/object:Gem::Version
|
34
|
+
version: 3.0.6
|
35
|
+
type: :runtime
|
36
|
+
prerelease: false
|
37
|
+
version_requirements: !ruby/object:Gem::Requirement
|
38
|
+
requirements:
|
39
|
+
- - "~>"
|
40
|
+
- !ruby/object:Gem::Version
|
41
|
+
version: 3.0.6
|
28
42
|
- !ruby/object:Gem::Dependency
|
29
43
|
name: sqlite3
|
30
44
|
requirement: !ruby/object:Gem::Requirement
|
@@ -122,10 +136,28 @@ files:
|
|
122
136
|
- app/assets/stylesheets/homesteading_publisher/read.css.scss
|
123
137
|
- app/assets/stylesheets/homesteading_publisher/settings.css.scss
|
124
138
|
- app/controllers/homesteading_publisher/application_controller.rb
|
139
|
+
- app/controllers/homesteading_publisher/posts_controller.rb
|
125
140
|
- app/helpers/homesteading_publisher/application_helper.rb
|
126
141
|
- app/models/homesteading/post.rb
|
127
142
|
- app/models/license.rb
|
128
143
|
- app/models/setting.rb
|
144
|
+
- app/views/homesteading_publisher/posts/_audio.html.erb
|
145
|
+
- app/views/homesteading_publisher/posts/_flickr.html.erb
|
146
|
+
- app/views/homesteading_publisher/posts/_form.html.erb
|
147
|
+
- app/views/homesteading_publisher/posts/_image.html.erb
|
148
|
+
- app/views/homesteading_publisher/posts/_instagram.html.erb
|
149
|
+
- app/views/homesteading_publisher/posts/_post.html.erb
|
150
|
+
- app/views/homesteading_publisher/posts/_thisismyjam.html.erb
|
151
|
+
- app/views/homesteading_publisher/posts/_twitter.html.erb
|
152
|
+
- app/views/homesteading_publisher/posts/_video.html.erb
|
153
|
+
- app/views/homesteading_publisher/posts/_vimeo.html.erb
|
154
|
+
- app/views/homesteading_publisher/posts/_vine.html.erb
|
155
|
+
- app/views/homesteading_publisher/posts/_youtube.html.erb
|
156
|
+
- app/views/homesteading_publisher/posts/edit.html.erb
|
157
|
+
- app/views/homesteading_publisher/posts/index.atom.erb
|
158
|
+
- app/views/homesteading_publisher/posts/index.html.erb
|
159
|
+
- app/views/homesteading_publisher/posts/new.html.erb
|
160
|
+
- app/views/homesteading_publisher/posts/show.html.erb
|
129
161
|
- app/views/layouts/homesteading_publisher/application.html.erb
|
130
162
|
- config/routes.rb
|
131
163
|
- db/migrate/20150107224535_create_posts.rb
|
@@ -135,6 +167,7 @@ files:
|
|
135
167
|
- lib/homesteading_publisher/engine.rb
|
136
168
|
- lib/homesteading_publisher/version.rb
|
137
169
|
- lib/tasks/homesteading_publisher_tasks.rake
|
170
|
+
- spec/controllers/homesteading_publisher/posts_controllers_spec.rb
|
138
171
|
- spec/dummy/README.rdoc
|
139
172
|
- spec/dummy/Rakefile
|
140
173
|
- spec/dummy/app/assets/javascripts/application.js
|
@@ -165,8 +198,10 @@ files:
|
|
165
198
|
- spec/dummy/config/locales/en.yml
|
166
199
|
- spec/dummy/config/routes.rb
|
167
200
|
- spec/dummy/config/secrets.yml
|
201
|
+
- spec/dummy/db/development.sqlite3
|
168
202
|
- spec/dummy/db/schema.rb
|
169
203
|
- spec/dummy/db/test.sqlite3
|
204
|
+
- spec/dummy/log/development.log
|
170
205
|
- spec/dummy/log/test.log
|
171
206
|
- spec/dummy/public/404.html
|
172
207
|
- spec/dummy/public/422.html
|
@@ -205,6 +240,7 @@ specification_version: 4
|
|
205
240
|
summary: A generic Rails Engine that all HS-* post type publisher apps build on top
|
206
241
|
of.
|
207
242
|
test_files:
|
243
|
+
- spec/controllers/homesteading_publisher/posts_controllers_spec.rb
|
208
244
|
- spec/dummy/app/assets/javascripts/application.js
|
209
245
|
- spec/dummy/app/assets/stylesheets/application.css
|
210
246
|
- spec/dummy/app/controllers/application_controller.rb
|
@@ -233,8 +269,10 @@ test_files:
|
|
233
269
|
- spec/dummy/config/routes.rb
|
234
270
|
- spec/dummy/config/secrets.yml
|
235
271
|
- spec/dummy/config.ru
|
272
|
+
- spec/dummy/db/development.sqlite3
|
236
273
|
- spec/dummy/db/schema.rb
|
237
274
|
- spec/dummy/db/test.sqlite3
|
275
|
+
- spec/dummy/log/development.log
|
238
276
|
- spec/dummy/log/test.log
|
239
277
|
- spec/dummy/public/404.html
|
240
278
|
- spec/dummy/public/422.html
|