acts_as_enum 1.1.2 → 1.1.3
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/VERSION +1 -1
- metadata +4 -4
- data/CHANGELOG +0 -30
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ebc13d822c1e971635070e24c0e55769ae55b4c3
|
4
|
+
data.tar.gz: 31533691be43f459df41b9c15baf86399762fd4e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5487c60179bc585c955c275bce02119593e00dca9604825abd6c3bcefbb188b6041bc21d635368ab8eaa2feb00025ffbfde1a0358655ae5e30bc67a8f31cfd26
|
7
|
+
data.tar.gz: 09a57664a1470386a556cc8147e73fcc7044d54d7f5b2bfcdbbf8a838328b0d8e68d4138bfcc7c08d86e3ab3a8edbfba354d7e205c74163259ab6b8379a66a6e
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.1.
|
1
|
+
1.1.3
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: acts_as_enum
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mike Liang
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-07-
|
11
|
+
date: 2013-07-24 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: For multiple values activerecord attributes. This gem have some very
|
14
14
|
useful methods and constants for attribute.
|
@@ -19,7 +19,6 @@ extra_rdoc_files: []
|
|
19
19
|
files:
|
20
20
|
- lib/acts_as_enum.rb
|
21
21
|
- lib/tasks/acts_as_enum_tasks.rake
|
22
|
-
- CHANGELOG
|
23
22
|
- MIT-LICENSE
|
24
23
|
- Rakefile
|
25
24
|
- README.rdoc
|
@@ -27,7 +26,8 @@ files:
|
|
27
26
|
- VERSION
|
28
27
|
- init.rb
|
29
28
|
homepage: http://github.com/liangwenke/acts_as_enum
|
30
|
-
licenses:
|
29
|
+
licenses:
|
30
|
+
- MIT
|
31
31
|
metadata: {}
|
32
32
|
post_install_message:
|
33
33
|
rdoc_options: []
|
data/CHANGELOG
DELETED
@@ -1,30 +0,0 @@
|
|
1
|
-
0.1.0
|
2
|
-
First commit
|
3
|
-
|
4
|
-
0.1.1
|
5
|
-
Comment the alias method enum_attr
|
6
|
-
|
7
|
-
0.1.2
|
8
|
-
Fixed a bug
|
9
|
-
|
10
|
-
0.1.3
|
11
|
-
Comment the validation method validates_inclusion_of
|
12
|
-
|
13
|
-
0.2.0
|
14
|
-
Add alias method enum_attr for acts_as_enum
|
15
|
-
Rename acts_as_enum options :enum to :in
|
16
|
-
|
17
|
-
1.0.1
|
18
|
-
Options :in value is Array, can be have two or three elements
|
19
|
-
|
20
|
-
1.0.2
|
21
|
-
Fixed a bug for #{boolean_column_attr}_name method
|
22
|
-
|
23
|
-
1.1.0
|
24
|
-
Option :in support Hash Object
|
25
|
-
|
26
|
-
1.1.1
|
27
|
-
Fix a bug for scope method
|
28
|
-
|
29
|
-
1.1.2
|
30
|
-
Support Rails 4
|