card-mod-bootstrap 0.11.4 → 0.11.5
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/db/migrate_core_cards/20170719163733_update_bootswatch_themes_to_4_beta.rb +1 -2
- data/db/migrate_core_cards/20170726111053_add_bootstrap_mixins.rb +2 -2
- data/db/migrate_core_cards/20170726145012_select2.rb +2 -2
- data/db/migrate_core_cards/20180423160231_migrate_customized_bootstrap_skin.rb +1 -0
- data/db/migrate_core_cards/20180423170283_add_type_bootswatch_skin.rb +1 -0
- data/db/migrate_core_cards/20180425174433_delete_deprecated_skin_cards.rb +1 -0
- data/db/migrate_core_cards/20181129140917_fix_skin_images.rb +0 -1
- data/db/migrate_core_cards/data/20181108181219_migrate_classic_skins_to_bootstrap.rb +1 -0
- data/db/migrate_core_cards/lib/skin.rb +1 -1
- data/lib/bootstrap.rb +3 -1
- data/lib/bootstrap/component.rb +18 -49
- data/lib/bootstrap/component/carousel.rb +16 -8
- data/lib/bootstrap/component/component_class.rb +36 -0
- data/lib/bootstrap/component/form.rb +4 -4
- data/lib/bootstrap/component/horizontal_form.rb +2 -2
- data/lib/bootstrap/component/layout.rb +6 -4
- data/lib/bootstrap/component_loader.rb +1 -1
- data/lib/bootstrapper.rb +1 -1
- data/set/abstract/bootstrap_code_file.rb +0 -1
- data/set/abstract/bootswatch_theme.rb +1 -0
- data/set/all/bootstrap/dropdown.rb +12 -4
- data/set/all/bootstrap/helper.rb +18 -11
- data/set/all/bootstrap/table.rb +1 -0
- data/set/all/bootstrap/wrapper.rb +2 -4
- data/set/self/bootstrap_core.rb +7 -8
- data/set/type_plus_right/customized_bootswatch_skin/colors.rb +3 -2
- metadata +13 -12
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3cec84d4d107eb10c36b89dcdcf027d3c5dd2f6fd3a0f37409099cee8fe037b9
|
4
|
+
data.tar.gz: 641ae7a1c7480deac8d098899b3188d8e0b0e55579ebdc430d393f423b4e7754
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d1ddfdf005e2cc00e919f50f6e39c5395eaae0de0c713ecb44bb8dc9a66a7a5390d89fb12f99a21f0d681eef7aa8abf97a86e188d670ebbcb355058ba9c03f84
|
7
|
+
data.tar.gz: 748a9964081887d8b5a9123197db0e5278e03d55201302c7b3b5843f9fa2c8273fd0770ee7d8d749dd1061c7c2694745bef2b65656f30718394159a659ed2e1b
|
@@ -3,9 +3,9 @@
|
|
3
3
|
class AddBootstrapMixins < Cardio::Migration::Core
|
4
4
|
def up
|
5
5
|
ensure_card "style: bootstrap mixins", type_id: Card::ScssID,
|
6
|
-
|
6
|
+
codename: "style_bootstrap_mixins"
|
7
7
|
|
8
8
|
ensure_card "style: bootstrap breakpoints", type_id: Card::ScssID,
|
9
|
-
|
9
|
+
codename: "style_bootstrap_breakpoints"
|
10
10
|
end
|
11
11
|
end
|
@@ -51,6 +51,7 @@ class MigrateCustomizedBootstrapSkin < Cardio::Migration::Core
|
|
51
51
|
def migrate_customizable_bootstrap_skin
|
52
52
|
referers = Card.search refer_to: { codename: OLD_SKIN.to_s }
|
53
53
|
return unless referers.present?
|
54
|
+
|
54
55
|
replace_old_skin referers
|
55
56
|
build_new_skin
|
56
57
|
delete_code_card OLD_SKIN
|
data/lib/bootstrap.rb
CHANGED
@@ -6,11 +6,13 @@ class Bootstrap
|
|
6
6
|
extend ComponentLoader
|
7
7
|
load_components
|
8
8
|
|
9
|
+
attr_reader :context
|
10
|
+
|
9
11
|
def initialize context=nil
|
10
12
|
@context = context
|
11
13
|
end
|
12
14
|
|
13
15
|
def render *args, &block
|
14
|
-
instance_exec
|
16
|
+
instance_exec(*args, &block)
|
15
17
|
end
|
16
18
|
end
|
data/lib/bootstrap/component.rb
CHANGED
@@ -1,6 +1,8 @@
|
|
1
1
|
class Bootstrap
|
2
2
|
# render components of bootstrap library
|
3
3
|
class Component
|
4
|
+
extend ComponentClass
|
5
|
+
|
4
6
|
def initialize context, *args, &block
|
5
7
|
@context = context
|
6
8
|
@content = ["".html_safe]
|
@@ -12,53 +14,8 @@ class Bootstrap
|
|
12
14
|
@html = Builder::XmlMarkup.new
|
13
15
|
end
|
14
16
|
|
15
|
-
class << self
|
16
|
-
def render format, *args, &block
|
17
|
-
new(format, *args, &block).render
|
18
|
-
end
|
19
|
-
|
20
|
-
# Like def_tag_method but always generates a div tag
|
21
|
-
# The tag option is not available
|
22
|
-
def def_div_method name, html_class, opts={}, &tag_block
|
23
|
-
def_tag_method name, html_class, opts.merge(tag: :div), &tag_block
|
24
|
-
end
|
25
|
-
|
26
|
-
# Defines a method that generates a html tag
|
27
|
-
# @param method_name [Symbol, String] the name of the method. If no :tag option in tag_opts is defined then the name is also the name of the tag that the method generates
|
28
|
-
# @param html_class [String] a html class that is added to tag. Use nil if you don't want a html_class
|
29
|
-
# @param tag_opts [Hash] additional argument that will be added to the tag
|
30
|
-
# @option tag_opts [Symbol, String] tag the name of the tag
|
31
|
-
# @example
|
32
|
-
# def_tag_method :link, "known-link", tag: :a, id: "uniq-link"
|
33
|
-
# link # => <a class="known-link" id="uniq-link"></a>
|
34
|
-
def def_tag_method method_name, html_class, tag_opts={}, &tag_opts_block
|
35
|
-
tag = tag_opts.delete(:tag) || method_name
|
36
|
-
return def_simple_tag_method method_name, tag, html_class, tag_opts unless block_given?
|
37
|
-
|
38
|
-
define_method method_name do |*args, &content_block|
|
39
|
-
content, opts, new_child_args = standardize_args args, &tag_opts_block
|
40
|
-
add_classes opts, html_class, tag_opts.delete(:optional_classes)
|
41
|
-
|
42
|
-
@html.tag! tag, opts do
|
43
|
-
instance_exec(&content_block)
|
44
|
-
end
|
45
|
-
end
|
46
|
-
end
|
47
|
-
|
48
|
-
def def_simple_tag_method method_name, tag, html_class, tag_opts={}
|
49
|
-
define_method method_name do |*args, &content_block|
|
50
|
-
@html.tag! tag, class: html_class do
|
51
|
-
instance_exec &content_block
|
52
|
-
end
|
53
|
-
end
|
54
|
-
end
|
55
|
-
end
|
56
|
-
|
57
17
|
def render
|
58
|
-
@rendered =
|
59
|
-
render_content
|
60
|
-
# @content[-1]
|
61
|
-
end
|
18
|
+
@rendered = render_content
|
62
19
|
end
|
63
20
|
|
64
21
|
def prepend &block
|
@@ -79,17 +36,29 @@ class Bootstrap
|
|
79
36
|
@wrap[-1] << (block_given? ? block : tag)
|
80
37
|
end
|
81
38
|
|
39
|
+
def card
|
40
|
+
@context.context.card
|
41
|
+
end
|
42
|
+
|
82
43
|
private
|
83
44
|
|
45
|
+
def tag_method_opts args, html_class, tag_opts, &tag_opts_block
|
46
|
+
opts = {}
|
47
|
+
_blah, opts, _blah = standardize_args args, &tag_opts_block if block_given?
|
48
|
+
add_classes opts, html_class, tag_opts.delete(:optional_classes)
|
49
|
+
opts
|
50
|
+
end
|
51
|
+
|
84
52
|
def render_content
|
85
53
|
# if @build_block.arity > 0
|
86
|
-
instance_exec
|
54
|
+
instance_exec(*@args, &@build_block)
|
87
55
|
end
|
88
56
|
|
89
57
|
def generate_content content, processor, &block
|
90
|
-
content = instance_exec
|
58
|
+
content = instance_exec(&block) if block.present?
|
91
59
|
return content if !processor || !content.is_a?(Array)
|
92
|
-
|
60
|
+
|
61
|
+
content.each { |item| send processor, item }
|
93
62
|
""
|
94
63
|
end
|
95
64
|
|
@@ -2,14 +2,14 @@ class Bootstrap
|
|
2
2
|
class Component
|
3
3
|
class Carousel < Component
|
4
4
|
def render_content
|
5
|
-
carousel
|
5
|
+
carousel(*@args, &@build_block)
|
6
6
|
end
|
7
7
|
|
8
8
|
def carousel id, active_index, &block
|
9
9
|
@id = id
|
10
10
|
@active_item_index = active_index
|
11
11
|
@items = []
|
12
|
-
instance_exec
|
12
|
+
instance_exec(&block)
|
13
13
|
|
14
14
|
@html.div class: "carousel slide", id: id, "data-ride" => "carousel" do
|
15
15
|
indicators
|
@@ -26,16 +26,24 @@ class Bootstrap
|
|
26
26
|
def items
|
27
27
|
@html.div class: "carousel-inner", role: "listbox" do
|
28
28
|
@items.each_with_index do |item, index|
|
29
|
-
|
30
|
-
add_class html_opts, "active" if index == @active_item_index
|
31
|
-
@html.div html_opts do
|
32
|
-
item = item.call if item.respond_to?(:call)
|
33
|
-
@html << item if item.is_a?(String)
|
34
|
-
end
|
29
|
+
carousel_item item, carousel_item_opts(index)
|
35
30
|
end
|
36
31
|
end
|
37
32
|
end
|
38
33
|
|
34
|
+
def carousel_item_opts index
|
35
|
+
{ class: "carousel-item" }.tap do |opts|
|
36
|
+
add_class opts, "active" if index == @active_item_index
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
def carousel_item item, html_opts
|
41
|
+
@html.div html_opts do
|
42
|
+
item = item.call if item.respond_to?(:call)
|
43
|
+
@html << item if item.is_a?(String)
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
39
47
|
def control_prev
|
40
48
|
@html.a class: "carousel-control-prev", href: "##{@id}", role: "button",
|
41
49
|
"data-slide" => "prev" do
|
@@ -0,0 +1,36 @@
|
|
1
|
+
class Bootstrap
|
2
|
+
class Component
|
3
|
+
# class methods for Bootstrap::Component
|
4
|
+
module ComponentClass
|
5
|
+
def render format, *args, &block
|
6
|
+
new(format, *args, &block).render
|
7
|
+
end
|
8
|
+
|
9
|
+
# Like def_tag_method but always generates a div tag
|
10
|
+
# The tag option is not available
|
11
|
+
def def_div_method name, html_class, opts={}, &tag_block
|
12
|
+
def_tag_method name, html_class, opts.merge(tag: :div), &tag_block
|
13
|
+
end
|
14
|
+
|
15
|
+
# Defines a method that generates a html tag
|
16
|
+
# @param method_name [Symbol, String] the name of the method. If no :tag option
|
17
|
+
# in tag_opts is defined then the name is also the name of the tag that the
|
18
|
+
# method generates
|
19
|
+
# @param html_class [String] a html class that is added to tag. Use nil if you
|
20
|
+
# don't want a html_class
|
21
|
+
# @param tag_opts [Hash] additional argument that will be added to the tag
|
22
|
+
# @option tag_opts [Symbol, String] tag the name of the tag
|
23
|
+
# @example
|
24
|
+
# def_tag_method :link, "known-link", tag: :a, id: "uniq-link"
|
25
|
+
# link # => <a class="known-link" id="uniq-link"></a>
|
26
|
+
def def_tag_method method_name, html_class, tag_opts={}, &tag_opts_block
|
27
|
+
tag = tag_opts.delete(:tag) || method_name
|
28
|
+
define_method method_name do |*args, &content_block|
|
29
|
+
@html.tag! tag, tag_method_opts(args, html_class, tag_opts, &tag_opts_block) do
|
30
|
+
instance_exec(&content_block)
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
@@ -2,7 +2,7 @@ class Bootstrap
|
|
2
2
|
class Component
|
3
3
|
class Form < Component
|
4
4
|
def render_content *args
|
5
|
-
form
|
5
|
+
form(*args, &@build_block)
|
6
6
|
end
|
7
7
|
|
8
8
|
#
|
@@ -23,13 +23,13 @@ class Bootstrap
|
|
23
23
|
add_class opts, "form-horizontal" if opts.delete(:horizontal)
|
24
24
|
add_class opts, "form-inline" if opts.delete(:inline)
|
25
25
|
@html.form opts do
|
26
|
-
instance_exec
|
26
|
+
instance_exec(&block)
|
27
27
|
end
|
28
28
|
end
|
29
29
|
|
30
30
|
def group text=nil, &block
|
31
31
|
@html.div text, class: "form-group" do
|
32
|
-
instance_exec
|
32
|
+
instance_exec(&block)
|
33
33
|
end
|
34
34
|
end
|
35
35
|
|
@@ -53,7 +53,7 @@ class Bootstrap
|
|
53
53
|
# opts
|
54
54
|
# end
|
55
55
|
|
56
|
-
define_method tag do |
|
56
|
+
define_method tag do |id:, label:, text: nil|
|
57
57
|
@html.input id: id, class: "form-control", type: tag do
|
58
58
|
@html.label label, for: id if label
|
59
59
|
@html << text
|
@@ -27,7 +27,7 @@ class Bootstrap
|
|
27
27
|
@html.label label, for: id, class: "col-sm-#{left_col_width} control-label"
|
28
28
|
end
|
29
29
|
|
30
|
-
def input type, label:, id
|
30
|
+
def input type, label:, id:
|
31
31
|
label_col label, id: id
|
32
32
|
@html.div class: "col-sm-#{right_col_width}" do
|
33
33
|
@html.input type: type, id: id, class: "form-control"
|
@@ -49,7 +49,7 @@ class Bootstrap
|
|
49
49
|
{ class: "col-sm-offset-#{left_col_width} col-sm-#{right_col_width}" }
|
50
50
|
end
|
51
51
|
|
52
|
-
def checkbox
|
52
|
+
def checkbox _text, _extra_args
|
53
53
|
@html.div class: "col-sm-offset-#{left_col_width} col-sm-#{right_col_width}" do
|
54
54
|
@html.div class: "checkbox" do
|
55
55
|
label_cllabel do
|
@@ -17,7 +17,6 @@ class Bootstrap
|
|
17
17
|
# row 6, 6, ["unicorn", "rainbow"], class: "horn"
|
18
18
|
# end
|
19
19
|
class Layout < OldComponent
|
20
|
-
|
21
20
|
def render
|
22
21
|
@rendered = begin
|
23
22
|
render_content
|
@@ -26,10 +25,11 @@ class Bootstrap
|
|
26
25
|
end
|
27
26
|
|
28
27
|
def render_content
|
29
|
-
content = instance_exec
|
28
|
+
content = instance_exec(*@args, &@build_block)
|
30
29
|
add_content content
|
31
30
|
opts = @args.first
|
32
|
-
return unless opts
|
31
|
+
return unless opts&.delete(:container)
|
32
|
+
|
33
33
|
content = @content.pop
|
34
34
|
@content = ["".html_safe]
|
35
35
|
container content, opts
|
@@ -67,7 +67,7 @@ class Bootstrap
|
|
67
67
|
opts
|
68
68
|
end
|
69
69
|
|
70
|
-
|
70
|
+
alias_method :col, :column
|
71
71
|
|
72
72
|
private
|
73
73
|
|
@@ -89,12 +89,14 @@ class Bootstrap
|
|
89
89
|
|
90
90
|
def col_widths_from_args args
|
91
91
|
raise Error, "bad argument" unless args.all? { |a| a.is_a? Integer }
|
92
|
+
|
92
93
|
{ md: Array.wrap(args) }
|
93
94
|
end
|
94
95
|
|
95
96
|
def col_widths_from_opts opts
|
96
97
|
%i[lg xs sm md].each_with_object({}) do |k, cols_w|
|
97
98
|
next unless (widths = opts.delete(k))
|
99
|
+
|
98
100
|
cols_w[k] = Array.wrap widths
|
99
101
|
end
|
100
102
|
end
|
data/lib/bootstrapper.rb
CHANGED
@@ -57,19 +57,27 @@ format :html do
|
|
57
57
|
return unless item
|
58
58
|
|
59
59
|
if item.is_a? Array
|
60
|
-
|
60
|
+
formatted_dropdown_list_item item
|
61
61
|
else
|
62
|
-
|
62
|
+
simple_dropdown_list_item item, (active_test == active)
|
63
63
|
end
|
64
64
|
end
|
65
65
|
|
66
|
+
def formatted_dropdown_list_item item
|
67
|
+
[dropdown_header(item.first), dropdown_array_list(item.second)]
|
68
|
+
end
|
69
|
+
|
70
|
+
def simple_dropdown_list_item item, active
|
71
|
+
"<li class='dropdown-item#{' active' if active}'>#{item}</li>"
|
72
|
+
end
|
73
|
+
|
66
74
|
def split_button_toggle
|
67
|
-
wrap_with
|
75
|
+
wrap_with :a,
|
68
76
|
href: "#",
|
69
77
|
class: "nav-link pl-0 dropdown-toggle dropdown-toggle-split",
|
70
78
|
"data-toggle" => "dropdown",
|
71
79
|
"aria-haspopup" => "true",
|
72
|
-
"aria-expanded" => "false"
|
80
|
+
"aria-expanded" => "false" do
|
73
81
|
'<span class="sr-only">Toggle Dropdown</span>'
|
74
82
|
end
|
75
83
|
end
|
data/set/all/bootstrap/helper.rb
CHANGED
@@ -23,21 +23,28 @@ format :html do
|
|
23
23
|
add_class options[:items], "list-group-item"
|
24
24
|
end
|
25
25
|
|
26
|
-
def list_tag content_or_options=nil, options={}
|
27
|
-
options = content_or_options
|
28
|
-
content = block_given? ? yield : content_or_options
|
29
|
-
content = Array(content)
|
26
|
+
def list_tag content_or_options=nil, options={}, &block
|
27
|
+
content, options = list_tag_content_and_options content_or_options, options, &block
|
30
28
|
default_item_options = options.delete(:items) || {}
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
29
|
+
wrap_with (options[:ordered] ? :ol : :ul), options do
|
30
|
+
list_items content, default_item_options
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
def list_items content, default_item_options
|
35
|
+
content.map do |item|
|
36
|
+
i_content, i_opts = item
|
37
|
+
i_opts ||= default_item_options
|
38
|
+
wrap_with :li, i_content, i_opts
|
38
39
|
end
|
39
40
|
end
|
40
41
|
|
42
|
+
def list_tag_content_and_options content_or_options, options
|
43
|
+
options = content_or_options if block_given?
|
44
|
+
content = block_given? ? yield : content_or_options
|
45
|
+
[Array(content), options]
|
46
|
+
end
|
47
|
+
|
41
48
|
def badge_tag content, options={}
|
42
49
|
add_class options, "badge"
|
43
50
|
wrap_with :span, content, options
|
data/set/all/bootstrap/table.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
format :html do
|
2
2
|
def frame
|
3
|
-
class_up "d0-card-header"
|
3
|
+
class_up "d0-card-header", "card-header"
|
4
4
|
class_up "d0-card-body", "card-body card-text"
|
5
5
|
super
|
6
6
|
end
|
@@ -14,7 +14,5 @@ format :html do
|
|
14
14
|
super
|
15
15
|
end
|
16
16
|
|
17
|
-
def panel_state
|
18
|
-
end
|
17
|
+
def panel_state; end
|
19
18
|
end
|
20
|
-
|
data/set/self/bootstrap_core.rb
CHANGED
@@ -3,13 +3,12 @@ include_set Abstract::BootstrapCodeFile
|
|
3
3
|
def load_stylesheets
|
4
4
|
add_bs_stylesheet "variables"
|
5
5
|
add_bs_subdir "mixins"
|
6
|
-
%w[
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
6
|
+
%w[
|
7
|
+
print reboot type images code grid tables forms buttons transitions dropdown
|
8
|
+
button-group input-group custom-forms nav navbar card breadcrumb pagination badge
|
9
|
+
jumbotron alert progress media list-group close modal tooltip popover carousel
|
10
|
+
].each do |name|
|
11
|
+
add_bs_stylesheet name
|
12
|
+
end
|
12
13
|
add_bs_subdir "utilities"
|
13
14
|
end
|
14
|
-
|
15
|
-
|
@@ -27,11 +27,12 @@ end
|
|
27
27
|
|
28
28
|
def value_from_variables_card name
|
29
29
|
return unless (var_card = left.variables_card) && var_card.content.present?
|
30
|
+
|
30
31
|
value_from_scss name, var_card.content
|
31
32
|
end
|
32
33
|
|
33
34
|
def definition_regex name
|
34
|
-
/^(?<before>\s*\$#{name}
|
35
|
+
/^(?<before>\s*\$#{name}:\s*)(?<value>.+?)(?<after> !default;)$/
|
35
36
|
end
|
36
37
|
|
37
38
|
def default_value_from_bootstrap name
|
@@ -109,5 +110,5 @@ def replace_values group, prefix=""
|
|
109
110
|
end
|
110
111
|
|
111
112
|
def variable_values_from_params group
|
112
|
-
Env.params
|
113
|
+
Env.params[group]&.slice(*VARIABLE_NAMES[group]) || {}
|
113
114
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: card-mod-bootstrap
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.11.
|
4
|
+
version: 0.11.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ethan McCutchen
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2021-05-
|
13
|
+
date: 2021-05-10 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: card
|
@@ -18,70 +18,70 @@ dependencies:
|
|
18
18
|
requirements:
|
19
19
|
- - '='
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 1.101.
|
21
|
+
version: 1.101.5
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
25
25
|
requirements:
|
26
26
|
- - '='
|
27
27
|
- !ruby/object:Gem::Version
|
28
|
-
version: 1.101.
|
28
|
+
version: 1.101.5
|
29
29
|
- !ruby/object:Gem::Dependency
|
30
30
|
name: card-mod-edit
|
31
31
|
requirement: !ruby/object:Gem::Requirement
|
32
32
|
requirements:
|
33
33
|
- - '='
|
34
34
|
- !ruby/object:Gem::Version
|
35
|
-
version: 0.11.
|
35
|
+
version: 0.11.5
|
36
36
|
type: :runtime
|
37
37
|
prerelease: false
|
38
38
|
version_requirements: !ruby/object:Gem::Requirement
|
39
39
|
requirements:
|
40
40
|
- - '='
|
41
41
|
- !ruby/object:Gem::Version
|
42
|
-
version: 0.11.
|
42
|
+
version: 0.11.5
|
43
43
|
- !ruby/object:Gem::Dependency
|
44
44
|
name: card-mod-bar_and_box
|
45
45
|
requirement: !ruby/object:Gem::Requirement
|
46
46
|
requirements:
|
47
47
|
- - '='
|
48
48
|
- !ruby/object:Gem::Version
|
49
|
-
version: 0.11.
|
49
|
+
version: 0.11.5
|
50
50
|
type: :runtime
|
51
51
|
prerelease: false
|
52
52
|
version_requirements: !ruby/object:Gem::Requirement
|
53
53
|
requirements:
|
54
54
|
- - '='
|
55
55
|
- !ruby/object:Gem::Version
|
56
|
-
version: 0.11.
|
56
|
+
version: 0.11.5
|
57
57
|
- !ruby/object:Gem::Dependency
|
58
58
|
name: card-mod-style
|
59
59
|
requirement: !ruby/object:Gem::Requirement
|
60
60
|
requirements:
|
61
61
|
- - '='
|
62
62
|
- !ruby/object:Gem::Version
|
63
|
-
version: 0.11.
|
63
|
+
version: 0.11.5
|
64
64
|
type: :runtime
|
65
65
|
prerelease: false
|
66
66
|
version_requirements: !ruby/object:Gem::Requirement
|
67
67
|
requirements:
|
68
68
|
- - '='
|
69
69
|
- !ruby/object:Gem::Version
|
70
|
-
version: 0.11.
|
70
|
+
version: 0.11.5
|
71
71
|
- !ruby/object:Gem::Dependency
|
72
72
|
name: card-mod-script
|
73
73
|
requirement: !ruby/object:Gem::Requirement
|
74
74
|
requirements:
|
75
75
|
- - '='
|
76
76
|
- !ruby/object:Gem::Version
|
77
|
-
version: 0.11.
|
77
|
+
version: 0.11.5
|
78
78
|
type: :runtime
|
79
79
|
prerelease: false
|
80
80
|
version_requirements: !ruby/object:Gem::Requirement
|
81
81
|
requirements:
|
82
82
|
- - '='
|
83
83
|
- !ruby/object:Gem::Version
|
84
|
-
version: 0.11.
|
84
|
+
version: 0.11.5
|
85
85
|
description: ''
|
86
86
|
email:
|
87
87
|
- info@decko.org
|
@@ -230,6 +230,7 @@ files:
|
|
230
230
|
- lib/bootstrap/basic_tags.rb
|
231
231
|
- lib/bootstrap/component.rb
|
232
232
|
- lib/bootstrap/component/carousel.rb
|
233
|
+
- lib/bootstrap/component/component_class.rb
|
233
234
|
- lib/bootstrap/component/form.rb
|
234
235
|
- lib/bootstrap/component/horizontal_form.rb
|
235
236
|
- lib/bootstrap/component/layout.rb
|