sisow 0.9.1 → 0.9.2
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.
- data/lib/sisow/configuration.rb +8 -0
- data/lib/sisow/version.rb +1 -1
- data/spec/models/configuration_spec.rb +10 -0
- metadata +2 -2
data/lib/sisow/configuration.rb
CHANGED
data/lib/sisow/version.rb
CHANGED
@@ -21,5 +21,15 @@ describe Sisow::Configuration do
|
|
21
21
|
@configuration.debug_mode_enabled?.should == true
|
22
22
|
end
|
23
23
|
|
24
|
+
it "should always save merchant_key as string" do
|
25
|
+
@configuration.merchant_key = 123
|
26
|
+
@configuration.merchant_key.should == '123'
|
27
|
+
end
|
28
|
+
|
29
|
+
it "should always save merchant_id as string" do
|
30
|
+
@configuration.merchant_id = 123
|
31
|
+
@configuration.merchant_id.should == '123'
|
32
|
+
end
|
33
|
+
|
24
34
|
|
25
35
|
end
|
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: sisow
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 0.9.
|
5
|
+
version: 0.9.2
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Marcel de Graaf
|
@@ -10,7 +10,7 @@ autorequire:
|
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
|
13
|
-
date: 2012-03-
|
13
|
+
date: 2012-03-13 00:00:00 +01:00
|
14
14
|
default_executable:
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|