mongoid-enum-dazzl 1.0.0.pre.994113018 → 1.0.0.pre.994130791

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +4 -5
  3. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '0626089bfcaade86400e015185f2f14dbe5f181450b29865d1b7645a3ae14480'
4
- data.tar.gz: 73d1d048ae2202bd5bd8f3b8c51a2101c411e67b6811377c30ff3a3c9b60f049
3
+ metadata.gz: e29d111fafed1fd0fd1b722bc073c35a4bcc8bd6d9e2d1281c8183b42e3b7a9a
4
+ data.tar.gz: c17ced9794070bba7ca183bc64bd0e13939f344e0504dae6aca1a20d55d9719c
5
5
  SHA512:
6
- metadata.gz: 33619cbd36c3fcb28a6a343ee673b701299531edf85819c700dfcc465645e7d62161febf36ae5f2e0e600ca0bb3c381f8838e58cff3dff5fbc31ce00a8fc7f44
7
- data.tar.gz: dc7b1665eaf896dd8d67c2c5279d029a6d6d53ca00d40e8e38d0cb792c472ac926118de443a5ea107338aeaa274addcef833b4117eeb439c7c09efae6fdb85aa
6
+ metadata.gz: 0fd80f77442d1250716b3b2b3426e1de0a72b43e22b090252243c096da5383d73637834c24be943384c1755ccc79b788166282edf56cf5eedc5f9ac4440fe60f
7
+ data.tar.gz: 8dec304dc10c1796d03f0f00a74104e6631529d3ee4f943a1b3668dccd2944f33c289ac55e306212c6955bd995e196fedc39163730d5f1324f8789fd4ed25718
data/README.md CHANGED
@@ -1,10 +1,9 @@
1
- # Mongoid::Enum
1
+ # Mongoid::Enum::Dazzl
2
2
  [![RSpec](https://github.com/dazzl-tv/mongoid-enum/actions/workflows/rspec.yml/badge.svg)](https://github.com/dazzl-tv/mongoid-enum/actions/workflows/rspec.yml)
3
3
  [![Linter](https://github.com/dazzl-tv/mongoid-enum/actions/workflows/linter.yml/badge.svg)](https://github.com/dazzl-tv/mongoid-enum/actions/workflows/linter.yml)
4
4
  [![Gem Version](https://badge.fury.io/rb/mongoid-enum-dazzl.svg)](https://badge.fury.io/rb/mongoid-enum-dazzl)
5
5
  [![Docs](https://inch-ci.org/github/dazzl-tv/mongoid-enum.svg)](https://inch-ci.org/github/dazzl-tv/mongoid-enum)
6
- [![Maintainability](https://api.codeclimate.com/v1/badges/8ac20c418f9288f6671d/maintainability)](https://codeclimate.com/github/dazzl-tv/mongoid-enum/maintainability)
7
- [![Test Coverage](https://api.codeclimate.com/v1/badges/8ac20c418f9288f6671d/test_coverage)](https://codeclimate.com/github/dazzl-tv/mongoid-enum/test_coverage)
6
+ [![Known Vulnerabilities](https://snyk.io/test/github/dazzl-tv/mongoid-enum/badge.svg)](https://snyk.io/test/github/dazzl-tv/mongoid-enum)
8
7
 
9
8
  Heavily inspired by [DHH's
10
9
  ActiveRecord::Enum](https://github.com/rails/rails/commit/db41eb8a6ea88b854bf5cd11070ea4245e1639c5), this little library is
@@ -20,7 +19,7 @@ and a few other bits-and-bobs.
20
19
  Add this to your Gemfile:
21
20
 
22
21
  ```ruby
23
- gem "mongoid-enum"
22
+ gem 'mongoid-enum-dazzl'
24
23
  ```
25
24
 
26
25
  And then run `bundle install`.
@@ -31,7 +30,7 @@ And then run `bundle install`.
31
30
  ```ruby
32
31
  class Payment
33
32
  include Mongoid::Document
34
- include Mongoid::Enum
33
+ include Mongoid::Enum::Dazzl
35
34
 
36
35
  enum :status, [:pending, :approved, :declined]
37
36
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mongoid-enum-dazzl
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0.pre.994113018
4
+ version: 1.0.0.pre.994130791
5
5
  platform: ruby
6
6
  authors:
7
7
  - VAILLANT Jeremy