bootswatch_rails 3.3.0.3 → 3.3.0.4
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/engine.rb +1 -1
- data/lib/bootswatch_rails/version.rb +2 -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: 146e09c0bf1abcabc3d6d87f3bbd3036575897c6
|
4
|
+
data.tar.gz: 1e233be8a713f31131520741f9320010806c565e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d2dbc2d8b5b14ebfe17a980ccae826883dd05ea78809ee7e8c9b412a0656b3d81b0a20773e08d5f9ed65afb1658ea3d4e7ca1f9d70678bf67ab05cfbce82878d
|
7
|
+
data.tar.gz: 3e8f4c4fe612de084ac4065d4ea5296687d6d67543fa35bd96d7df86c1ac134930bf1f42f7872f8b912ac797a121ec3005949c4b760c1d87792a8a10fc807626
|
@@ -7,7 +7,7 @@ module BootswatchRails
|
|
7
7
|
def bootswatch_link_tag(theme = nil, options = {})
|
8
8
|
theme ||= BootswatchRails::THEMES[BootswatchRails::DEFAULT].to_s
|
9
9
|
return stylesheet_link_tag(theme) if !options.delete(:force) and OFFLINE
|
10
|
-
bootswatch_url = "//maxcdn.bootstrapcdn.com/bootswatch/#{BootswatchRails::
|
10
|
+
bootswatch_url = "//maxcdn.bootstrapcdn.com/bootswatch/#{BootswatchRails::BOOTSWATCH}/#{theme}/bootstrap.min.css"
|
11
11
|
fontawesome_url = "//maxcdn.bootstrapcdn.com/font-awesome/#{BootswatchRails::FONT_AWESOME}/css/font-awesome.min.css"
|
12
12
|
stylesheet_link_tag(bootswatch_url) + "\n " + stylesheet_link_tag(fontawesome_url)
|
13
13
|
end
|
@@ -1,7 +1,8 @@
|
|
1
1
|
module BootswatchRails
|
2
2
|
BOOTSTRAP = "3.3.0"
|
3
|
+
BOOTSWATCH = "3.2.0"
|
3
4
|
FONT_AWESOME = "4.2.0"
|
4
|
-
VERSION = "3.3.0.
|
5
|
+
VERSION = "3.3.0.4"
|
5
6
|
|
6
7
|
THEMES = [:cerulean, :cosmo, :custom, :cyborg, :darkly, :flatly, :journal, :lumen, :paper, :readable, :sandstone, :simplex, :slate, :spacelab, :superhero, :united, :yeti]
|
7
8
|
DEFAULT = 0
|