yamls 0.1.0 → 0.1.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 +4 -4
- data/.circleci/config.yml +29 -6
- data/.rubocop.yml +10 -1
- data/Gemfile +1 -0
- data/lib/yamls/config.rb +1 -0
- data/lib/yamls/parameters.rb +1 -0
- data/lib/yamls/version.rb +1 -1
- data/lib/yamls/yaml_load.rb +1 -0
- data/yamls.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d46df14bb66468b23c9ab08d1b5dfcadb439a148eacb145ff07e93d7b0f84066
|
|
4
|
+
data.tar.gz: f06503685e11f42c7c7a687edaa81896a45e36fd6e464b7cc8aa79d6fa53b6e6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: be090cb08898f3d6f590b63bed2f58c0f2c57d2e6c46aac6d01ef5969583d47435d445bb5f00bc509bbe66b3cb787a068498943c946e595225db0f42ef96152e
|
|
7
|
+
data.tar.gz: d3aecf3dc56a5cbd48a1f414abad6f0eb2872bde8b7cb657dd69d8256f170043da8398f0ea6ae31bb3c517e0c7fccf701022c1f01d0fe6b84ac92b3f3a78d5c3
|
data/.circleci/config.yml
CHANGED
|
@@ -1,13 +1,36 @@
|
|
|
1
|
+
# Use the latest 2.1 version of CircleCI pipeline process engine.
|
|
2
|
+
# See: https://circleci.com/docs/2.0/configuration-reference
|
|
1
3
|
version: 2.1
|
|
4
|
+
|
|
5
|
+
# Orbs are reusable packages of CircleCI configuration that you may share across projects, enabling you to create encapsulated, parameterized commands, jobs, and executors that can be used across multiple projects.
|
|
6
|
+
# See: https://circleci.com/docs/2.0/orb-intro/
|
|
7
|
+
orbs:
|
|
8
|
+
ruby: circleci/ruby@0.1.2
|
|
9
|
+
|
|
10
|
+
# Define a job to be invoked later in a workflow.
|
|
11
|
+
# See: https://circleci.com/docs/2.0/configuration-reference/#jobs
|
|
2
12
|
jobs:
|
|
3
13
|
build:
|
|
4
14
|
docker:
|
|
5
|
-
- image: ruby:
|
|
15
|
+
- image: circleci/ruby:2.6.3-stretch-node
|
|
16
|
+
executor: ruby/default
|
|
6
17
|
steps:
|
|
7
18
|
- checkout
|
|
8
19
|
- run:
|
|
9
|
-
name:
|
|
10
|
-
command:
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
20
|
+
name: Which bundler?
|
|
21
|
+
command: bundle -v
|
|
22
|
+
- ruby/bundle-install
|
|
23
|
+
- run:
|
|
24
|
+
name: Run linter
|
|
25
|
+
command: bundle exec rubocop
|
|
26
|
+
- run:
|
|
27
|
+
name: Run rspec
|
|
28
|
+
command: bundle exec rspec
|
|
29
|
+
|
|
30
|
+
# Invoke jobs via workflows
|
|
31
|
+
# See: https://circleci.com/docs/2.0/configuration-reference/#workflows
|
|
32
|
+
workflows:
|
|
33
|
+
sample: # This is the name of the workflow, feel free to change it to better match your workflow.
|
|
34
|
+
# Inside the workflow, you define the jobs you want to run.
|
|
35
|
+
jobs:
|
|
36
|
+
- build
|
data/.rubocop.yml
CHANGED
data/Gemfile
CHANGED
data/lib/yamls/config.rb
CHANGED
data/lib/yamls/parameters.rb
CHANGED
data/lib/yamls/version.rb
CHANGED
data/lib/yamls/yaml_load.rb
CHANGED
data/yamls.gemspec
CHANGED
|
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
|
|
|
10
10
|
|
|
11
11
|
spec.summary = "Managed Strong Parameters with yaml file."
|
|
12
12
|
spec.homepage = "https://github.com/TsuMakoto/yamls"
|
|
13
|
-
spec.required_ruby_version = Gem::Requirement.new(">= 2.
|
|
13
|
+
spec.required_ruby_version = Gem::Requirement.new(">= 2.5")
|
|
14
14
|
|
|
15
15
|
spec.metadata["homepage_uri"] = spec.homepage
|
|
16
16
|
spec.metadata["source_code_uri"] = "https://github.com/TsuMakoto/yamls"
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: yamls
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- TsuMakoto
|
|
@@ -47,7 +47,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
47
47
|
requirements:
|
|
48
48
|
- - ">="
|
|
49
49
|
- !ruby/object:Gem::Version
|
|
50
|
-
version: 2.
|
|
50
|
+
version: '2.5'
|
|
51
51
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
52
52
|
requirements:
|
|
53
53
|
- - ">="
|