activerecord-mysql-enum 0.1.0 → 0.1.1.pre.1
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 +5 -5
- data/CHANGELOG.md +4 -0
- data/Gemfile.lock +2 -2
- data/README.md +1 -1
- data/enum_column.gemspec +1 -1
- data/lib/active_record/mysql/enum/version.rb +1 -1
- metadata +10 -11
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: e9a9f684ad661eef7023bb8d1d6803cab89a8b7eb4603e70295bcd75ba734404
|
|
4
|
+
data.tar.gz: a01073f1a5eb099d42a7943b277e1cd1baa3359dfa6ceaef22b06227c49445c9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6fa3141b422af92b266f4e64d5c94e3112a01bf29e0492a7b56c59a419d25bff390d87b48345f99a3782863b1d997b7711a66fef037c3d3133721d7d1c14ef30
|
|
7
|
+
data.tar.gz: 1f1e4fa5c18209120d457f474cf2730df8345aa2f2361d2875221daa0685a26ccb7b314cd98c28d3420d1d779d6d281ea61ae026891c92598ae1f25fbfbb025e
|
data/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,10 @@ Inspired by [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|
|
4
4
|
|
|
5
5
|
Note: this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## [0.1.1.pre.1] - 2020-08-18
|
|
8
|
+
### Added
|
|
9
|
+
- added rails 6 in dependency range
|
|
10
|
+
|
|
7
11
|
## [0.1.0] - 2020-08-17
|
|
8
12
|
### Added
|
|
9
13
|
- Backwards compatibility with Rails 4
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -17,7 +17,7 @@ Currently this has been manually tested with Rails version 4 and 5, and works wi
|
|
|
17
17
|
## Installation
|
|
18
18
|
In your `Gemfile` add the following snippet
|
|
19
19
|
```ruby
|
|
20
|
-
gem 'activerecord-mysql-enum', '~> 0.1', require: '
|
|
20
|
+
gem 'activerecord-mysql-enum', '~> 0.1', require: 'active_record/mysql/enum'
|
|
21
21
|
```
|
|
22
22
|
|
|
23
23
|
## Usage
|
data/enum_column.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: activerecord-mysql-enum
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1.pre.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nick Pohodnya
|
|
8
8
|
- Invoca Development
|
|
9
|
-
autorequire:
|
|
9
|
+
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2020-08-
|
|
12
|
+
date: 2020-08-18 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: activerecord
|
|
@@ -20,7 +20,7 @@ dependencies:
|
|
|
20
20
|
version: '4.2'
|
|
21
21
|
- - "<"
|
|
22
22
|
- !ruby/object:Gem::Version
|
|
23
|
-
version: '
|
|
23
|
+
version: '7'
|
|
24
24
|
type: :runtime
|
|
25
25
|
prerelease: false
|
|
26
26
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -30,7 +30,7 @@ dependencies:
|
|
|
30
30
|
version: '4.2'
|
|
31
31
|
- - "<"
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: '
|
|
33
|
+
version: '7'
|
|
34
34
|
description: Enable enum type for the MySQL Adapter in ActiveRecord
|
|
35
35
|
email:
|
|
36
36
|
- development@invoca.com
|
|
@@ -65,7 +65,7 @@ licenses: []
|
|
|
65
65
|
metadata:
|
|
66
66
|
source_code_uri: https://github.com/Invoca/activerecord-mysql-enum
|
|
67
67
|
allowed_push_host: https://rubygems.org
|
|
68
|
-
post_install_message:
|
|
68
|
+
post_install_message:
|
|
69
69
|
rdoc_options: []
|
|
70
70
|
require_paths:
|
|
71
71
|
- lib
|
|
@@ -76,13 +76,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
76
76
|
version: '0'
|
|
77
77
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
78
78
|
requirements:
|
|
79
|
-
- - "
|
|
79
|
+
- - ">"
|
|
80
80
|
- !ruby/object:Gem::Version
|
|
81
|
-
version:
|
|
81
|
+
version: 1.3.1
|
|
82
82
|
requirements: []
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
signing_key:
|
|
83
|
+
rubygems_version: 3.0.1
|
|
84
|
+
signing_key:
|
|
86
85
|
specification_version: 4
|
|
87
86
|
summary: Enable enum type for the MySQL Adapter in ActiveRecord
|
|
88
87
|
test_files: []
|