albacore 2.3.7 → 2.3.8
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/lib/albacore/config_dsl.rb +2 -2
- data/lib/albacore/task_types/asmver.rb +1 -1
- data/lib/albacore/version.rb +1 -1
- data/spec/asmver_task_spec.rb +6 -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: a78cede1e5816508460fa6f3e7a2817ae80b2e06
|
4
|
+
data.tar.gz: a5bdeddc75f7217862ae4636223fa0ebebe2844f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5fb916ee2b72ca1c63ff64175132ce1b210a851e6e9b492a732bc8faa9bb4b696a1665aec207ab394574fc74f75be2e560c3dc78a91d7a018f06c79221ac60c3
|
7
|
+
data.tar.gz: 5ff100dac4c11ede4e9f4ce60f7ee56535ecb151c714e78ce81dbf9ea0e58939994f03849e198ea228880ac8b1f4ecb46323aa4c262d22caa20d73e1ad52d470
|
data/lib/albacore/config_dsl.rb
CHANGED
data/lib/albacore/version.rb
CHANGED
data/spec/asmver_task_spec.rb
CHANGED
@@ -31,7 +31,12 @@ describe ::Albacore::Asmver::Config, 'when setting attributes and out' do
|
|
31
31
|
it 'should allow changing attributes' do
|
32
32
|
expect(subject).to respond_to :change_attributes
|
33
33
|
end
|
34
|
-
|
34
|
+
it 'should allow reading namespace' do
|
35
|
+
expect(subject.namespace).to eq 'Hello.World'
|
36
|
+
end
|
37
|
+
it 'should allow reading file_path' do
|
38
|
+
expect(subject.file_path).to eq 'Version.fs'
|
39
|
+
end
|
35
40
|
it 'should allow getting and setting attributes' do
|
36
41
|
subject.change_attributes do |as|
|
37
42
|
as[:a_key] = '123'
|