to_simple_yaml 1.0.0 → 1.0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a67ff8dffb254b4d21e6768287ebd5130c35bbbe29182895f2a5661fe398aad5
4
- data.tar.gz: 6ceb3aeb2a1126cdd56c6985e02bb90c7ad6d07d12b35eab9a0a1b8db86ec35f
3
+ metadata.gz: ee0678c1d1cb6a188d0a001359b7fd44207c780e2ad52151d548df4611c26095
4
+ data.tar.gz: aff7efc550145a256526365c94ec08b4f45453f9a70f9a08e09a583a77b543f1
5
5
  SHA512:
6
- metadata.gz: 26cf40a6980ef39d117e0f76c9b886e7825a14710ba89a13cebfd3136054a32e03b56a55a1d0a8a1a8b03e75c40e96509f9ee391e214274a112c4329236bad17
7
- data.tar.gz: 936fce28ebe2e34d343fd9dde5aeee8aa3233c4355e8b7a2a6a5c4083a46d1b29b77edc742513292b137a82bea5c89e12171b8c2fab963252c1cd90eaa34f6bc
6
+ metadata.gz: 07ae65afaa2be501aeba361646e0e8040ec998eecf18fa0149f9eb77d330b116eb52b6752dc2a1b9e94055b5cbd0b357938ce41ae1c386d224964edb9e043db3
7
+ data.tar.gz: 438b79738ed5604bf352f1f34d855f96b11691339e21e95b2392cb449e7ea22e6f20c55ad92da91e06eb0493de148dda23ce1b62fc177dc5b5f908e8bc82cfef
@@ -0,0 +1,33 @@
1
+ name: Ruby Gem
2
+
3
+ on:
4
+ pull_request:
5
+ branches:
6
+ - master
7
+ push:
8
+ branches:
9
+ - master
10
+
11
+ jobs:
12
+ build:
13
+ name: Build + Publish
14
+ runs-on: ubuntu-latest
15
+
16
+ steps:
17
+ - uses: actions/checkout@master
18
+ - name: Set up Ruby 2.6
19
+ uses: actions/setup-ruby@v1
20
+ with:
21
+ version: 2.6.x
22
+ - run: rake test
23
+
24
+ - name: Publish to RubyGems
25
+ run: |
26
+ mkdir -p $HOME/.gem
27
+ touch $HOME/.gem/credentials
28
+ chmod 0600 $HOME/.gem/credentials
29
+ printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
30
+ gem build *.gemspec
31
+ gem push *.gem
32
+ env:
33
+ GEM_HOST_API_KEY: ${{secrets.RUBYGEMS_AUTH_TOKEN}}
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- to_simple_yaml (0.1.0)
4
+ to_simple_yaml (1.0.0)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -1,8 +1,6 @@
1
1
  # ToSimpleYaml
2
2
 
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/to_simple_yaml`. To experiment with that code, run `bin/console` for an interactive prompt.
4
-
5
- TODO: Delete this and the text above, and describe your gem
3
+ Simpler output than to_yaml
6
4
 
7
5
  ## Installation
8
6
 
@@ -23,6 +21,7 @@ Or install it yourself as:
23
21
  ## Usage
24
22
  Can use method to to_simple_yaml in Hash,Struct and Array class.
25
23
  ```ruby
24
+ require 'to_simple_yaml'
26
25
  hash.to_simple_yaml
27
26
  ```
28
27
 
@@ -1,3 +1,3 @@
1
1
  module ToSimpleYaml
2
- VERSION = "1.0.0"
2
+ VERSION = "1.0.1"
3
3
  end
@@ -13,6 +13,8 @@ Gem::Specification.new do |spec|
13
13
  spec.description = "simpler output than to_yaml"
14
14
  spec.homepage = "https://github.com/tanmen/to_simple_yaml"
15
15
 
16
+ spec.license = "MIT"
17
+
16
18
  # Specify which files should be added to the gem when it is released.
17
19
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
18
20
  spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: to_simple_yaml
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - tanmen
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-11-05 00:00:00.000000000 Z
11
+ date: 2019-11-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -59,6 +59,7 @@ executables: []
59
59
  extensions: []
60
60
  extra_rdoc_files: []
61
61
  files:
62
+ - ".github/workflows/gempush.yml"
62
63
  - ".gitignore"
63
64
  - ".idea/.gitignore"
64
65
  - ".idea/.rakeTasks"
@@ -78,7 +79,8 @@ files:
78
79
  - lib/to_simple_yaml/version.rb
79
80
  - to_simple_yaml.gemspec
80
81
  homepage: https://github.com/tanmen/to_simple_yaml
81
- licenses: []
82
+ licenses:
83
+ - MIT
82
84
  metadata: {}
83
85
  post_install_message:
84
86
  rdoc_options: []