almanac 0.7.4 → 0.8.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.
- data/app/controllers/almanac/blogs_controller.rb +3 -8
- data/app/controllers/almanac/comments_controller.rb +8 -0
- data/app/views/almanac/blogs/_topbar.html.haml +2 -2
- data/app/views/almanac/comments/_topbar.html.haml +5 -0
- data/app/views/almanac/{blogs → comments}/spam.html.haml +0 -0
- data/app/views/layouts/almanac/application.html.haml +1 -1
- data/config/routes.rb +10 -6
- data/lib/almanac/version.rb +1 -1
- data/spec/controllers/blogs_controller_spec.rb +0 -16
- data/spec/controllers/comments_controller_spec.rb +15 -0
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/test.log +31618 -0
- metadata +8 -3
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: almanac
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.8.0
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-12-
|
12
|
+
date: 2012-12-28 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rails
|
@@ -419,7 +419,8 @@ files:
|
|
419
419
|
- app/views/almanac/blogs/_topbar.html.haml
|
420
420
|
- app/views/almanac/blogs/edit.html.haml
|
421
421
|
- app/views/almanac/blogs/new.html.haml
|
422
|
-
- app/views/almanac/
|
422
|
+
- app/views/almanac/comments/_topbar.html.haml
|
423
|
+
- app/views/almanac/comments/spam.html.haml
|
423
424
|
- app/views/almanac/posts/_form.html.haml
|
424
425
|
- app/views/almanac/posts/_post.html.haml
|
425
426
|
- app/views/almanac/posts/draft.html.haml
|
@@ -506,6 +507,8 @@ files:
|
|
506
507
|
- spec/dummy/db/migrate/20121116192008_add_slug_to_almanac_posts.almanac.rb
|
507
508
|
- spec/dummy/db/migrate/20121116195111_add_index_to_almanac_posts_on_slug.almanac.rb
|
508
509
|
- spec/dummy/db/schema.rb
|
510
|
+
- spec/dummy/db/test.sqlite3
|
511
|
+
- spec/dummy/log/test.log
|
509
512
|
- spec/dummy/public/404.html
|
510
513
|
- spec/dummy/public/422.html
|
511
514
|
- spec/dummy/public/500.html
|
@@ -592,6 +595,8 @@ test_files:
|
|
592
595
|
- spec/dummy/db/migrate/20121116192008_add_slug_to_almanac_posts.almanac.rb
|
593
596
|
- spec/dummy/db/migrate/20121116195111_add_index_to_almanac_posts_on_slug.almanac.rb
|
594
597
|
- spec/dummy/db/schema.rb
|
598
|
+
- spec/dummy/db/test.sqlite3
|
599
|
+
- spec/dummy/log/test.log
|
595
600
|
- spec/dummy/public/404.html
|
596
601
|
- spec/dummy/public/422.html
|
597
602
|
- spec/dummy/public/500.html
|