effective_regions 1.7.0 → 1.7.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f75dc0ebf11900963b41d520af16a88822f5276b
4
- data.tar.gz: 30ac85af16512af9f18ea1145f8d3ea7ac130819
3
+ metadata.gz: 28e119931bde8421be50503ff7e353d3747d81b0
4
+ data.tar.gz: aeab78b81f9b22647ec58aa7bf06969e0ae751de
5
5
  SHA512:
6
- metadata.gz: c7b2342d0c058c80f8921f327ffbbcbf68122115e00d67a8e0923aa6dbe7ec2bd651d2080e638214fb2dc8768958270f57151261f74b698c5877f73ffdbd6764
7
- data.tar.gz: 38d3464c283040bae181bfd7b5567af3de7da424165c166790702621ecbd9edc5e1d7bc04efe149531c8326313f91100abb5a3333349fc6a65392fd3f92f8388
6
+ metadata.gz: cf7d4865813fa45444cda7e6eb8b6a9c7b6a2dd44e9ca08c13ea664cec9ed3aa6fd86fdcad2e5794e7522177494de53dbc345a03f10723fa799160d95f4bcfde
7
+ data.tar.gz: e0e17629df502b9ecb1480642c74dd02705338b34ac48163aeec3d4d292251880b17f337bbb69dd7cdbfa14ca3331ef01d2ead0e8bb58215d87cd1e87dcee845
@@ -0,0 +1,9 @@
1
+ module Effective
2
+ module Templates
3
+ class ThreeColumn < Template
4
+ def description
5
+ 'Three Column Area'
6
+ end
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ module Effective
2
+ module Templates
3
+ class TwoColumn < Template
4
+ def description
5
+ 'Two Column Area'
6
+ end
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,7 @@
1
+ .row
2
+ .col-sm-4
3
+ %p Left Column
4
+ .col-sm-4
5
+ %p Center column
6
+ .col-sm-4
7
+ %p Right column
@@ -0,0 +1,5 @@
1
+ .row
2
+ .col-sm-6
3
+ %p Left Column
4
+ .col-sm-6
5
+ %p Right column
@@ -1,3 +1,3 @@
1
1
  module EffectiveRegions
2
- VERSION = '1.7.0'.freeze
2
+ VERSION = '1.7.1'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: effective_regions
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.7.0
4
+ version: 1.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Code and Effect
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-12-07 00:00:00.000000000 Z
11
+ date: 2017-02-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -91,9 +91,13 @@ files:
91
91
  - app/models/effective/snippets/snippet.rb
92
92
  - app/models/effective/templates/image_and_title.rb
93
93
  - app/models/effective/templates/template.rb
94
+ - app/models/effective/templates/three_column.rb
95
+ - app/models/effective/templates/two_column.rb
94
96
  - app/views/effective/snippets/_current_date_time.html.haml
95
97
  - app/views/effective/snippets/_current_user_info.html.haml
96
98
  - app/views/effective/templates/_image_and_title.html.haml
99
+ - app/views/effective/templates/_three_column.html.haml
100
+ - app/views/effective/templates/_two_column.html.haml
97
101
  - app/views/effective_regions/_include_tags_javascript.html.haml
98
102
  - config/effective_regions.rb
99
103
  - config/routes.rb