bootswitch 0.0.3 → 0.0.4
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/VERSION +1 -1
- data/app/helpers/theme_helper.rb +2 -4
- data/bootswitch.gemspec +3 -2
- data/lib/bootswitch/methods.rb +5 -0
- data/lib/bootswitch.rb +1 -0
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4a00692753dc02d50ea532e62a201eb7b843a68c
|
|
4
|
+
data.tar.gz: 112284bf266536ac4863e5818f01fe0a7815c959
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3fda2f7e049721b5dc8f65460ef6a7504e20435af8556fe9f29211d882b3ecadc593ec1d72ea7a89e25b21deb38960935045f4f568461ba73dc7cde970a3fc5d
|
|
7
|
+
data.tar.gz: 1679d7060ce628d7ab56f949ff4220aab3354e08cf24095399e2a60cf6957d18022d20d2a874a8aa17a2217790fe48c438b2644c79bb5458c59f9050f11ca56a
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0.
|
|
1
|
+
0.0.4
|
data/app/helpers/theme_helper.rb
CHANGED
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
module ThemeHelper
|
|
2
|
-
|
|
3
|
-
['amelia', 'cerulean', 'cosmo', 'custom', 'cyborg', 'darkly', 'flatly','global','journal','readable','simplex','slate','spacelab','superhero','united','yeti']
|
|
4
|
-
end
|
|
2
|
+
include Bootswitch
|
|
5
3
|
|
|
6
4
|
def theme_name
|
|
7
|
-
send(
|
|
5
|
+
send(configuration.theme_method)
|
|
8
6
|
end
|
|
9
7
|
|
|
10
8
|
def theme_stylesheet_link_tag
|
data/bootswitch.gemspec
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
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: bootswitch 0.0.
|
|
5
|
+
# stub: bootswitch 0.0.4 ruby lib
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |s|
|
|
8
8
|
s.name = "bootswitch"
|
|
9
|
-
s.version = "0.0.
|
|
9
|
+
s.version = "0.0.4"
|
|
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"]
|
|
@@ -83,6 +83,7 @@ Gem::Specification.new do |s|
|
|
|
83
83
|
"lib/bootswitch.rb",
|
|
84
84
|
"lib/bootswitch/configuration.rb",
|
|
85
85
|
"lib/bootswitch/engine.rb",
|
|
86
|
+
"lib/bootswitch/methods.rb",
|
|
86
87
|
"lib/bootswitch/railtie.rb",
|
|
87
88
|
"lib/bootswitch/version.rb",
|
|
88
89
|
"lib/generators/bootswitch/install/install_generator.rb",
|
data/lib/bootswitch.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bootswitch
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Karen Lundgren
|
|
@@ -181,6 +181,7 @@ files:
|
|
|
181
181
|
- lib/bootswitch.rb
|
|
182
182
|
- lib/bootswitch/configuration.rb
|
|
183
183
|
- lib/bootswitch/engine.rb
|
|
184
|
+
- lib/bootswitch/methods.rb
|
|
184
185
|
- lib/bootswitch/railtie.rb
|
|
185
186
|
- lib/bootswitch/version.rb
|
|
186
187
|
- lib/generators/bootswitch/install/install_generator.rb
|