content_block 0.0.2 → 0.0.3

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 606d706713ff5899bc2334c40545ca5b8c455837
4
- data.tar.gz: a2738fa366f807dabe7861ebb1838b27fc16274e
3
+ metadata.gz: 621f3ac62b6de0fd0f85b9f0006442e62c104f04
4
+ data.tar.gz: ca321c323d81c20a3465f669ae81e31b25d0be4f
5
5
  SHA512:
6
- metadata.gz: 316f2de938d81bd9d51e3101440cfa05dd76380956f2d2ad62d82718caf97ad2823eaaf60d9470460d9e8d04413a387c6ca131a44a826d3960bc88c5bdef343c
7
- data.tar.gz: 1920a34142a716aa36720197d00cb97e2cc26c19ca5dce6f40977535516ed053cd4df9d133966988ecaf89f17e6d080517f12dd3b963dcbd4214e7134427b8f2
6
+ metadata.gz: d43cd334cd566934d090c4fa4ab17255c49f2fb6ded893a150451843bcc0a4d7e0e4b394760a3a23acf5ae63b551c1328de5844af8100e084b041fb6509d11b8
7
+ data.tar.gz: 9caeffae972ccef356de0ecaea5075d2b87164e527a8cf08e17cc672f6af5da286070610089892a88c3ca03f4ed91280e0b676f3e055b664e08f8415f8c24fdd
data/README.md CHANGED
@@ -3,6 +3,7 @@
3
3
  [![Build Status](https://travis-ci.org/commonmedia/content_block.png)](https://travis-ci.org/commonmedia/content_block)
4
4
  [![Coverage Status](https://coveralls.io/repos/commonmedia/content_block/badge.png)](https://coveralls.io/r/commonmedia/content_block)
5
5
  [![Code Climate](https://codeclimate.com/github/commonmedia/content_block.png)](https://codeclimate.com/github/commonmedia/content_block)
6
+ [![Dependency Status](https://gemnasium.com/commonmedia/content_block.svg)](https://gemnasium.com/commonmedia/content_block)
6
7
  [![Gem Version](https://badge.fury.io/rb/content_block.svg)](http://badge.fury.io/rb/content_block)
7
8
 
8
9
  A block, as used within this gem, is a section of content (either an image, simple text, or rich text that includes markup).
@@ -49,11 +50,14 @@ To use a block in your view without displaying its title
49
50
 
50
51
  <%= rich_block('IDENTIFIER') %>
51
52
 
53
+ For example, if a block has an `id` of '1' and a `name` of 'content page', it can be displayed with either `<%= rich_block(1) %>` or `<%= rich_block('content page') %>`.
54
+
52
55
  To use a block in your view and display its title
53
56
  (`IDENTIFIER` is either the `name` or the `id` of the block to be displayed & `TAG` is the HTML tag you'd like the title to be wrapped in):
54
57
 
55
58
  <%= rich_block_with_title('IDENTIFIER', 'TAG') %>
56
59
 
60
+ For example, if a block has an `id` of '1' and you want to display its title in an `<h4>` tag, then it would be displayed with `<%= rich_block_with_title(1, 'h4') %>`.
57
61
 
58
62
  ## Contributing
59
63
 
@@ -1,3 +1,3 @@
1
1
  module ContentBlock
2
- VERSION = '0.0.2'
2
+ VERSION = '0.0.3'
3
3
  end
@@ -36726,3 +36726,223 @@ Processing by ContentBlock::RichBlocksController#create as HTML
36726
36726
  Redirected to http://test.host/content-block/rich-blocks/1
36727
36727
  Completed 302 Found in 8ms (ActiveRecord: 0.7ms)
36728
36728
   (0.5ms) rollback transaction
36729
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
36730
+  (0.1ms) begin transaction
36731
+  (0.1ms) rollback transaction
36732
+  (0.1ms) begin transaction
36733
+  (0.1ms) rollback transaction
36734
+  (0.0ms) begin transaction
36735
+  (0.0ms) rollback transaction
36736
+  (0.0ms) begin transaction
36737
+  (0.0ms) rollback transaction
36738
+  (0.1ms) begin transaction
36739
+  (0.1ms) rollback transaction
36740
+  (0.1ms) begin transaction
36741
+  (0.1ms) rollback transaction
36742
+  (0.1ms) begin transaction
36743
+  (0.1ms) SAVEPOINT active_record_1
36744
+ SQL (0.4ms) INSERT INTO "content_block_rich_blocks" ("content", "created_at", "name", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["content", "Content"], ["created_at", "2014-05-07 13:17:43.681045"], ["name", "Name"], ["title", "Title"], ["updated_at", "2014-05-07 13:17:43.681045"]]
36745
+  (0.0ms) RELEASE SAVEPOINT active_record_1
36746
+ ContentBlock::RichBlock Load (0.1ms) SELECT "content_block_rich_blocks".* FROM "content_block_rich_blocks" WHERE (id = 'Name' OR name = 'Name') ORDER BY "content_block_rich_blocks"."id" ASC LIMIT 1
36747
+  (0.4ms) rollback transaction
36748
+  (0.1ms) begin transaction
36749
+  (0.0ms) SAVEPOINT active_record_1
36750
+ SQL (0.3ms) INSERT INTO "content_block_rich_blocks" ("content", "created_at", "name", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["content", "Content"], ["created_at", "2014-05-07 13:17:43.689643"], ["name", "Name"], ["title", "Title"], ["updated_at", "2014-05-07 13:17:43.689643"]]
36751
+  (0.1ms) RELEASE SAVEPOINT active_record_1
36752
+ ContentBlock::RichBlock Load (0.2ms) SELECT "content_block_rich_blocks".* FROM "content_block_rich_blocks" WHERE (id = 'Name' OR name = 'Name') ORDER BY "content_block_rich_blocks"."id" ASC LIMIT 1
36753
+  (0.4ms) rollback transaction
36754
+  (0.1ms) begin transaction
36755
+ Rendered /Users/jchevalier/Documents/Code/CommonMedia/content_block/app/views/content_block/rich_blocks/_form.html.erb (26.8ms)
36756
+  (0.1ms) rollback transaction
36757
+  (0.1ms) begin transaction
36758
+  (0.1ms) rollback transaction
36759
+  (0.1ms) begin transaction
36760
+  (0.1ms) rollback transaction
36761
+  (0.1ms) begin transaction
36762
+  (0.1ms) rollback transaction
36763
+  (0.1ms) begin transaction
36764
+  (0.1ms) rollback transaction
36765
+  (0.1ms) begin transaction
36766
+  (0.1ms) SAVEPOINT active_record_1
36767
+ SQL (0.4ms) INSERT INTO "content_block_rich_blocks" ("content", "created_at", "name", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["content", "Content"], ["created_at", "2014-05-07 13:17:43.792676"], ["name", "Name"], ["title", "Title"], ["updated_at", "2014-05-07 13:17:43.792676"]]
36768
+  (0.1ms) RELEASE SAVEPOINT active_record_1
36769
+ Processing by ContentBlock::RichBlocksController#index as HTML
36770
+ Completed 200 OK in 9ms (Views: 5.3ms | ActiveRecord: 0.0ms)
36771
+ ContentBlock::RichBlock Load (0.2ms) SELECT "content_block_rich_blocks".* FROM "content_block_rich_blocks"
36772
+  (0.6ms) rollback transaction
36773
+  (0.1ms) begin transaction
36774
+  (0.1ms) SAVEPOINT active_record_1
36775
+ SQL (0.3ms) INSERT INTO "content_block_rich_blocks" ("content", "created_at", "name", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["content", "Content"], ["created_at", "2014-05-07 13:17:43.809999"], ["name", "Name"], ["title", "Title"], ["updated_at", "2014-05-07 13:17:43.809999"]]
36776
+  (0.1ms) RELEASE SAVEPOINT active_record_1
36777
+ Processing by ContentBlock::RichBlocksController#show as HTML
36778
+ Parameters: {"id"=>"1"}
36779
+ ContentBlock::RichBlock Load (0.1ms) SELECT "content_block_rich_blocks".* FROM "content_block_rich_blocks" WHERE "content_block_rich_blocks"."id" = ? LIMIT 1 [["id", 1]]
36780
+ Completed 200 OK in 6ms (Views: 2.4ms | ActiveRecord: 0.1ms)
36781
+  (0.8ms) rollback transaction
36782
+  (0.1ms) begin transaction
36783
+  (0.1ms) SAVEPOINT active_record_1
36784
+ SQL (0.4ms) INSERT INTO "content_block_rich_blocks" ("content", "created_at", "name", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["content", "Content"], ["created_at", "2014-05-07 13:17:43.823682"], ["name", "Name"], ["title", "Title"], ["updated_at", "2014-05-07 13:17:43.823682"]]
36785
+  (0.1ms) RELEASE SAVEPOINT active_record_1
36786
+  (0.2ms) SELECT COUNT(*) FROM "content_block_rich_blocks"
36787
+ Processing by ContentBlock::RichBlocksController#destroy as HTML
36788
+ Parameters: {"id"=>"1"}
36789
+ ContentBlock::RichBlock Load (0.1ms) SELECT "content_block_rich_blocks".* FROM "content_block_rich_blocks" WHERE "content_block_rich_blocks"."id" = ? LIMIT 1 [["id", 1]]
36790
+  (0.1ms) SAVEPOINT active_record_1
36791
+ SQL (1.6ms) DELETE FROM "content_block_rich_blocks" WHERE "content_block_rich_blocks"."id" = ? [["id", 1]]
36792
+  (0.1ms) RELEASE SAVEPOINT active_record_1
36793
+ Redirected to http://test.host/content-block/rich-blocks
36794
+ Completed 302 Found in 9ms (ActiveRecord: 1.9ms)
36795
+  (0.1ms) SELECT COUNT(*) FROM "content_block_rich_blocks"
36796
+  (0.6ms) rollback transaction
36797
+  (0.1ms) begin transaction
36798
+  (0.1ms) SAVEPOINT active_record_1
36799
+ SQL (0.5ms) INSERT INTO "content_block_rich_blocks" ("content", "created_at", "name", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["content", "Content"], ["created_at", "2014-05-07 13:17:43.847298"], ["name", "Name"], ["title", "Title"], ["updated_at", "2014-05-07 13:17:43.847298"]]
36800
+  (0.1ms) RELEASE SAVEPOINT active_record_1
36801
+ Processing by ContentBlock::RichBlocksController#destroy as HTML
36802
+ Parameters: {"id"=>"1"}
36803
+ ContentBlock::RichBlock Load (0.1ms) SELECT "content_block_rich_blocks".* FROM "content_block_rich_blocks" WHERE "content_block_rich_blocks"."id" = ? LIMIT 1 [["id", 1]]
36804
+  (0.1ms) SAVEPOINT active_record_1
36805
+ SQL (0.3ms) DELETE FROM "content_block_rich_blocks" WHERE "content_block_rich_blocks"."id" = ? [["id", 1]]
36806
+  (0.1ms) RELEASE SAVEPOINT active_record_1
36807
+ Redirected to http://test.host/content-block/rich-blocks
36808
+ Completed 302 Found in 6ms (ActiveRecord: 0.5ms)
36809
+  (0.4ms) rollback transaction
36810
+  (0.1ms) begin transaction
36811
+  (0.1ms) SAVEPOINT active_record_1
36812
+ SQL (0.3ms) INSERT INTO "content_block_rich_blocks" ("content", "created_at", "name", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["content", "Content"], ["created_at", "2014-05-07 13:17:43.859444"], ["name", "Name"], ["title", "Title"], ["updated_at", "2014-05-07 13:17:43.859444"]]
36813
+  (0.0ms) RELEASE SAVEPOINT active_record_1
36814
+ Processing by ContentBlock::RichBlocksController#update as HTML
36815
+ Parameters: {"rich_block"=>{"name"=>"MyString"}, "id"=>"1"}
36816
+ ContentBlock::RichBlock Load (0.1ms) SELECT "content_block_rich_blocks".* FROM "content_block_rich_blocks" WHERE "content_block_rich_blocks"."id" = ? LIMIT 1 [["id", 1]]
36817
+ Completed 200 OK in 6ms (Views: 2.2ms | ActiveRecord: 0.1ms)
36818
+  (0.4ms) rollback transaction
36819
+  (0.0ms) begin transaction
36820
+  (0.1ms) SAVEPOINT active_record_1
36821
+ SQL (0.3ms) INSERT INTO "content_block_rich_blocks" ("content", "created_at", "name", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["content", "Content"], ["created_at", "2014-05-07 13:17:43.870420"], ["name", "Name"], ["title", "Title"], ["updated_at", "2014-05-07 13:17:43.870420"]]
36822
+  (0.1ms) RELEASE SAVEPOINT active_record_1
36823
+ Processing by ContentBlock::RichBlocksController#update as HTML
36824
+ Parameters: {"rich_block"=>{"name"=>"Name", "title"=>"Title", "content"=>"Content"}, "id"=>"1"}
36825
+ ContentBlock::RichBlock Load (0.1ms) SELECT "content_block_rich_blocks".* FROM "content_block_rich_blocks" WHERE "content_block_rich_blocks"."id" = ? LIMIT 1 [["id", 1]]
36826
+  (0.1ms) SAVEPOINT active_record_1
36827
+  (0.0ms) RELEASE SAVEPOINT active_record_1
36828
+ Redirected to http://test.host/content-block/rich-blocks/1
36829
+ Completed 302 Found in 4ms (ActiveRecord: 0.2ms)
36830
+  (0.5ms) rollback transaction
36831
+  (0.1ms) begin transaction
36832
+  (0.1ms) SAVEPOINT active_record_1
36833
+ SQL (0.3ms) INSERT INTO "content_block_rich_blocks" ("content", "created_at", "name", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["content", "Content"], ["created_at", "2014-05-07 13:17:43.880574"], ["name", "Name"], ["title", "Title"], ["updated_at", "2014-05-07 13:17:43.880574"]]
36834
+  (0.1ms) RELEASE SAVEPOINT active_record_1
36835
+ Processing by ContentBlock::RichBlocksController#update as HTML
36836
+ Parameters: {"rich_block"=>{"name"=>"Name", "title"=>"Title", "content"=>"Content"}, "id"=>"1"}
36837
+ ContentBlock::RichBlock Load (0.1ms) SELECT "content_block_rich_blocks".* FROM "content_block_rich_blocks" WHERE "content_block_rich_blocks"."id" = ? LIMIT 1 [["id", 1]]
36838
+  (0.1ms) SAVEPOINT active_record_1
36839
+  (0.1ms) RELEASE SAVEPOINT active_record_1
36840
+ Redirected to http://test.host/content-block/rich-blocks/1
36841
+ Completed 302 Found in 5ms (ActiveRecord: 0.2ms)
36842
+  (0.4ms) rollback transaction
36843
+  (0.1ms) begin transaction
36844
+  (0.1ms) SAVEPOINT active_record_1
36845
+ SQL (0.3ms) INSERT INTO "content_block_rich_blocks" ("content", "created_at", "name", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["content", "Content"], ["created_at", "2014-05-07 13:17:43.892197"], ["name", "Name"], ["title", "Title"], ["updated_at", "2014-05-07 13:17:43.892197"]]
36846
+  (0.1ms) RELEASE SAVEPOINT active_record_1
36847
+ Processing by ContentBlock::RichBlocksController#update as HTML
36848
+ Parameters: {"rich_block"=>{"name"=>"invalid value"}, "id"=>"1"}
36849
+ ContentBlock::RichBlock Load (0.1ms) SELECT "content_block_rich_blocks".* FROM "content_block_rich_blocks" WHERE "content_block_rich_blocks"."id" = ? LIMIT 1 [["id", 1]]
36850
+  (0.1ms) SAVEPOINT active_record_1
36851
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
36852
+ Completed 200 OK in 5ms (Views: 1.0ms | ActiveRecord: 0.2ms)
36853
+  (0.5ms) rollback transaction
36854
+  (0.1ms) begin transaction
36855
+  (0.1ms) SAVEPOINT active_record_1
36856
+ SQL (0.3ms) INSERT INTO "content_block_rich_blocks" ("content", "created_at", "name", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["content", "Content"], ["created_at", "2014-05-07 13:17:43.902909"], ["name", "Name"], ["title", "Title"], ["updated_at", "2014-05-07 13:17:43.902909"]]
36857
+  (0.1ms) RELEASE SAVEPOINT active_record_1
36858
+ Processing by ContentBlock::RichBlocksController#update as HTML
36859
+ Parameters: {"rich_block"=>{"name"=>"invalid value"}, "id"=>"1"}
36860
+ ContentBlock::RichBlock Load (0.1ms) SELECT "content_block_rich_blocks".* FROM "content_block_rich_blocks" WHERE "content_block_rich_blocks"."id" = ? LIMIT 1 [["id", 1]]
36861
+  (0.1ms) SAVEPOINT active_record_1
36862
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
36863
+ Completed 200 OK in 5ms (Views: 1.0ms | ActiveRecord: 0.2ms)
36864
+  (0.6ms) rollback transaction
36865
+  (0.1ms) begin transaction
36866
+ Processing by ContentBlock::RichBlocksController#new as HTML
36867
+ Completed 200 OK in 7ms (Views: 2.9ms | ActiveRecord: 0.0ms)
36868
+  (0.1ms) rollback transaction
36869
+  (0.1ms) begin transaction
36870
+  (0.1ms) SAVEPOINT active_record_1
36871
+ SQL (0.3ms) INSERT INTO "content_block_rich_blocks" ("content", "created_at", "name", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["content", "Content"], ["created_at", "2014-05-07 13:17:43.925974"], ["name", "Name"], ["title", "Title"], ["updated_at", "2014-05-07 13:17:43.925974"]]
36872
+  (0.1ms) RELEASE SAVEPOINT active_record_1
36873
+ Processing by ContentBlock::RichBlocksController#edit as HTML
36874
+ Parameters: {"id"=>"1"}
36875
+ ContentBlock::RichBlock Load (0.1ms) SELECT "content_block_rich_blocks".* FROM "content_block_rich_blocks" WHERE "content_block_rich_blocks"."id" = ? LIMIT 1 [["id", 1]]
36876
+ Completed 200 OK in 4ms (Views: 1.1ms | ActiveRecord: 0.1ms)
36877
+  (0.5ms) rollback transaction
36878
+  (0.1ms) begin transaction
36879
+ Processing by ContentBlock::RichBlocksController#index as HTML
36880
+ Redirected to http://test.host/users/sign_in
36881
+ Completed 302 Found in 4ms (ActiveRecord: 0.0ms)
36882
+  (0.1ms) rollback transaction
36883
+  (0.0ms) begin transaction
36884
+  (0.2ms) SELECT COUNT(*) FROM "content_block_rich_blocks"
36885
+ Processing by ContentBlock::RichBlocksController#create as HTML
36886
+ Parameters: {"rich_block"=>{"name"=>"Name", "title"=>"Title", "content"=>"Content"}}
36887
+  (0.1ms) SAVEPOINT active_record_1
36888
+ SQL (0.3ms) INSERT INTO "content_block_rich_blocks" ("content", "created_at", "name", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["content", "Content"], ["created_at", "2014-05-07 13:17:43.948755"], ["name", "Name"], ["title", "Title"], ["updated_at", "2014-05-07 13:17:43.948755"]]
36889
+  (0.0ms) RELEASE SAVEPOINT active_record_1
36890
+ Redirected to http://test.host/content-block/rich-blocks/1
36891
+ Completed 302 Found in 5ms (ActiveRecord: 0.4ms)
36892
+  (0.1ms) SELECT COUNT(*) FROM "content_block_rich_blocks"
36893
+  (0.4ms) rollback transaction
36894
+  (0.1ms) begin transaction
36895
+ Processing by ContentBlock::RichBlocksController#create as HTML
36896
+ Parameters: {"rich_block"=>{"name"=>"Name", "title"=>"Title", "content"=>"Content"}}
36897
+  (0.1ms) SAVEPOINT active_record_1
36898
+ SQL (0.3ms) INSERT INTO "content_block_rich_blocks" ("content", "created_at", "name", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["content", "Content"], ["created_at", "2014-05-07 13:17:43.958266"], ["name", "Name"], ["title", "Title"], ["updated_at", "2014-05-07 13:17:43.958266"]]
36899
+  (0.1ms) RELEASE SAVEPOINT active_record_1
36900
+ Redirected to http://test.host/content-block/rich-blocks/1
36901
+ Completed 302 Found in 5ms (ActiveRecord: 0.4ms)
36902
+  (0.6ms) rollback transaction
36903
+  (0.1ms) begin transaction
36904
+ Processing by ContentBlock::RichBlocksController#create as HTML
36905
+ Parameters: {"rich_block"=>{"name"=>"Name", "title"=>"Title", "content"=>"Content"}}
36906
+  (0.1ms) SAVEPOINT active_record_1
36907
+ SQL (0.3ms) INSERT INTO "content_block_rich_blocks" ("content", "created_at", "name", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["content", "Content"], ["created_at", "2014-05-07 13:17:43.968412"], ["name", "Name"], ["title", "Title"], ["updated_at", "2014-05-07 13:17:43.968412"]]
36908
+  (0.1ms) RELEASE SAVEPOINT active_record_1
36909
+ Redirected to http://test.host/content-block/rich-blocks/1
36910
+ Completed 302 Found in 5ms (ActiveRecord: 0.5ms)
36911
+ ContentBlock::RichBlock Load (0.1ms) SELECT "content_block_rich_blocks".* FROM "content_block_rich_blocks" ORDER BY "content_block_rich_blocks"."id" DESC LIMIT 1
36912
+  (0.5ms) rollback transaction
36913
+  (0.1ms) begin transaction
36914
+ Processing by ContentBlock::RichBlocksController#create as HTML
36915
+ Parameters: {"rich_block"=>{"name"=>"invalid value"}}
36916
+ Completed 200 OK in 4ms (Views: 0.9ms | ActiveRecord: 0.0ms)
36917
+  (0.1ms) rollback transaction
36918
+  (0.1ms) begin transaction
36919
+ Processing by ContentBlock::RichBlocksController#create as HTML
36920
+ Parameters: {"rich_block"=>{"name"=>"invalid value"}}
36921
+ Completed 200 OK in 4ms (Views: 0.9ms | ActiveRecord: 0.0ms)
36922
+  (0.1ms) rollback transaction
36923
+  (0.1ms) begin transaction
36924
+  (0.1ms) rollback transaction
36925
+  (0.0ms) begin transaction
36926
+  (0.1ms) rollback transaction
36927
+  (0.0ms) begin transaction
36928
+  (0.0ms) rollback transaction
36929
+  (0.1ms) begin transaction
36930
+  (0.0ms) rollback transaction
36931
+  (0.0ms) begin transaction
36932
+  (0.1ms) rollback transaction
36933
+  (0.0ms) begin transaction
36934
+  (0.0ms) rollback transaction
36935
+  (0.1ms) begin transaction
36936
+  (0.1ms) rollback transaction
36937
+  (0.1ms) begin transaction
36938
+ Rendered /Users/jchevalier/Documents/Code/CommonMedia/content_block/app/views/content_block/rich_blocks/_form.html.erb (7.1ms)
36939
+  (0.1ms) rollback transaction
36940
+  (0.1ms) begin transaction
36941
+ Processing by ContentBlock::AdminController#index as HTML
36942
+ Completed 200 OK in 9ms (Views: 6.7ms | ActiveRecord: 0.0ms)
36943
+  (0.1ms) rollback transaction
36944
+  (0.1ms) begin transaction
36945
+ Processing by ContentBlock::AdminController#index as HTML
36946
+ Redirected to http://test.host/users/sign_in
36947
+ Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
36948
+  (0.1ms) rollback transaction
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: content_block
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Chevalier
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-04-24 00:00:00.000000000 Z
11
+ date: 2014-05-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails