smallvictories 0.0.8 → 0.0.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/smallvictories/constants.rb +1 -1
- data/lib/smallvictories/version.rb +1 -1
- data/spec/builder_spec.rb +6 -6
- data/spec/configuration_spec.rb +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: b9faaa62c962fb36e4741fc2b55cbd053bffc334
|
4
|
+
data.tar.gz: 01bc63dbf679d4da0909ee511c7ed2b10093f478
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f97d08f54216b0f09e7627ea54efdd2455cf09e2e8ec047a32682c57c5659268c1027f716bd1cc768df88b29ad539994bb39e63497f572e97469857f6421755c
|
7
|
+
data.tar.gz: 2ca870ab41183e1e1ccedf8fccafce87c0820594a4e2eab9815c4026b2b7ce2466ead422a2e3bd701b0485a70cf82d9c371cc9aef33a15ddb6b4bba223540929
|
data/spec/builder_spec.rb
CHANGED
@@ -8,15 +8,15 @@ describe SmallVictories do
|
|
8
8
|
builder.setup 'spec/fixtures/new'
|
9
9
|
expect(File.exists?('fixtures/new/_sv_config.yml')).to eq true
|
10
10
|
expect(File.exists?('fixtures/new/.sv_guardfile')).to eq true
|
11
|
-
expect(File.exists?('fixtures/new/
|
12
|
-
expect(File.exists?('fixtures/new/
|
13
|
-
expect(File.exists?('fixtures/new/
|
14
|
-
expect(File.exists?('fixtures/new/
|
15
|
-
expect(File.exists?('fixtures/new/
|
11
|
+
expect(File.exists?('fixtures/new/src/_layout.liquid')).to eq true
|
12
|
+
expect(File.exists?('fixtures/new/src/index.liquid')).to eq true
|
13
|
+
expect(File.exists?('fixtures/new/src/_includes/_head.liquid')).to eq true
|
14
|
+
expect(File.exists?('fixtures/new/src/application.js')).to eq true
|
15
|
+
expect(File.exists?('fixtures/new/src/application.css')).to eq true
|
16
16
|
end
|
17
17
|
|
18
18
|
after do
|
19
|
-
%w(fixtures/new/_sv_config.yml fixtures/new/.sv_guardfile fixtures/new/
|
19
|
+
%w(fixtures/new/_sv_config.yml fixtures/new/.sv_guardfile fixtures/new/src/index.liquid fixtures/new/src/application.css fixtures/new/src/application.js fixtures/new/src/_includes/_head.liquid fixtures/new/src/_layout.liquid).each { |path| clean_file(path) }
|
20
20
|
end
|
21
21
|
end
|
22
22
|
end
|
data/spec/configuration_spec.rb
CHANGED