active_type 0.6.3 → 0.6.4

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: ae001f6573873833446638cad632eb52ca6c54e2
4
- data.tar.gz: fd9903ddb3435cef627cba36dfd68a95a13a09a6
3
+ metadata.gz: c09dc1b14d3c866ae10a274443912d0244a5067d
4
+ data.tar.gz: 390e864621d291520aec706e13d0af736b83a080
5
5
  SHA512:
6
- metadata.gz: 8a4bc20542bdddd93b52dc0c5e80177425450c32582b429bcd837ea916e2eea52d0e22f1602d5fc757d63a3cb6c1486a17030644e5d41c2737c7f235f12a547f
7
- data.tar.gz: 3aaf32f0db3df343720e31e6adc4c3f94bb76e804956292f60a54594abc179e3ff929b9214da6b74b473ea9baae35a881a98f9df18af72af786319d28c88d6d9
6
+ metadata.gz: c430a0a288e562fcce0cc20836f147aacf69acc288f22d0b352857df2d7aab8e6178dc3eb22347a3ec48205b14aa01037dad822ecbe19e241bdeb3582b233411
7
+ data.tar.gz: e0dc7279f4969d4cdeae0f98caf0f98ede9ddb22f64e456521d4b68575256b8966d89259946ef16b9cd2556706fff01581c3d41170e2bc54e1a887355dc7ac61
data/CHANGELOG.md CHANGED
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
4
4
 
5
5
  ActiveType is in a pre-1.0 state. This means that its APIs and behavior are subject to breaking changes without deprecation notices. Until 1.0, version numbers will follow a [Semver][]-ish `0.y.z` format, where `y` is incremented when new features or breaking changes are introduced, and `z` is incremented for lesser changes or bug fixes.
6
6
 
7
+ ## [0.6.4][] (2017-02-27)
8
+
9
+ * Fix an issue when using `ActiveType.cast` "too early".
10
+
7
11
  ## [0.6.3][] (2017-01-30)
8
12
 
9
13
  * Fix a load error when using `ActiveType::Object` before using `ActiveRecord::Base` within a Rails app.
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- active_type (0.6.2)
4
+ active_type (0.6.4)
5
5
  activerecord (>= 3.2)
6
6
 
7
7
  GEM
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- active_type (0.6.2)
4
+ active_type (0.6.4)
5
5
  activerecord (>= 3.2)
6
6
 
7
7
  GEM
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- active_type (0.6.2)
4
+ active_type (0.6.4)
5
5
  activerecord (>= 3.2)
6
6
 
7
7
  GEM
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- active_type (0.6.2)
4
+ active_type (0.6.4)
5
5
  activerecord (>= 3.2)
6
6
 
7
7
  GEM
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- active_type (0.6.2)
4
+ active_type (0.6.4)
5
5
  activerecord (>= 3.2)
6
6
 
7
7
  GEM
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- active_type (0.6.2)
4
+ active_type (0.6.4)
5
5
  activerecord (>= 3.2)
6
6
 
7
7
  GEM
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- active_type (0.6.2)
4
+ active_type (0.6.4)
5
5
  activerecord (>= 3.2)
6
6
 
7
7
  GEM
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- active_type (0.6.2)
4
+ active_type (0.6.4)
5
5
  activerecord (>= 3.2)
6
6
 
7
7
  GEM
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- active_type (0.6.2)
4
+ active_type (0.6.4)
5
5
  activerecord (>= 3.2)
6
6
 
7
7
  GEM
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- active_type (0.6.2)
4
+ active_type (0.6.4)
5
5
  activerecord (>= 3.2)
6
6
 
7
7
  GEM
@@ -51,8 +51,4 @@ module ActiveType
51
51
  extend self
52
52
 
53
53
  end
54
-
55
- # Make Util methods available under the `ActiveType` namespace
56
- # like `ActiveType.cast(...)`
57
- extend Util
58
54
  end
@@ -1,3 +1,3 @@
1
1
  module ActiveType
2
- VERSION = '0.6.3'
2
+ VERSION = '0.6.4'
3
3
  end
data/lib/active_type.rb CHANGED
@@ -17,4 +17,8 @@ module ActiveType
17
17
  autoload :Object
18
18
  autoload :Record
19
19
  autoload :Util
20
+
21
+ # Make Util methods available under the `ActiveType` namespace
22
+ # like `ActiveType.cast(...)`
23
+ extend Util
20
24
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: active_type
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.3
4
+ version: 0.6.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tobias Kraze
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2017-02-16 00:00:00.000000000 Z
12
+ date: 2017-02-27 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler