card 1.15.1 → 1.15.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/card.gemspec +19 -16
- data/config/initializers/recaptcha.rb +1 -0
- data/db/migrate_core_cards/20150202143810_import_bootstrap_layout.rb +13 -14
- data/db/migrate_core_cards/20150326205655_bootswatch_themes.rb +30 -0
- data/db/migrate_core_cards/20150331135745_new_card_menu.rb +8 -0
- data/db/migrate_core_cards/20150508212032_menu_compatibility.rb +27 -0
- data/db/migrate_core_cards/20150510031118_fix_skin_images.rb +13 -0
- data/db/migrate_core_cards/data/1.12_stylesheets/classic_cards.scss +9 -5
- data/db/migrate_core_cards/data/1.12_stylesheets/common.scss +5 -5
- data/{test/fixtures/.gitkeep → db/migrate_core_cards/data/themes/bootstrap_default/_bootswatch.scss} +0 -0
- data/db/migrate_core_cards/data/themes/bootstrap_default/_variables.scss +866 -0
- data/db/migrate_core_cards/data/themes/cerulean/_bootswatch.scss +125 -0
- data/db/migrate_core_cards/data/themes/cerulean/_variables.scss +861 -0
- data/db/migrate_core_cards/data/themes/cosmo/_bootswatch.scss +237 -0
- data/db/migrate_core_cards/data/themes/cosmo/_variables.scss +861 -0
- data/db/migrate_core_cards/data/themes/cyborg/_bootswatch.scss +210 -0
- data/db/migrate_core_cards/data/themes/cyborg/_variables.scss +861 -0
- data/db/migrate_core_cards/data/themes/darkly/_bootswatch.scss +330 -0
- data/db/migrate_core_cards/data/themes/darkly/_variables.scss +861 -0
- data/db/migrate_core_cards/data/themes/flatly/_bootswatch.scss +313 -0
- data/db/migrate_core_cards/data/themes/flatly/_variables.scss +861 -0
- data/db/migrate_core_cards/data/themes/journal/_bootswatch.scss +120 -0
- data/db/migrate_core_cards/data/themes/journal/_variables.scss +861 -0
- data/db/migrate_core_cards/data/themes/lumen/_bootswatch.scss +496 -0
- data/db/migrate_core_cards/data/themes/lumen/_variables.scss +861 -0
- data/db/migrate_core_cards/data/themes/paper/_bootswatch.scss +607 -0
- data/db/migrate_core_cards/data/themes/paper/_variables.scss +861 -0
- data/db/migrate_core_cards/data/themes/readable/_bootswatch.scss +174 -0
- data/db/migrate_core_cards/data/themes/readable/_variables.scss +861 -0
- data/db/migrate_core_cards/data/themes/sandstone/_bootswatch.scss +194 -0
- data/db/migrate_core_cards/data/themes/sandstone/_variables.scss +861 -0
- data/db/migrate_core_cards/data/themes/simplex/_bootswatch.scss +142 -0
- data/db/migrate_core_cards/data/themes/simplex/_variables.scss +861 -0
- data/db/migrate_core_cards/data/themes/slate/_bootswatch.scss +417 -0
- data/db/migrate_core_cards/data/themes/slate/_variables.scss +861 -0
- data/db/migrate_core_cards/data/themes/spacelab/_bootswatch.scss +137 -0
- data/db/migrate_core_cards/data/themes/spacelab/_variables.scss +861 -0
- data/db/migrate_core_cards/data/themes/superhero/_bootswatch.scss +332 -0
- data/db/migrate_core_cards/data/themes/superhero/_variables.scss +861 -0
- data/db/migrate_core_cards/data/themes/united/_bootswatch.scss +42 -0
- data/db/migrate_core_cards/data/themes/united/_variables.scss +861 -0
- data/db/migrate_core_cards/data/themes/yeti/_bootswatch.scss +437 -0
- data/db/migrate_core_cards/data/themes/yeti/_variables.scss +861 -0
- data/db/seed/README.md +2 -0
- data/db/{bootstrap → seed/new}/card_actions.yml +561 -295
- data/db/{bootstrap → seed/new}/card_acts.yml +1 -1
- data/db/seed/new/card_changes.yml +29331 -0
- data/db/{bootstrap → seed/new}/card_references.yml +1544 -1355
- data/db/seed/new/cards.yml +28057 -0
- data/db/seed/test/fixtures/.gitkeep +0 -0
- data/{test → db/seed/test}/fixtures/card_actions.yml +1501 -1235
- data/{test → db/seed/test}/fixtures/card_acts.yml +244 -244
- data/db/seed/test/fixtures/card_changes.yml +34527 -0
- data/{test → db/seed/test}/fixtures/card_references.yml +2215 -2026
- data/db/seed/test/fixtures/cards.yml +32708 -0
- data/{test → db/seed/test}/fixtures/mao2.jpg +0 -0
- data/{test → db/seed/test}/fixtures/rails.gif +0 -0
- data/{test → db/seed/test}/seed.rb +0 -0
- data/db/version_core_cards.txt +1 -1
- data/lib/card/format.rb +56 -56
- data/lib/cardio.rb +7 -5
- data/mod/01_core/chunk/include.rb +1 -1
- data/mod/01_core/set/all/fetch.rb +27 -27
- data/mod/01_core/set/all/rules.rb +53 -53
- data/mod/01_core/set/all/states.rb +5 -0
- data/mod/01_core/spec/format/html_format_spec.rb +6 -6
- data/mod/01_core/spec/set/all/rules2_spec.rb +6 -6
- data/mod/01_history/set/all/history.rb +4 -4
- data/mod/02_basic_types/set/all/rss.rb +10 -9
- data/mod/03_machines/lib/javascript/script_card_menu.js.coffee +20 -0
- data/mod/03_machines/lib/javascript/wagn.js.coffee +46 -34
- data/mod/03_machines/lib/javascript/wagn_mod.js.coffee +36 -148
- data/mod/03_machines/lib/stylesheets/style_bootstrap_compatible.css +10 -96
- data/mod/03_machines/lib/stylesheets/style_cards.scss +127 -87
- data/mod/03_machines/set/self/script_card_menu.rb +10 -2
- data/mod/05_email/set/all/follow.rb +38 -22
- data/mod/05_email/set/right/follow.rb +79 -1
- data/mod/05_email/set/type_plus_right/user/follow.rb +31 -31
- data/mod/05_email/spec/set/all/follow_spec.rb +37 -28
- data/mod/05_email/spec/set/right/followers_spec.rb +29 -29
- data/mod/05_standard/set/all/error.rb +17 -20
- data/mod/05_standard/set/all/links.rb +31 -18
- data/mod/05_standard/set/all/rich_html/content.rb +41 -18
- data/mod/05_standard/set/all/rich_html/editing.rb +21 -17
- data/mod/05_standard/set/all/rich_html/header.rb +13 -48
- data/mod/05_standard/set/all/rich_html/menu.rb +147 -0
- data/mod/05_standard/set/all/rich_html/modal.rb +54 -0
- data/mod/05_standard/set/all/rich_html/toolbar.rb +237 -0
- data/mod/05_standard/set/all/rich_html/wrapper.rb +43 -25
- data/mod/05_standard/set/right/account.rb +8 -7
- data/mod/05_standard/set/rstar/rules.rb +111 -84
- data/mod/05_standard/set/self/head.rb +15 -15
- data/mod/05_standard/set/type/set.rb +65 -34
- data/mod/05_standard/spec/set/all/attach_spec.rb +1 -1
- data/mod/05_standard/spec/set/all/rich_html/wrapper_spec.rb +13 -9
- data/mod/05_standard/spec/set/rstar/rules_spec.rb +1 -1
- data/mod/06_bootstrap/lib/javascript/bootstrap.js +108 -97
- data/mod/06_bootstrap/lib/javascript/smartmenu.js +94 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_alerts.scss +73 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_badges.scss +68 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_breadcrumbs.scss +26 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_button-groups.scss +243 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_buttons.scss +160 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_carousel.scss +269 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_close.scss +36 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_code.scss +69 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_component-animations.scss +37 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_dropdowns.scss +214 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_forms.scss +578 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_glyphicons.scss +305 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_grid.scss +84 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_input-groups.scss +166 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_jumbotron.scss +50 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_labels.scss +66 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_list-group.scss +124 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_media.scss +61 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_mixins.scss +39 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_modals.scss +150 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_navbar.scss +662 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_navs.scss +242 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_normalize.scss +427 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_pager.scss +54 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_pagination.scss +88 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_panels.scss +265 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_popovers.scss +135 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_print.scss +107 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_progress-bars.scss +87 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_responsive-embed.scss +35 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_responsive-utilities.scss +177 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_scaffolding.scss +162 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_tables.scss +234 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_theme.scss +273 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_thumbnails.scss +38 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_tooltip.scss +102 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_type.scss +298 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_utilities.scss +55 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_variables.scss +866 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/_wells.scss +29 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_alerts.scss +14 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_background-variant.scss +11 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_border-radius.scss +18 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_buttons.scss +52 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_center-block.scss +7 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_clearfix.scss +22 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_forms.scss +88 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_gradients.scss +58 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_grid-framework.scss +81 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_grid.scss +122 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_hide-text.scss +21 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_image.scss +33 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_labels.scss +12 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_list-group.scss +31 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_nav-divider.scss +10 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_nav-vertical-align.scss +9 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_opacity.scss +8 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_pagination.scss +23 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_panels.scss +24 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_progress-bar.scss +10 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_reset-filter.scss +8 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_resize.scss +6 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_responsive-visibility.scss +21 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_size.scss +10 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_tab-focus.scss +9 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_table-row.scss +28 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_text-emphasis.scss +11 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_text-overflow.scss +8 -0
- data/mod/06_bootstrap/lib/stylesheets/{bootswatch_mixins.scss → bootstrap/mixins/_vendor-prefixes.scss} +1 -61
- data/mod/06_bootstrap/lib/stylesheets/bootstrap_cards.scss +20 -13
- data/mod/06_bootstrap/lib/stylesheets/smartmenu.css +433 -0
- data/mod/06_bootstrap/set/all/bootstrap/wrapper.rb +2 -2
- data/mod/06_bootstrap/set/all/rich_bootstrap.rb +58 -4
- data/mod/06_bootstrap/set/self/bootstrap_js.rb +1 -1
- data/mod/06_bootstrap/set/self/bootswatch_shared.rb +32 -0
- data/mod/06_bootstrap/set/self/smartmenu_css.rb +7 -0
- data/mod/06_bootstrap/set/self/smartmenu_js.rb +7 -0
- data/spec/spec_helper.rb +16 -16
- metadata +133 -93
- data/db/bootstrap/card_changes.yml +0 -12765
- data/db/bootstrap/cards.yml +0 -11567
- data/db/seeds.rb +0 -8
- data/mod/03_machines/lib/javascript/script_card_menu.js +0 -72
- data/mod/06_bootstrap/lib/stylesheets/bootstrap_css.css +0 -6565
- data/mod/06_bootstrap/lib/stylesheets/theme_bootstrap_default.css +0 -476
- data/mod/06_bootstrap/lib/stylesheets/theme_cerulean.css +0 -6721
- data/mod/06_bootstrap/lib/stylesheets/theme_cosmo.css +0 -5898
- data/mod/06_bootstrap/lib/stylesheets/theme_cyborg.css +0 -5876
- data/mod/06_bootstrap/lib/stylesheets/theme_darkly.css +0 -5986
- data/mod/06_bootstrap/lib/stylesheets/theme_flatly.css +0 -6830
- data/mod/06_bootstrap/lib/stylesheets/theme_journal.css +0 -6647
- data/mod/06_bootstrap/lib/stylesheets/theme_lumen.css +0 -6097
- data/mod/06_bootstrap/lib/stylesheets/theme_paper.css +0 -6647
- data/mod/06_bootstrap/lib/stylesheets/theme_readable.css +0 -5896
- data/mod/06_bootstrap/lib/stylesheets/theme_sandstone.css +0 -6733
- data/mod/06_bootstrap/lib/stylesheets/theme_simplex.css +0 -5886
- data/mod/06_bootstrap/lib/stylesheets/theme_slate.css +0 -7057
- data/mod/06_bootstrap/lib/stylesheets/theme_spacelab.css +0 -5935
- data/mod/06_bootstrap/lib/stylesheets/theme_superhero.css +0 -5964
- data/mod/06_bootstrap/lib/stylesheets/theme_united.css +0 -6588
- data/mod/06_bootstrap/lib/stylesheets/theme_yeti.css +0 -6088
- data/mod/06_bootstrap/set/self/bootstrap_css.rb +0 -9
- data/mod/06_bootstrap/set/self/bootswatch_mixins.rb +0 -9
- data/mod/06_bootstrap/set/self/theme_bootstrap_default.rb +0 -2
- data/mod/06_bootstrap/set/self/theme_cerulean.rb +0 -9
- data/mod/06_bootstrap/set/self/theme_cosmo.rb +0 -2
- data/mod/06_bootstrap/set/self/theme_cyborg.rb +0 -2
- data/mod/06_bootstrap/set/self/theme_darkly.rb +0 -2
- data/mod/06_bootstrap/set/self/theme_flatly.rb +0 -2
- data/mod/06_bootstrap/set/self/theme_journal.rb +0 -2
- data/mod/06_bootstrap/set/self/theme_lumen.rb +0 -2
- data/mod/06_bootstrap/set/self/theme_paper.rb +0 -2
- data/mod/06_bootstrap/set/self/theme_readable.rb +0 -2
- data/mod/06_bootstrap/set/self/theme_sandstone.rb +0 -2
- data/mod/06_bootstrap/set/self/theme_simplex.rb +0 -2
- data/mod/06_bootstrap/set/self/theme_slate.rb +0 -2
- data/mod/06_bootstrap/set/self/theme_spacelab.rb +0 -2
- data/mod/06_bootstrap/set/self/theme_superhero.rb +0 -2
- data/mod/06_bootstrap/set/self/theme_united.rb +0 -2
- data/mod/06_bootstrap/set/self/theme_yeti.rb +0 -2
- data/test/fixtures/card_changes.yml +0 -17961
- data/test/fixtures/cards.yml +0 -16218
@@ -2,11 +2,11 @@ format :html do
|
|
2
2
|
|
3
3
|
def frame args={}, &block
|
4
4
|
args.reverse_merge!(
|
5
|
-
:
|
5
|
+
:panel_class => 'panel panel-default',
|
6
6
|
:header_class => 'panel-heading',
|
7
7
|
:title_class => 'panel-title',
|
8
8
|
:body_class => 'panel-body'
|
9
9
|
)
|
10
10
|
super args
|
11
11
|
end
|
12
|
-
end
|
12
|
+
end
|
@@ -1,12 +1,66 @@
|
|
1
1
|
format :html do
|
2
|
-
|
2
|
+
|
3
3
|
def glyphicon icon_type, extra_class=''
|
4
4
|
content_tag(:span, '', :class=>"glyphicon glyphicon-#{icon_type} #{extra_class}", 'aria-hidden'=>true)
|
5
5
|
end
|
6
|
-
|
6
|
+
|
7
|
+
|
8
|
+
# Options
|
9
|
+
# :header => { :content=>String, :brand=>( String | {:name=>, :href=>} ) }
|
10
|
+
def navbar id, opts={}
|
11
|
+
opts[:class] ||= ''
|
12
|
+
opts[:class] += " navbar navbar-#{opts.delete(:navbar_type) || 'default'}"
|
13
|
+
header_opts = opts[:header] || {}
|
14
|
+
if opts[:toggle_align] == :left
|
15
|
+
opts[:collapsed_content] ||= ''
|
16
|
+
opts[:collapsed_content] += navbar_toggle(id, opts[:toggle], 'pull-left navbar-link').html_safe
|
17
|
+
opts[:toggle] = :hide
|
18
|
+
end
|
19
|
+
wrap_with :nav, :class=>opts[:class] do
|
20
|
+
[
|
21
|
+
navbar_header(id, header_opts.delete(:content), header_opts.reverse_merge(:toggle=>opts[:toggle])),
|
22
|
+
(content_tag(:div, opts[:collapsed_content].html_safe, :class=>'container-fluid') if opts[:collapsed_content]),
|
23
|
+
content_tag(:div, output(yield).html_safe, :class=>"collapse navbar-collapse", :id=>"navbar-collapse-#{id}"),
|
24
|
+
]
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
def navbar_header id, content='', opts={}
|
29
|
+
brand = if opts[:brand]
|
30
|
+
if opts[:brand].kind_of? String
|
31
|
+
"<a class='navbar-brand' href='#'>#{opts[:brand]}</a>"
|
32
|
+
else
|
33
|
+
link = opts[:brand][:href] || '#'
|
34
|
+
"<a class='navbar-brand' href='#{link}#'>#{opts[:brand][:name]}</a>"
|
35
|
+
end
|
36
|
+
end
|
37
|
+
wrap_with :div, :class=>'navbar-header' do
|
38
|
+
[
|
39
|
+
(navbar_toggle(id, opts[:toggle]) unless opts[:toggle] == :hide),
|
40
|
+
brand,
|
41
|
+
(content if content)
|
42
|
+
]
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
def navbar_toggle id, content=nil, css_class=''
|
47
|
+
content ||= %{
|
48
|
+
<span class="icon-bar"></span>
|
49
|
+
<span class="icon-bar"></span>
|
50
|
+
<span class="icon-bar"></span>
|
51
|
+
}
|
52
|
+
%{
|
53
|
+
<button type="button" class="navbar-toggle collapsed #{css_class}" data-toggle="collapse" data-target="#navbar-collapse-#{id}">
|
54
|
+
<span class="sr-only">Toggle navigation</span>
|
55
|
+
#{content}
|
56
|
+
</button>
|
57
|
+
}
|
58
|
+
end
|
59
|
+
|
60
|
+
|
7
61
|
view :closed do |args|
|
8
62
|
args.merge! :body_class=>'closed-content'
|
9
63
|
super args
|
10
64
|
end
|
11
|
-
|
12
|
-
end
|
65
|
+
|
66
|
+
end
|
@@ -0,0 +1,32 @@
|
|
1
|
+
view :raw do |args|
|
2
|
+
bootstrap_path = "#{Cardio.gem_root}/mod/06_bootstrap/lib/stylesheets/bootstrap"
|
3
|
+
|
4
|
+
# variables
|
5
|
+
content = File.read("#{bootstrap_path}/_variables.scss")
|
6
|
+
content += %{
|
7
|
+
$bootstrap-sass-asset-helper: false;
|
8
|
+
$icon-font-path: "#{card_url '/assets/fonts/'}";
|
9
|
+
}
|
10
|
+
# mixins
|
11
|
+
content += Dir.glob("#{bootstrap_path}/mixins/*.scss").map do |name|
|
12
|
+
File.read name
|
13
|
+
end.join("\n")
|
14
|
+
content += [
|
15
|
+
# Reset and dependencies
|
16
|
+
%w(normalize print glyphicons),
|
17
|
+
# Core CSS
|
18
|
+
%w(scaffolding type code grid tables forms buttons),
|
19
|
+
# Components
|
20
|
+
%w(component-animations dropdowns button-groups input-groups navs navbar breadcrumbs pagination pager labels badges jumbotron thumbnails alerts progress-bars media list-group panels responsive-embed wells close),
|
21
|
+
# Components w/ JavaScript
|
22
|
+
%w(modals tooltip popovers carousel),
|
23
|
+
# Utility classes
|
24
|
+
%w(utilities responsive-utilities)
|
25
|
+
].map do |names|
|
26
|
+
names.map do |name|
|
27
|
+
File.read File.join(bootstrap_path, "_#{name}.scss")
|
28
|
+
end.join "\n"
|
29
|
+
end.join "\n"
|
30
|
+
|
31
|
+
content
|
32
|
+
end
|
data/spec/spec_helper.rb
CHANGED
@@ -4,7 +4,7 @@ ENV["RAILS_ENV"] = 'test'
|
|
4
4
|
|
5
5
|
require 'timecop'
|
6
6
|
require 'rr'
|
7
|
-
require File.expand_path('../../test/seed', __FILE__) # used for SharedData::Users - required here so code won't show up in coverage
|
7
|
+
require File.expand_path('../../db/seed/test/seed.rb', __FILE__) # used for SharedData::Users - required here so code won't show up in coverage
|
8
8
|
|
9
9
|
require File.expand_path( '../../lib/card/simplecov_helper.rb', __FILE__ )
|
10
10
|
require 'simplecov'
|
@@ -18,15 +18,15 @@ Spork.prefork do
|
|
18
18
|
else
|
19
19
|
require File.expand_path( '../../config/environment', __FILE__ )
|
20
20
|
end
|
21
|
-
|
21
|
+
|
22
22
|
require 'rspec/rails'
|
23
23
|
require File.expand_path( '../../lib/card/spec_helper.rb', __FILE__ )
|
24
|
-
|
24
|
+
|
25
25
|
# Requires supporting ruby files with custom matchers and macros, etc,
|
26
26
|
# in spec/support/ and its subdirectories.
|
27
27
|
# Dir[ File.join(Cardio.gem_root, "spec/support/**/*.rb") ].each { |f| require f }
|
28
28
|
|
29
|
-
|
29
|
+
FIXTURES_PATH = File.expand_path('../../db/seed/test/fixtures', __FILE__)
|
30
30
|
JOE_USER_ID = Card['joe_user'].id
|
31
31
|
RSpec.configure do |config|
|
32
32
|
|
@@ -37,7 +37,7 @@ Spork.prefork do
|
|
37
37
|
# format_index = ARGV.find_index {|arg| arg =~ /--format|-f/ }
|
38
38
|
# formatter = format_index ? ARGV[ format_index + 1 ] : 'documentation' #'textmate'
|
39
39
|
# config.default_formatter=formatter
|
40
|
-
|
40
|
+
|
41
41
|
config.infer_spec_type_from_file_location!
|
42
42
|
#config.include CustomMatchers
|
43
43
|
#config.include ControllerMacros, :type=>:controllers
|
@@ -50,7 +50,7 @@ Spork.prefork do
|
|
50
50
|
|
51
51
|
config.use_transactional_fixtures = true
|
52
52
|
config.use_instantiated_fixtures = false
|
53
|
-
|
53
|
+
|
54
54
|
config.mock_with :rspec do |mocks|
|
55
55
|
mocks.syntax = [:should, :expect]
|
56
56
|
mocks.verify_partial_doubles = true
|
@@ -89,31 +89,31 @@ class Card
|
|
89
89
|
end
|
90
90
|
end
|
91
91
|
end
|
92
|
-
|
92
|
+
|
93
93
|
def self.gimme! name, args = {}
|
94
94
|
Card::Auth.as_bot do
|
95
95
|
c = Card.fetch( name, :new => args )
|
96
96
|
c.putty args
|
97
|
-
Card.fetch name
|
98
|
-
end
|
97
|
+
Card.fetch name
|
98
|
+
end
|
99
99
|
end
|
100
|
-
|
100
|
+
|
101
101
|
def self.gimme name, args = {}
|
102
102
|
Card::Auth.as_bot do
|
103
103
|
c = Card.fetch( name, :new => args )
|
104
104
|
if args[:content] and c.content != args[:content]
|
105
105
|
c.putty args
|
106
|
-
c = Card.fetch name
|
106
|
+
c = Card.fetch name
|
107
107
|
end
|
108
108
|
c
|
109
|
-
end
|
109
|
+
end
|
110
110
|
end
|
111
|
-
|
111
|
+
|
112
112
|
def putty args = {}
|
113
113
|
Card::Auth.as_bot do
|
114
|
-
if args.present?
|
115
|
-
update_attributes! (args)
|
116
|
-
else
|
114
|
+
if args.present?
|
115
|
+
update_attributes! (args)
|
116
|
+
else
|
117
117
|
save!
|
118
118
|
end
|
119
119
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: card
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.15.
|
4
|
+
version: 1.15.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ethan McCutchen
|
@@ -11,7 +11,7 @@ authors:
|
|
11
11
|
autorequire:
|
12
12
|
bindir: bin
|
13
13
|
cert_chain: []
|
14
|
-
date: 2015-
|
14
|
+
date: 2015-05-11 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: smartname
|
@@ -195,20 +195,6 @@ dependencies:
|
|
195
195
|
- - "~>"
|
196
196
|
- !ruby/object:Gem::Version
|
197
197
|
version: 0.0.5
|
198
|
-
- !ruby/object:Gem::Dependency
|
199
|
-
name: diffy
|
200
|
-
requirement: !ruby/object:Gem::Requirement
|
201
|
-
requirements:
|
202
|
-
- - "~>"
|
203
|
-
- !ruby/object:Gem::Version
|
204
|
-
version: '3.0'
|
205
|
-
type: :runtime
|
206
|
-
prerelease: false
|
207
|
-
version_requirements: !ruby/object:Gem::Requirement
|
208
|
-
requirements:
|
209
|
-
- - "~>"
|
210
|
-
- !ruby/object:Gem::Version
|
211
|
-
version: '3.0'
|
212
198
|
- !ruby/object:Gem::Dependency
|
213
199
|
name: diff-lcs
|
214
200
|
requirement: !ruby/object:Gem::Requirement
|
@@ -223,20 +209,6 @@ dependencies:
|
|
223
209
|
- - "~>"
|
224
210
|
- !ruby/object:Gem::Version
|
225
211
|
version: '1.2'
|
226
|
-
- !ruby/object:Gem::Dependency
|
227
|
-
name: airbrake
|
228
|
-
requirement: !ruby/object:Gem::Requirement
|
229
|
-
requirements:
|
230
|
-
- - "~>"
|
231
|
-
- !ruby/object:Gem::Version
|
232
|
-
version: '4.1'
|
233
|
-
type: :runtime
|
234
|
-
prerelease: false
|
235
|
-
version_requirements: !ruby/object:Gem::Requirement
|
236
|
-
requirements:
|
237
|
-
- - "~>"
|
238
|
-
- !ruby/object:Gem::Version
|
239
|
-
version: '4.1'
|
240
212
|
description: Cards are data atoms that are grouped into Sets to which Rules can apply.
|
241
213
|
Cards can formatted with Views and transformed with Events.
|
242
214
|
email:
|
@@ -256,11 +228,6 @@ files:
|
|
256
228
|
- config/initializers/notification.rb
|
257
229
|
- config/initializers/recaptcha.rb
|
258
230
|
- config/initializers/uuid_state_file.rb
|
259
|
-
- db/bootstrap/card_actions.yml
|
260
|
-
- db/bootstrap/card_acts.yml
|
261
|
-
- db/bootstrap/card_changes.yml
|
262
|
-
- db/bootstrap/card_references.yml
|
263
|
-
- db/bootstrap/cards.yml
|
264
231
|
- db/migrate/20110511221913_require_earlier_migrations.rb
|
265
232
|
- db/migrate/20120105203350_require_1_8_migrations.rb
|
266
233
|
- db/migrate/20121111025347_require_1_10_migrations.rb
|
@@ -301,6 +268,10 @@ files:
|
|
301
268
|
- db/migrate_core_cards/20150202143810_import_bootstrap_layout.rb
|
302
269
|
- db/migrate_core_cards/20150220134731_following_to_follow_rule.rb
|
303
270
|
- db/migrate_core_cards/20150317162412_bootstrap_themes.rb
|
271
|
+
- db/migrate_core_cards/20150326205655_bootswatch_themes.rb
|
272
|
+
- db/migrate_core_cards/20150331135745_new_card_menu.rb
|
273
|
+
- db/migrate_core_cards/20150508212032_menu_compatibility.rb
|
274
|
+
- db/migrate_core_cards/20150510031118_fix_skin_images.rb
|
304
275
|
- db/migrate_core_cards/data/1.11_help_text.json
|
305
276
|
- db/migrate_core_cards/data/1.12_stylesheets/classic_cards.scss
|
306
277
|
- db/migrate_core_cards/data/1.12_stylesheets/common.scss
|
@@ -319,8 +290,56 @@ files:
|
|
319
290
|
- db/migrate_core_cards/data/mailer/verification_email.html
|
320
291
|
- db/migrate_core_cards/data/mailer/verification_email.txt
|
321
292
|
- db/migrate_core_cards/data/skin_images.json
|
293
|
+
- db/migrate_core_cards/data/themes/bootstrap_default/_bootswatch.scss
|
294
|
+
- db/migrate_core_cards/data/themes/bootstrap_default/_variables.scss
|
295
|
+
- db/migrate_core_cards/data/themes/cerulean/_bootswatch.scss
|
296
|
+
- db/migrate_core_cards/data/themes/cerulean/_variables.scss
|
297
|
+
- db/migrate_core_cards/data/themes/cosmo/_bootswatch.scss
|
298
|
+
- db/migrate_core_cards/data/themes/cosmo/_variables.scss
|
299
|
+
- db/migrate_core_cards/data/themes/cyborg/_bootswatch.scss
|
300
|
+
- db/migrate_core_cards/data/themes/cyborg/_variables.scss
|
301
|
+
- db/migrate_core_cards/data/themes/darkly/_bootswatch.scss
|
302
|
+
- db/migrate_core_cards/data/themes/darkly/_variables.scss
|
303
|
+
- db/migrate_core_cards/data/themes/flatly/_bootswatch.scss
|
304
|
+
- db/migrate_core_cards/data/themes/flatly/_variables.scss
|
305
|
+
- db/migrate_core_cards/data/themes/journal/_bootswatch.scss
|
306
|
+
- db/migrate_core_cards/data/themes/journal/_variables.scss
|
307
|
+
- db/migrate_core_cards/data/themes/lumen/_bootswatch.scss
|
308
|
+
- db/migrate_core_cards/data/themes/lumen/_variables.scss
|
309
|
+
- db/migrate_core_cards/data/themes/paper/_bootswatch.scss
|
310
|
+
- db/migrate_core_cards/data/themes/paper/_variables.scss
|
311
|
+
- db/migrate_core_cards/data/themes/readable/_bootswatch.scss
|
312
|
+
- db/migrate_core_cards/data/themes/readable/_variables.scss
|
313
|
+
- db/migrate_core_cards/data/themes/sandstone/_bootswatch.scss
|
314
|
+
- db/migrate_core_cards/data/themes/sandstone/_variables.scss
|
315
|
+
- db/migrate_core_cards/data/themes/simplex/_bootswatch.scss
|
316
|
+
- db/migrate_core_cards/data/themes/simplex/_variables.scss
|
317
|
+
- db/migrate_core_cards/data/themes/slate/_bootswatch.scss
|
318
|
+
- db/migrate_core_cards/data/themes/slate/_variables.scss
|
319
|
+
- db/migrate_core_cards/data/themes/spacelab/_bootswatch.scss
|
320
|
+
- db/migrate_core_cards/data/themes/spacelab/_variables.scss
|
321
|
+
- db/migrate_core_cards/data/themes/superhero/_bootswatch.scss
|
322
|
+
- db/migrate_core_cards/data/themes/superhero/_variables.scss
|
323
|
+
- db/migrate_core_cards/data/themes/united/_bootswatch.scss
|
324
|
+
- db/migrate_core_cards/data/themes/united/_variables.scss
|
325
|
+
- db/migrate_core_cards/data/themes/yeti/_bootswatch.scss
|
326
|
+
- db/migrate_core_cards/data/themes/yeti/_variables.scss
|
322
327
|
- db/schema.rb
|
323
|
-
- db/
|
328
|
+
- db/seed/README.md
|
329
|
+
- db/seed/new/card_actions.yml
|
330
|
+
- db/seed/new/card_acts.yml
|
331
|
+
- db/seed/new/card_changes.yml
|
332
|
+
- db/seed/new/card_references.yml
|
333
|
+
- db/seed/new/cards.yml
|
334
|
+
- db/seed/test/fixtures/.gitkeep
|
335
|
+
- db/seed/test/fixtures/card_actions.yml
|
336
|
+
- db/seed/test/fixtures/card_acts.yml
|
337
|
+
- db/seed/test/fixtures/card_changes.yml
|
338
|
+
- db/seed/test/fixtures/card_references.yml
|
339
|
+
- db/seed/test/fixtures/cards.yml
|
340
|
+
- db/seed/test/fixtures/mao2.jpg
|
341
|
+
- db/seed/test/fixtures/rails.gif
|
342
|
+
- db/seed/test/seed.rb
|
324
343
|
- db/version.txt
|
325
344
|
- db/version_core_cards.txt
|
326
345
|
- lib/card.rb
|
@@ -471,7 +490,7 @@ files:
|
|
471
490
|
- mod/03_machines/lib/javascript/jquery_ujs.js
|
472
491
|
- mod/03_machines/lib/javascript/jquerymobile.js
|
473
492
|
- mod/03_machines/lib/javascript/script_ace.js
|
474
|
-
- mod/03_machines/lib/javascript/script_card_menu.js
|
493
|
+
- mod/03_machines/lib/javascript/script_card_menu.js.coffee
|
475
494
|
- mod/03_machines/lib/javascript/script_html5shiv_printshiv.js
|
476
495
|
- mod/03_machines/lib/javascript/script_jquery.js
|
477
496
|
- mod/03_machines/lib/javascript/script_tinymce.js
|
@@ -610,6 +629,9 @@ files:
|
|
610
629
|
- mod/05_standard/set/all/rich_html/editing.rb
|
611
630
|
- mod/05_standard/set/all/rich_html/form.rb
|
612
631
|
- mod/05_standard/set/all/rich_html/header.rb
|
632
|
+
- mod/05_standard/set/all/rich_html/menu.rb
|
633
|
+
- mod/05_standard/set/all/rich_html/modal.rb
|
634
|
+
- mod/05_standard/set/all/rich_html/toolbar.rb
|
613
635
|
- mod/05_standard/set/all/rich_html/wrapper.rb
|
614
636
|
- mod/05_standard/set/right/account.rb
|
615
637
|
- mod/05_standard/set/right/email.rb
|
@@ -787,50 +809,86 @@ files:
|
|
787
809
|
- mod/06_bootstrap/file/yeti_skin/small-image.png
|
788
810
|
- mod/06_bootstrap/lib/javascript/bootstrap.js
|
789
811
|
- mod/06_bootstrap/lib/javascript/bootstrap.min.js
|
812
|
+
- mod/06_bootstrap/lib/javascript/smartmenu.js
|
813
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/_alerts.scss
|
814
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/_badges.scss
|
815
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/_breadcrumbs.scss
|
816
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/_button-groups.scss
|
817
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/_buttons.scss
|
818
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/_carousel.scss
|
819
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/_close.scss
|
820
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/_code.scss
|
821
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/_component-animations.scss
|
822
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/_dropdowns.scss
|
823
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/_forms.scss
|
824
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/_glyphicons.scss
|
825
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/_grid.scss
|
826
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/_input-groups.scss
|
827
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/_jumbotron.scss
|
828
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/_labels.scss
|
829
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/_list-group.scss
|
830
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/_media.scss
|
831
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/_mixins.scss
|
832
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/_modals.scss
|
833
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/_navbar.scss
|
834
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/_navs.scss
|
835
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/_normalize.scss
|
836
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/_pager.scss
|
837
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/_pagination.scss
|
838
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/_panels.scss
|
839
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/_popovers.scss
|
840
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/_print.scss
|
841
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/_progress-bars.scss
|
842
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/_responsive-embed.scss
|
843
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/_responsive-utilities.scss
|
844
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/_scaffolding.scss
|
845
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/_tables.scss
|
846
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/_theme.scss
|
847
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/_thumbnails.scss
|
848
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/_tooltip.scss
|
849
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/_type.scss
|
850
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/_utilities.scss
|
851
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/_variables.scss
|
852
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/_wells.scss
|
853
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_alerts.scss
|
854
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_background-variant.scss
|
855
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_border-radius.scss
|
856
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_buttons.scss
|
857
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_center-block.scss
|
858
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_clearfix.scss
|
859
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_forms.scss
|
860
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_gradients.scss
|
861
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_grid-framework.scss
|
862
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_grid.scss
|
863
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_hide-text.scss
|
864
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_image.scss
|
865
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_labels.scss
|
866
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_list-group.scss
|
867
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_nav-divider.scss
|
868
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_nav-vertical-align.scss
|
869
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_opacity.scss
|
870
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_pagination.scss
|
871
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_panels.scss
|
872
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_progress-bar.scss
|
873
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_reset-filter.scss
|
874
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_resize.scss
|
875
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_responsive-visibility.scss
|
876
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_size.scss
|
877
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_tab-focus.scss
|
878
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_table-row.scss
|
879
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_text-emphasis.scss
|
880
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_text-overflow.scss
|
881
|
+
- mod/06_bootstrap/lib/stylesheets/bootstrap/mixins/_vendor-prefixes.scss
|
790
882
|
- mod/06_bootstrap/lib/stylesheets/bootstrap_cards.scss
|
791
|
-
- mod/06_bootstrap/lib/stylesheets/
|
792
|
-
- mod/06_bootstrap/lib/stylesheets/bootswatch_mixins.scss
|
793
|
-
- mod/06_bootstrap/lib/stylesheets/theme_bootstrap_default.css
|
794
|
-
- mod/06_bootstrap/lib/stylesheets/theme_cerulean.css
|
795
|
-
- mod/06_bootstrap/lib/stylesheets/theme_cosmo.css
|
796
|
-
- mod/06_bootstrap/lib/stylesheets/theme_cyborg.css
|
797
|
-
- mod/06_bootstrap/lib/stylesheets/theme_darkly.css
|
798
|
-
- mod/06_bootstrap/lib/stylesheets/theme_flatly.css
|
799
|
-
- mod/06_bootstrap/lib/stylesheets/theme_journal.css
|
800
|
-
- mod/06_bootstrap/lib/stylesheets/theme_lumen.css
|
801
|
-
- mod/06_bootstrap/lib/stylesheets/theme_paper.css
|
802
|
-
- mod/06_bootstrap/lib/stylesheets/theme_readable.css
|
803
|
-
- mod/06_bootstrap/lib/stylesheets/theme_sandstone.css
|
804
|
-
- mod/06_bootstrap/lib/stylesheets/theme_simplex.css
|
805
|
-
- mod/06_bootstrap/lib/stylesheets/theme_slate.css
|
806
|
-
- mod/06_bootstrap/lib/stylesheets/theme_spacelab.css
|
807
|
-
- mod/06_bootstrap/lib/stylesheets/theme_superhero.css
|
808
|
-
- mod/06_bootstrap/lib/stylesheets/theme_united.css
|
809
|
-
- mod/06_bootstrap/lib/stylesheets/theme_yeti.css
|
883
|
+
- mod/06_bootstrap/lib/stylesheets/smartmenu.css
|
810
884
|
- mod/06_bootstrap/set/all/bootstrap/form.rb
|
811
885
|
- mod/06_bootstrap/set/all/bootstrap/wrapper.rb
|
812
886
|
- mod/06_bootstrap/set/all/rich_bootstrap.rb
|
813
887
|
- mod/06_bootstrap/set/self/bootstrap_cards.rb
|
814
|
-
- mod/06_bootstrap/set/self/bootstrap_css.rb
|
815
888
|
- mod/06_bootstrap/set/self/bootstrap_js.rb
|
816
|
-
- mod/06_bootstrap/set/self/
|
817
|
-
- mod/06_bootstrap/set/self/
|
818
|
-
- mod/06_bootstrap/set/self/
|
819
|
-
- mod/06_bootstrap/set/self/theme_cosmo.rb
|
820
|
-
- mod/06_bootstrap/set/self/theme_cyborg.rb
|
821
|
-
- mod/06_bootstrap/set/self/theme_darkly.rb
|
822
|
-
- mod/06_bootstrap/set/self/theme_flatly.rb
|
823
|
-
- mod/06_bootstrap/set/self/theme_journal.rb
|
824
|
-
- mod/06_bootstrap/set/self/theme_lumen.rb
|
825
|
-
- mod/06_bootstrap/set/self/theme_paper.rb
|
826
|
-
- mod/06_bootstrap/set/self/theme_readable.rb
|
827
|
-
- mod/06_bootstrap/set/self/theme_sandstone.rb
|
828
|
-
- mod/06_bootstrap/set/self/theme_simplex.rb
|
829
|
-
- mod/06_bootstrap/set/self/theme_slate.rb
|
830
|
-
- mod/06_bootstrap/set/self/theme_spacelab.rb
|
831
|
-
- mod/06_bootstrap/set/self/theme_superhero.rb
|
832
|
-
- mod/06_bootstrap/set/self/theme_united.rb
|
833
|
-
- mod/06_bootstrap/set/self/theme_yeti.rb
|
889
|
+
- mod/06_bootstrap/set/self/bootswatch_shared.rb
|
890
|
+
- mod/06_bootstrap/set/self/smartmenu_css.rb
|
891
|
+
- mod/06_bootstrap/set/self/smartmenu_js.rb
|
834
892
|
- mod/06_bootstrap/spec/set/all/bootstrap/form_spec.rb
|
835
893
|
- spec/lib/card/action_spec.rb
|
836
894
|
- spec/lib/card/auth_spec.rb
|
@@ -855,15 +913,6 @@ files:
|
|
855
913
|
- spec/models/card/validation_spec.rb
|
856
914
|
- spec/models/card_spec.rb
|
857
915
|
- spec/spec_helper.rb
|
858
|
-
- test/fixtures/.gitkeep
|
859
|
-
- test/fixtures/card_actions.yml
|
860
|
-
- test/fixtures/card_acts.yml
|
861
|
-
- test/fixtures/card_changes.yml
|
862
|
-
- test/fixtures/card_references.yml
|
863
|
-
- test/fixtures/cards.yml
|
864
|
-
- test/fixtures/mao2.jpg
|
865
|
-
- test/fixtures/rails.gif
|
866
|
-
- test/seed.rb
|
867
916
|
homepage: http://wagn.org
|
868
917
|
licenses:
|
869
918
|
- GPL
|
@@ -912,12 +961,3 @@ test_files:
|
|
912
961
|
- spec/models/card/validation_spec.rb
|
913
962
|
- spec/models/card_spec.rb
|
914
963
|
- spec/spec_helper.rb
|
915
|
-
- test/fixtures/.gitkeep
|
916
|
-
- test/fixtures/card_actions.yml
|
917
|
-
- test/fixtures/card_acts.yml
|
918
|
-
- test/fixtures/card_changes.yml
|
919
|
-
- test/fixtures/card_references.yml
|
920
|
-
- test/fixtures/cards.yml
|
921
|
-
- test/fixtures/mao2.jpg
|
922
|
-
- test/fixtures/rails.gif
|
923
|
-
- test/seed.rb
|