bootswatch_rails 3.2.0.31 → 3.2.0.32
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/bootswatch_rails/version.rb +1 -1
- data/lib/generators/bootswatch_rails/install/templates/lib/templates/erb/scaffold/edit.html.erb +1 -1
- data/lib/generators/bootswatch_rails/install/templates/lib/templates/erb/scaffold/index.html.erb +1 -1
- data/lib/generators/bootswatch_rails/install/templates/lib/templates/erb/scaffold/new.html.erb +1 -1
- data/lib/generators/bootswatch_rails/install/templates/lib/templates/erb/scaffold/show.html.erb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8b3f3116cd4be49d21e10a1e31ebe32df1b86794
|
4
|
+
data.tar.gz: 27dc9db0aade8d1995aaca9c632e2327947efa2b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fe80df1336061e2b2b3f1e60ef9d3c6476580ac59080051849914c8c49dd9e585f6afbb0bf1446b0facf3d21a2577036f2a5fd15affc23b98d0738c3e1ea7b70
|
7
|
+
data.tar.gz: 10f142dd01fabf4e12885670bd977939aef2730592ce06e4a6cd44d00a53ac25f1f2039b9acccef73b87f048be7e8dd6b4df9e305750a7a3cbc000d39eb35b96
|
@@ -1,6 +1,6 @@
|
|
1
1
|
module BootswatchRails
|
2
2
|
BOOTSTRAP = "3.2.0"
|
3
|
-
VERSION = "3.2.0.
|
3
|
+
VERSION = "3.2.0.32"
|
4
4
|
|
5
5
|
THEMES = [:amelia, :cerulean, :cosmo, :custom, :cyborg, :darkly, :flatly, :journal, :lumen, :paper, :readable, :sandstone, :simplex, :slate, :spacelab, :superhero, :united, :yeti]
|
6
6
|
DEFAULT = 1
|
data/lib/generators/bootswatch_rails/install/templates/lib/templates/erb/scaffold/edit.html.erb
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
|
1
|
+
<%%- page_title t('activerecord.models.<%= singular_table_name %>.one') -%>
|
2
2
|
<h2><%%= t('headers.edit', name: t('activerecord.models.<%= singular_table_name %>.one')) %></h2>
|
3
3
|
|
4
4
|
<%%= render 'form' %>
|
data/lib/generators/bootswatch_rails/install/templates/lib/templates/erb/scaffold/index.html.erb
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
|
1
|
+
<%%- page_title t('activerecord.models.<%= singular_table_name %>.other') -%>
|
2
2
|
<h2><%%= t('headers.index', name: t('activerecord.models.<%= singular_table_name %>.other')) %></h2>
|
3
3
|
|
4
4
|
<table class="table table-striped table-hover">
|
data/lib/generators/bootswatch_rails/install/templates/lib/templates/erb/scaffold/new.html.erb
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
|
1
|
+
<%%- page_title t('activerecord.models.<%= singular_table_name %>.one') -%>
|
2
2
|
<h2><%%= t('headers.new', name: t('activerecord.models.<%= singular_table_name %>.one')) %></h2>
|
3
3
|
|
4
4
|
<%%= render 'form' %>
|
data/lib/generators/bootswatch_rails/install/templates/lib/templates/erb/scaffold/show.html.erb
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
|
1
|
+
<%%- page_title t('activerecord.models.<%= singular_table_name %>.one') -%>
|
2
2
|
<h2><%%= t('headers.show', name: t('activerecord.models.<%= singular_table_name %>.one')) %></h2>
|
3
3
|
|
4
4
|
<table class="table table-striped table-hover">
|