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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 754cd01c0e5f2c7176d6cb835ee43cbbf555433f3b94f6d87c9762ca8a4091a5
4
- data.tar.gz: ea1fa8588c89b94387dcb3df06e254041dc986832859e82b085d4bfb0e6dd93f
3
+ metadata.gz: 2ee0408af702cd8f3a52b34c2e8005c38eee9fc2d2898877092da6390c516cfd
4
+ data.tar.gz: 0b1280a270a2302888335b67f8468cea4e1f73c1531ebdb016ee48971e42b940
5
5
  SHA512:
6
- metadata.gz: f28aa6018ef05d2bb2a8e745d919760ab4375c0f3056796cdd82903b5b3d1270f8bf1f15176c70d1002def46f4401dd50aa6df9a4e7d6cb90b55554b95c2c733
7
- data.tar.gz: 9a1d8bc8aa7d50fc72044159631eca687247899c9d763398e8f6446909ac4d48196b098120d8701067c8e28f79f549b1effb3e431b171984c05e8b86fad503cd
6
+ metadata.gz: 2e06ecb229a9d1392d4e98cf8d3566b779c8a1c5bd096ce67e6fb63742e81b7a3c27ca37aa23a4f35745466c7fd386930278d5e21ed43fd5230546d909914b4a
7
+ data.tar.gz: 1c608be53f7991992b9e8fadac867d3ca70c81ca1b54703aa8b86ba3ee82799790b5c274208d5f63e73700437aa0493f8f3a0161608d0c38087bb0c5e8092e6e
@@ -0,0 +1,15 @@
1
+ version: 2.1
2
+ orbs:
3
+ ruby: circleci/ruby@0.1.2
4
+
5
+ jobs:
6
+ build:
7
+ docker:
8
+ - image: circleci/ruby:2.6.4-stretch-node
9
+ executor: default
10
+ steps:
11
+ - checkout
12
+ - run:
13
+ name: Which bundler?
14
+ command: bundle -v
15
+ - ruby/bundle-install
@@ -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: # Replace with a single Patreon username
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 # Replace with a single Liberapay username
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']
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.3
4
+ No code changes, just changing our CI
5
+
6
+ ## 0.1.2
7
+ Adding proper specs and improving the quality of the gem
8
+
3
9
  ## 0.1.1
4
10
  Improvements to the gem (no code changes)
5
11
 
@@ -0,0 +1 @@
1
+ * @rafasoares
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module HumanEnum
4
- VERSION = '0.1.2'
4
+ VERSION = '0.1.3'
5
5
  end
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.2
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: 2019-10-12 00:00:00.000000000 Z
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
@@ -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