bootstrap_leather 0.8.1 → 0.8.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/.ruby-gemset +1 -0
- data/.ruby-version +1 -0
- data/VERSION +1 -1
- data/app/helpers/bootstrap_leather_helper.rb +7 -2
- data/bootstrap_leather.gemspec +6 -4
- metadata +5 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f993b1ec540405b979d5e3da62f267d390096d11
|
|
4
|
+
data.tar.gz: 5f94161185fd4f3f38c751dd22151f3c0e7a9183
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1fc4c3941576e54cbbc6a15376032c9897370940fc456122cb98c0f0e4dbee45d304884e5792e6acceb9f6271728167be838c0ee1b810692ff7f4ab6cea9f154
|
|
7
|
+
data.tar.gz: 544eca5ba02f9e4959ff4034bc757cf27ed152bda0f703adfebc4fb35626ec3c4642ee1fda605f98f7c0d299af1007571098440e683489035d5052eb9d52bd0c
|
data/.ruby-gemset
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
bootstrap_leather
|
data/.ruby-version
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
2.2.3
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.8.
|
|
1
|
+
0.8.2
|
|
@@ -103,9 +103,14 @@ module BootstrapLeatherHelper
|
|
|
103
103
|
@widgets << { html_options: html_options, body: capture(&block) }
|
|
104
104
|
end
|
|
105
105
|
|
|
106
|
-
def
|
|
107
|
-
|
|
106
|
+
def widgets
|
|
107
|
+
mine = @widgets
|
|
108
108
|
@widgets = nil
|
|
109
|
+
mine
|
|
110
|
+
end
|
|
111
|
+
|
|
112
|
+
def render_widgets(device_class = 'md', column_width = 3)
|
|
113
|
+
html = render(:partial => 'bootstrap_leather/widgets', :locals => {:widgets => widgets, :column_width => column_width, :device_class => device_class})
|
|
109
114
|
html.html_safe
|
|
110
115
|
end
|
|
111
116
|
|
data/bootstrap_leather.gemspec
CHANGED
|
@@ -2,16 +2,16 @@
|
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
|
-
# stub: bootstrap_leather 0.8.
|
|
5
|
+
# stub: bootstrap_leather 0.8.2 ruby lib
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |s|
|
|
8
8
|
s.name = "bootstrap_leather"
|
|
9
|
-
s.version = "0.8.
|
|
9
|
+
s.version = "0.8.2"
|
|
10
10
|
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
12
12
|
s.require_paths = ["lib"]
|
|
13
13
|
s.authors = ["Karen Lundgren"]
|
|
14
|
-
s.date = "2015-
|
|
14
|
+
s.date = "2015-12-17"
|
|
15
15
|
s.description = "BootstrapLeather is a collection of view helpers that makes it easier to create apps using Twitter Bootstrap"
|
|
16
16
|
s.email = "karen.e.lundgren@gmail.com"
|
|
17
17
|
s.extra_rdoc_files = [
|
|
@@ -21,6 +21,8 @@ Gem::Specification.new do |s|
|
|
|
21
21
|
s.files = [
|
|
22
22
|
".document",
|
|
23
23
|
".rspec",
|
|
24
|
+
".ruby-gemset",
|
|
25
|
+
".ruby-version",
|
|
24
26
|
"Gemfile",
|
|
25
27
|
"LICENSE.txt",
|
|
26
28
|
"README.rdoc",
|
|
@@ -63,7 +65,7 @@ Gem::Specification.new do |s|
|
|
|
63
65
|
]
|
|
64
66
|
s.homepage = "http://www.gemvein.com/museum/cases/bootstrap_leather"
|
|
65
67
|
s.licenses = ["MIT"]
|
|
66
|
-
s.rubygems_version = "2.4.
|
|
68
|
+
s.rubygems_version = "2.4.8"
|
|
67
69
|
s.summary = "BootstrapLeather makes it easier to create apps using Twitter Bootstrap"
|
|
68
70
|
|
|
69
71
|
if s.respond_to? :specification_version then
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bootstrap_leather
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.8.
|
|
4
|
+
version: 0.8.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Karen Lundgren
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
11
|
+
date: 2015-12-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bootstrap-sass
|
|
@@ -77,6 +77,8 @@ extra_rdoc_files:
|
|
|
77
77
|
files:
|
|
78
78
|
- ".document"
|
|
79
79
|
- ".rspec"
|
|
80
|
+
- ".ruby-gemset"
|
|
81
|
+
- ".ruby-version"
|
|
80
82
|
- Gemfile
|
|
81
83
|
- LICENSE.txt
|
|
82
84
|
- README.rdoc
|
|
@@ -136,7 +138,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
136
138
|
version: '0'
|
|
137
139
|
requirements: []
|
|
138
140
|
rubyforge_project:
|
|
139
|
-
rubygems_version: 2.4.
|
|
141
|
+
rubygems_version: 2.4.8
|
|
140
142
|
signing_key:
|
|
141
143
|
specification_version: 4
|
|
142
144
|
summary: BootstrapLeather makes it easier to create apps using Twitter Bootstrap
|