watir_model 0.5.7 → 0.5.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 63c72fa3e00ff53cdd963b221d32468fcde94183
4
- data.tar.gz: bbc0be248072064c854e3aa6234f70897490c7b4
3
+ metadata.gz: 68dbe62cfaa900e7e825b4dcdb55d9e09611f1c1
4
+ data.tar.gz: 0fda8d91f64e7c4a6b9f8c9020b0441256634dfc
5
5
  SHA512:
6
- metadata.gz: 344b9591dda9ec985bcd865df39eb2bbff22863badbb7e3e8d3520d3abbaee62c4c603c6594135bd7c12179787552ee540448de1f51ada54e0d0b8afab96d983
7
- data.tar.gz: bbbeb59b42e533dbb0885a187fa161fc3de6a75759c368d4a5329d21cdaef0d89e2d63a04f6ca521bfac5acafc8f3c652b102c2240d92f66e32faf22159103dc
6
+ metadata.gz: 4959a92fe3658bd4f2648c910c8071c557189120c87c935cff4ae7f34667e540c50f200bbb2d4c784f2f55822eb243872f251a0d86dc347e359f325130cc6cf1
7
+ data.tar.gz: '09e59a4ab685429a7f0ba8558375532b22d6e9fbdc7f0845f8e85fe84d8681f15c412068a074363ea638b708a4b1f05c9092932b5ed8de48de1bd79e1e428214'
data/CHANGES.md CHANGED
@@ -1,3 +1,7 @@
1
+ ### 0.5.8 (2018-01-21)
2
+
3
+ * Fix bug in alias methods in conversions
4
+
1
5
  ### 0.5.7 (2018-01-21)
2
6
 
3
7
  * support converting to and from custom data types
@@ -8,8 +8,8 @@ module DataConversions
8
8
  Object.const_get(__callee__.to_s.gsub('convert_to_', '').camelcase).parse value
9
9
  end
10
10
 
11
- alias_method :convert_date, :convert_time
12
- alias_method :convert_date_time, :convert_time
11
+ alias_method :convert_to_date, :convert_to_time
12
+ alias_method :convert_to_date_time, :convert_to_time
13
13
 
14
14
  def convert_to_integer(value)
15
15
  value.to_i
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |spec|
4
4
  spec.name = "watir_model"
5
- spec.version = "0.5.7"
5
+ spec.version = "0.5.8"
6
6
  spec.authors = ["Titus Fortner"]
7
7
  spec.email = ["titusfortner@gmail.com"]
8
8
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: watir_model
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.7
4
+ version: 0.5.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Titus Fortner