hitchens 0.0.1 → 0.0.2
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/app/controllers/hitchens/admin/base_controller.rb +20 -0
- data/app/controllers/hitchens/admin/posts_controller.rb +45 -0
- data/app/controllers/hitchens/application_controller.rb +2 -3
- data/app/controllers/hitchens/posts_controller.rb +2 -20
- data/app/decorators/hitchens/application_decorator.rb +1 -12
- data/app/decorators/hitchens/post_decorator.rb +13 -1
- data/app/views/hitchens/admin/base/index.html.haml +3 -0
- data/app/views/hitchens/{posts → admin/posts}/_form.html.haml +1 -1
- data/app/views/hitchens/admin/posts/_post.html.haml +7 -0
- data/app/views/hitchens/admin/posts/index.html.haml +7 -0
- data/app/views/hitchens/posts/_post.html.haml +3 -3
- data/app/views/hitchens/posts/index.html.haml +0 -1
- data/config/routes.rb +5 -0
- data/lib/hitchens/version.rb +1 -1
- data/lib/hitchens.rb +5 -1
- data/test/dummy/app/models/user.rb +5 -0
- data/test/dummy/app/views/layouts/application.html.erb +6 -0
- data/test/dummy/config/locales/en.yml +9 -1
- data/test/dummy/log/development.log +8008 -0
- metadata +12 -7
- /data/app/views/hitchens/{posts → admin/posts}/edit.html.haml +0 -0
- /data/app/views/hitchens/{posts → admin/posts}/new.html.haml +0 -0
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: hitchens
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 0.0.
|
5
|
+
version: 0.0.2
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Ian C. Anderson
|
@@ -10,7 +10,7 @@ autorequire:
|
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
|
13
|
-
date: 2011-12-
|
13
|
+
date: 2011-12-12 00:00:00 -05:00
|
14
14
|
default_executable:
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
@@ -148,6 +148,8 @@ files:
|
|
148
148
|
- app/assets/stylesheets/hitchens/application.css
|
149
149
|
- app/assets/stylesheets/hitchens/coderay.css.scss
|
150
150
|
- app/assets/stylesheets/hitchens/pagination.css.scss
|
151
|
+
- app/controllers/hitchens/admin/base_controller.rb
|
152
|
+
- app/controllers/hitchens/admin/posts_controller.rb
|
151
153
|
- app/controllers/hitchens/application_controller.rb
|
152
154
|
- app/controllers/hitchens/posts_controller.rb
|
153
155
|
- app/decorators/hitchens/application_decorator.rb
|
@@ -155,12 +157,15 @@ files:
|
|
155
157
|
- app/helpers/hitchens/application_helper.rb
|
156
158
|
- app/models/hitchens/ability.rb
|
157
159
|
- app/models/hitchens/post.rb
|
158
|
-
- app/views/hitchens/
|
160
|
+
- app/views/hitchens/admin/base/index.html.haml
|
161
|
+
- app/views/hitchens/admin/posts/_form.html.haml
|
162
|
+
- app/views/hitchens/admin/posts/_post.html.haml
|
163
|
+
- app/views/hitchens/admin/posts/edit.html.haml
|
164
|
+
- app/views/hitchens/admin/posts/index.html.haml
|
165
|
+
- app/views/hitchens/admin/posts/new.html.haml
|
159
166
|
- app/views/hitchens/posts/_post.html.haml
|
160
|
-
- app/views/hitchens/posts/edit.html.haml
|
161
167
|
- app/views/hitchens/posts/index.html.haml
|
162
168
|
- app/views/hitchens/posts/index.rss.builder
|
163
|
-
- app/views/hitchens/posts/new.html.haml
|
164
169
|
- app/views/hitchens/posts/show.html.haml
|
165
170
|
- app/views/layouts/hitchens/application.html.haml
|
166
171
|
- config/initializers/simple_form.rb
|
@@ -253,7 +258,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
253
258
|
requirements:
|
254
259
|
- - ">="
|
255
260
|
- !ruby/object:Gem::Version
|
256
|
-
hash:
|
261
|
+
hash: -2025843350640352976
|
257
262
|
segments:
|
258
263
|
- 0
|
259
264
|
version: "0"
|
@@ -262,7 +267,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
262
267
|
requirements:
|
263
268
|
- - ">="
|
264
269
|
- !ruby/object:Gem::Version
|
265
|
-
hash:
|
270
|
+
hash: -2025843350640352976
|
266
271
|
segments:
|
267
272
|
- 0
|
268
273
|
version: "0"
|
File without changes
|
File without changes
|