bootswitch 0.0.4 → 0.0.5
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/app/helpers/theme_helper.rb +1 -1
- data/bootswitch.gemspec +2 -2
- data/lib/generators/bootswitch/install/templates/initializer.rb +2 -1
- data/spec/helpers/theme_helper_spec.rb +5 -0
- 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: 8447e21c182327851533223d0336881f8a06ee57
|
4
|
+
data.tar.gz: bbf8d7c4956c29b7d41c9dd674493540bf2602d2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 368bf63fcfb4b6ad35d890760bbfc3f1cbf49af1d9a83d90ba56140ec48cb39dd368d088e76883bc1d001b8ce97ee25910ac57e6b38f53001c141cdb1e6d6d24
|
7
|
+
data.tar.gz: 43ea113116c4d7cbacada7de3dc7d875176e6b30a7a275fbb8dfd6bc83cb8e178da92dc4af988a856375bd33cc408ee6b954abd2c4259a09aad30f52d5cf33b8
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.5
|
data/app/helpers/theme_helper.rb
CHANGED
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.5 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.5"
|
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"]
|
@@ -1,6 +1,11 @@
|
|
1
1
|
require 'spec_helper'
|
2
2
|
|
3
3
|
describe ThemeHelper do
|
4
|
+
describe '#themes' do
|
5
|
+
it 'returns an array' do
|
6
|
+
helper.themes.should be_an Array
|
7
|
+
end
|
8
|
+
end
|
4
9
|
describe '#theme_name' do
|
5
10
|
it 'returns the a theme name' do
|
6
11
|
['amelia', 'cerulean', 'cosmo', 'custom', 'cyborg', 'darkly', 'flatly','global','journal','readable','simplex','slate','spacelab','superhero','united','yeti'].should include helper.theme_name
|