scrivito_two_column_widget 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.
- checksums.yaml +4 -4
- data/LICENSE +3 -0
- data/README.md +35 -0
- data/lib/scrivito_two_column_widget/version.rb +1 -1
- data/{cms → scrivito}/migrate/0_create_two_column_widget.rb +0 -0
- metadata +6 -5
- data/MIT-LICENSE +0 -20
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c5d85d0ff5ded3ba0d8c02980f66065ad244975f
|
|
4
|
+
data.tar.gz: c88088492324722b2686a5a5be3820952504b7f6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: df4feff00da95dd84db48051876ccd70f7e61475be734280deb51652d492765baccac2aee98c5050ca77ad7c015f5e0155fde16722a01570b824c516c4e2abc0
|
|
7
|
+
data.tar.gz: 8ce5a4fbf5f72b111989cd1e62920c498837924e38a3d261293ff5151942718b069f0e54fd6096d9030912bd3b9402478f8339b8bcc31031437f8b3685f7b7ec
|
data/LICENSE
ADDED
data/README.md
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# Scrivito Two Columns
|
|
2
|
+
|
|
3
|
+
This Gem adds a two-column grid widget to your Scrivito app. You can fill both columns with other widgets.
|
|
4
|
+
|
|
5
|
+
## Prerequisites
|
|
6
|
+
|
|
7
|
+
Use Bootstrap in your Rails App. (Tested with Bootstrap 3.2)
|
|
8
|
+
|
|
9
|
+
## Installation
|
|
10
|
+
|
|
11
|
+
Add the gem to your Gemfile:
|
|
12
|
+
|
|
13
|
+
gem 'scrivito_two_column_widget'
|
|
14
|
+
|
|
15
|
+
Run bundle:
|
|
16
|
+
|
|
17
|
+
$ bundle
|
|
18
|
+
|
|
19
|
+
(Currently you need to download the gem's files from github and install it locally.)
|
|
20
|
+
|
|
21
|
+
Run
|
|
22
|
+
|
|
23
|
+
$ rake scrivito:migrate:install
|
|
24
|
+
$ rake scrivito:migrate
|
|
25
|
+
|
|
26
|
+
Switch to your Workspace 'rtc' and follow below Steps for Usage. If you are happy with the outcome run
|
|
27
|
+
|
|
28
|
+
$ rake scrivito:migrate:publish
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
## Steps for Usage
|
|
32
|
+
|
|
33
|
+
- Insert the Widget 'Two Columns' somewhere and put a widget into both columns that become visible.
|
|
34
|
+
- Edit the Widget Properties to modify the column widths.
|
|
35
|
+
|
|
File without changes
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: scrivito_two_column_widget
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Scrivito
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-
|
|
11
|
+
date: 2014-11-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: scrivito
|
|
@@ -31,7 +31,8 @@ executables: []
|
|
|
31
31
|
extensions: []
|
|
32
32
|
extra_rdoc_files: []
|
|
33
33
|
files:
|
|
34
|
-
-
|
|
34
|
+
- LICENSE
|
|
35
|
+
- README.md
|
|
35
36
|
- Rakefile
|
|
36
37
|
- app/assets/javascripts/scrivito_two_column_widget/application.js
|
|
37
38
|
- app/assets/stylesheets/scrivito_two_column_widget/application.css
|
|
@@ -40,14 +41,14 @@ files:
|
|
|
40
41
|
- app/views/two_column_widget/details.html.erb
|
|
41
42
|
- app/views/two_column_widget/show.html.erb
|
|
42
43
|
- app/views/two_column_widget/thumbnail.html.erb
|
|
43
|
-
- cms/migrate/0_create_two_column_widget.rb
|
|
44
44
|
- lib/scrivito_two_column_widget.rb
|
|
45
45
|
- lib/scrivito_two_column_widget/engine.rb
|
|
46
46
|
- lib/scrivito_two_column_widget/version.rb
|
|
47
47
|
- lib/tasks/scrivito_two_column_widget_tasks.rake
|
|
48
|
+
- scrivito/migrate/0_create_two_column_widget.rb
|
|
48
49
|
homepage: https://www.scrivito.com
|
|
49
50
|
licenses:
|
|
50
|
-
-
|
|
51
|
+
- LGPL-3.0
|
|
51
52
|
metadata: {}
|
|
52
53
|
post_install_message:
|
|
53
54
|
rdoc_options: []
|
data/MIT-LICENSE
DELETED
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
Copyright 2014 YOURNAME
|
|
2
|
-
|
|
3
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
|
4
|
-
a copy of this software and associated documentation files (the
|
|
5
|
-
"Software"), to deal in the Software without restriction, including
|
|
6
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
|
7
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
|
8
|
-
permit persons to whom the Software is furnished to do so, subject to
|
|
9
|
-
the following conditions:
|
|
10
|
-
|
|
11
|
-
The above copyright notice and this permission notice shall be
|
|
12
|
-
included in all copies or substantial portions of the Software.
|
|
13
|
-
|
|
14
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
15
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
16
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
17
|
-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
18
|
-
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
19
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
20
|
-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|