termichunk 0.0.3 → 0.0.4

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
- SHA1:
3
- metadata.gz: 04a462cfdc6e469fd7b95ea3f5930f1a29eaf479
4
- data.tar.gz: b49068d921d284e333d05a67c74dda9d16e52363
2
+ SHA256:
3
+ metadata.gz: '09fa41b76c00e8753b21fca368315e47fdc70993a1a86991a598ac26cf3eddb4'
4
+ data.tar.gz: 501a42c961ca0f031d18470d2f51bb1a4e8bb7845d858d10cefeecc2684bba81
5
5
  SHA512:
6
- metadata.gz: 36803d0cce0029741c99e917d1799aec0b351db929933b3e1ab5b8fcd0e1bfa5fd5048319c5733cfcc5ab050d1a67e7d2707f0923aefbcab3cf6e9c4bb25d231
7
- data.tar.gz: ec822cd86b4d82bd184a158effa2130202ae863f458506cc1a663e2961095daf18df4640693687dac0c298af9a60eed097c7731166f637fca9a705d4b502ad16
6
+ metadata.gz: b8982ac30dcd0ca806b473b975709249c5e4ead4797f2253320acf53b62ec74c5a43ab5dc9d754e9268473664dabf9fb034edc2b815aea502a7d1792a3074b66
7
+ data.tar.gz: f0ca7eff4973b6aa00ea208308e83007e2d6696053cfd0b711db181a5226c84b062e0c1cc45cac3a5867caf116e99d38d6ecbb2ee3be6ee4a4ee483a8fab1785
@@ -0,0 +1,31 @@
1
+ name: Ruby Gem
2
+
3
+ on:
4
+ release:
5
+ types: [published]
6
+
7
+ jobs:
8
+ build:
9
+ name: Build + Publish
10
+ runs-on: ubuntu-latest
11
+ permissions:
12
+ contents: read
13
+ packages: write
14
+
15
+ steps:
16
+ - uses: actions/checkout@v2
17
+ - name: Set up Ruby 2.6
18
+ uses: actions/setup-ruby@v1
19
+ with:
20
+ ruby-version: 2.6.x
21
+
22
+ - name: Publish to RubyGems
23
+ run: |
24
+ mkdir -p $HOME/.gem
25
+ touch $HOME/.gem/credentials
26
+ chmod 0600 $HOME/.gem/credentials
27
+ printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
28
+ gem build *.gemspec
29
+ gem push *.gem
30
+ env:
31
+ GEM_HOST_API_KEY: "${{secrets.RUBYGEMS_AUTH_TOKEN}}"
@@ -17,6 +17,9 @@ jobs:
17
17
  test:
18
18
 
19
19
  runs-on: ubuntu-latest
20
+ strategy:
21
+ matrix:
22
+ ruby-version: ['2.6', '2.7', '3.0']
20
23
 
21
24
  steps:
22
25
  - uses: actions/checkout@v2
@@ -24,10 +27,9 @@ jobs:
24
27
  # To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
25
28
  # change this to (see https://github.com/ruby/setup-ruby#versioning):
26
29
  # uses: ruby/setup-ruby@v1
27
- uses: ruby/setup-ruby@ec106b438a1ff6ff109590de34ddc62c540232e0
30
+ uses: ruby/setup-ruby@473e4d8fe5dd94ee328fdfca9f8c9c7afc9dae5e
28
31
  with:
29
- ruby-version: 2.6
30
- - name: Install dependencies
31
- run: bundle install
32
+ ruby-version: ${{ matrix.ruby-version }}
33
+ bundler-cache: true # runs 'bundle install' and caches installed gems automatically
32
34
  - name: Run tests
33
35
  run: bundle exec rspec
data/.travis.yml CHANGED
@@ -3,14 +3,7 @@ rvm:
3
3
  - 2.4
4
4
  - 2.5
5
5
  - 2.6
6
+ - 2.7
7
+ - 3.0
6
8
  script:
7
9
  - bundle exec rspec
8
- deploy:
9
- provider: rubygems
10
- api_key:
11
- secure: jUWa2Jx0HRVv7Dl0zYPTskHQ+RJGy2TUcBWOjyFbBUbeDKiRh8J/NnbMuCOvmL94htSaFk5lcs6k74Itu6jW12+KyT98OAnOardFPFuI0cHHhIMEhF6ms8EhyOCZ0vvR9zav11gfNzyF716qO09DQSDuoKWWNdhrYj8a5paLdbHuRqQiw3YUmnjVQ/v9SPYaZ7ziXC4X4tBxQhK2ujNsNfztSVrpYb6pnsXnt+hFQOnskzi0+er4854iymykeyNVgB71KgivrE3T55ZTXPPglshsZQE7M7FlYA5L3bwzR7SlA202yFYHB3hUN3obwO3BjO4OiAdKQnSosBHaXI13ZvCOz02AfEJhwoxkBXw1/2CvSQ12QQPVgqkpxWY03h+URk+gGHCV+JaqZPCV9excmVWg/IOQou0IJ6h84VFViyVc2aFVN2AIdoaG3NsppbV3j4VuLG6J2VVpNmUzN3pGgi5YSjVq9Hp+huXZFfWpnUgAxc680hKgcFajE3JNANG+NbNEeoDmITvZyV5kvJklgUKPsl2wNk+wY/GGrSBgNOVlyXqTWLZb/8Z/cSrN5DEc6D5BIS/SG95wlCRT8jUqbyEPjT+H77TH2ySfwWZzblLqbIxaLiZr3hX16oMdUx7Cya5LKLFgQBpU6cFUxvZX7SqHwjk1vnuG592Kxd9GkX4=
12
- gem: termichunk
13
- on:
14
- tags: true
15
- repo: kevinstuffandthings/termichunk
16
- skip_cleanup: 'true'
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # TermiChunk [![Build Status](https://travis-ci.com/kevinstuffandthings/termichunk.svg?branch=master)](https://travis-ci.com/kevinstuffandthings/termichunk) [![Gem Version](https://badge.fury.io/rb/termichunk.svg)](https://badge.fury.io/rb/termichunk)
1
+ # TermiChunk ![Build Status](https://github.com/kevinstuffandthings/termichunk/actions/workflows/ruby.yml/badge.svg) [![Gem Version](https://badge.fury.io/rb/termichunk.svg)](https://badge.fury.io/rb/termichunk)
2
2
 
3
3
  Take large chunks of text that might otherwise run together, and organize them neatly within your terminal output.
4
4
 
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module TermiChunk
3
- VERSION = "0.0.3"
3
+ VERSION = "0.0.4"
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: termichunk
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kevin McDonald
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-08-16 00:00:00.000000000 Z
11
+ date: 2021-07-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -117,6 +117,7 @@ extra_rdoc_files: []
117
117
  files:
118
118
  - ".github/ISSUE_TEMPLATE/bug_report.md"
119
119
  - ".github/ISSUE_TEMPLATE/feature_request.md"
120
+ - ".github/workflows/gem-push.yml"
120
121
  - ".github/workflows/ruby.yml"
121
122
  - ".gitignore"
122
123
  - ".rspec"
@@ -137,7 +138,7 @@ homepage: https://github.com/kevinstuffandthings/termichunk
137
138
  licenses:
138
139
  - MIT
139
140
  metadata: {}
140
- post_install_message:
141
+ post_install_message:
141
142
  rdoc_options: []
142
143
  require_paths:
143
144
  - lib
@@ -152,9 +153,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
152
153
  - !ruby/object:Gem::Version
153
154
  version: '0'
154
155
  requirements: []
155
- rubyforge_project:
156
- rubygems_version: 2.6.14
157
- signing_key:
156
+ rubygems_version: 3.0.3.1
157
+ signing_key:
158
158
  specification_version: 4
159
159
  summary: Organize chunks of text within terminals
160
160
  test_files: