human_enum 0.1.2 → 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.circleci/config.yml +15 -0
- data/.github/FUNDING.yml +2 -2
- data/CHANGELOG.md +6 -0
- data/CODEOWNERS +1 -0
- data/lib/human_enum/version.rb +1 -1
- metadata +4 -3
- data/.semaphore/semaphore.yml +0 -52
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2ee0408af702cd8f3a52b34c2e8005c38eee9fc2d2898877092da6390c516cfd
|
4
|
+
data.tar.gz: 0b1280a270a2302888335b67f8468cea4e1f73c1531ebdb016ee48971e42b940
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2e06ecb229a9d1392d4e98cf8d3566b779c8a1c5bd096ce67e6fb63742e81b7a3c27ca37aa23a4f35745466c7fd386930278d5e21ed43fd5230546d909914b4a
|
7
|
+
data.tar.gz: 1c608be53f7991992b9e8fadac867d3ca70c81ca1b54703aa8b86ba3ee82799790b5c274208d5f63e73700437aa0493f8f3a0161608d0c38087bb0c5e8092e6e
|
data/.github/FUNDING.yml
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
# These are supported funding model platforms
|
2
2
|
|
3
3
|
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
|
4
|
-
patreon:
|
4
|
+
patreon: rafasoares
|
5
5
|
open_collective: # Replace with a single Open Collective username
|
6
6
|
ko_fi: # Replace with a single Ko-fi username
|
7
7
|
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
|
8
8
|
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
|
9
|
-
liberapay: rafasoares
|
9
|
+
liberapay: rafasoares
|
10
10
|
issuehunt: # Replace with a single IssueHunt username
|
11
11
|
otechie: # Replace with a single Otechie username
|
12
12
|
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
|
data/CHANGELOG.md
CHANGED
data/CODEOWNERS
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
* @rafasoares
|
data/lib/human_enum/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: human_enum
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Rafael Soares
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-02-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -174,6 +174,7 @@ executables: []
|
|
174
174
|
extensions: []
|
175
175
|
extra_rdoc_files: []
|
176
176
|
files:
|
177
|
+
- ".circleci/config.yml"
|
177
178
|
- ".github/FUNDING.yml"
|
178
179
|
- ".github/workflows/gempush.yml"
|
179
180
|
- ".gitignore"
|
@@ -182,9 +183,9 @@ files:
|
|
182
183
|
- ".rubocop.yml"
|
183
184
|
- ".ruby-gemset"
|
184
185
|
- ".ruby-version"
|
185
|
-
- ".semaphore/semaphore.yml"
|
186
186
|
- ".travis.yml"
|
187
187
|
- CHANGELOG.md
|
188
|
+
- CODEOWNERS
|
188
189
|
- CODE_OF_CONDUCT.md
|
189
190
|
- Gemfile
|
190
191
|
- Gemfile.lock
|
data/.semaphore/semaphore.yml
DELETED
@@ -1,52 +0,0 @@
|
|
1
|
-
version: v1.0
|
2
|
-
name: Human Enum
|
3
|
-
agent:
|
4
|
-
machine:
|
5
|
-
type: e1-standard-2
|
6
|
-
os_image: ubuntu1804
|
7
|
-
containers:
|
8
|
-
- name: main
|
9
|
-
image: 'ruby:2.6.4'
|
10
|
-
env_vars:
|
11
|
-
- name: BUNDLER_VERSION
|
12
|
-
value: 2.0.2
|
13
|
-
blocks:
|
14
|
-
- name: Setup
|
15
|
-
task:
|
16
|
-
jobs:
|
17
|
-
- name: bundle
|
18
|
-
commands:
|
19
|
-
- bundle install --deployment -j 4 --path vendor/bundle
|
20
|
-
prologue:
|
21
|
-
commands:
|
22
|
-
- checkout
|
23
|
-
- cache restore
|
24
|
-
- gem install bundler -v $BUNDLER_VERSION
|
25
|
-
epilogue:
|
26
|
-
on_pass:
|
27
|
-
commands:
|
28
|
-
- cache store
|
29
|
-
- name: Code scanning
|
30
|
-
task:
|
31
|
-
jobs:
|
32
|
-
- name: check style
|
33
|
-
commands:
|
34
|
-
- bundle exec rubocop
|
35
|
-
prologue:
|
36
|
-
commands:
|
37
|
-
- checkout
|
38
|
-
- cache restore
|
39
|
-
- gem install bundler -v $BUNDLER_VERSION
|
40
|
-
- bundle install --deployment --path vendor/bundle
|
41
|
-
- name: Unit tests
|
42
|
-
task:
|
43
|
-
prologue:
|
44
|
-
commands:
|
45
|
-
- checkout
|
46
|
-
- cache restore
|
47
|
-
- gem install bundler -v $BUNDLER_VERSION
|
48
|
-
- bundle install --deployment --path vendor/bundle
|
49
|
-
jobs:
|
50
|
-
- name: RSpec
|
51
|
-
commands:
|
52
|
-
- bundle exec rake spec
|