cexpect 0.1.3 → 0.1.4

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: 71a03d41938ba2bc030d57d1f9e001d3d46f83883229a403970d3c71944db525
4
- data.tar.gz: 78821e42067945ed38b4074cacaa35d21d0709c1b81039f2e4c51e8962618be7
3
+ metadata.gz: edad159cd5db7b5838ff5f483242b93b0bdd20062e8d7b51c9f500a19e25b535
4
+ data.tar.gz: eac146a9da3b515f422aa0b1dee779362b802649f0cedfff5fa703a4e03ee2a6
5
5
  SHA512:
6
- metadata.gz: 5cd81fe419c51c3cc31cf5fe7eddb143502bcc156ab69dbd299196e2aac9b3c3b5c5d2fc05af169ee4fce94cb5007ab33a4538f01435de1e3a7979ccb2319893
7
- data.tar.gz: a142379f43421f2b99e3fbe8d524ce2ce7b8fc7f69a81592b43c1b5fe9ce7489b0cf78c43deb44a5afd8dee5779fcea0b33b395f8c4e286224c397ef928123d0
6
+ metadata.gz: 791c836396b9b0228dc79bd91f1f9467bd0846d344ae89d034ca87b910151307153da309239a0b17ee58deece2ad086bfa5b7b071c035c2105139ec172fa2bae
7
+ data.tar.gz: 5413b0e772416590c42436b2783aea05cbc2af41f20a35d8c0d4225b814c60c3a92cc173b5c1d51d42ecd324c0492f7204752f1b89648491574fc841d6f1c6d8
@@ -0,0 +1,33 @@
1
+ # This workflow uses actions that are not certified by GitHub.
2
+ # They are provided by a third-party and are governed by
3
+ # separate terms of service, privacy policy, and support
4
+ # documentation.
5
+ # This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
6
+ # For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
7
+
8
+ name: Ruby
9
+
10
+ on:
11
+ push:
12
+ branches: [ master ]
13
+ pull_request:
14
+ branches: [ master ]
15
+
16
+ jobs:
17
+ test:
18
+
19
+ runs-on: ubuntu-latest
20
+
21
+ steps:
22
+ - uses: actions/checkout@v2
23
+ - name: Set up Ruby
24
+ # To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
25
+ # change this to (see https://github.com/ruby/setup-ruby#versioning):
26
+ # uses: ruby/setup-ruby@v1
27
+ uses: ruby/setup-ruby@ec106b438a1ff6ff109590de34ddc62c540232e0
28
+ with:
29
+ ruby-version: 2.6
30
+ - name: Install dependencies
31
+ run: bundle install
32
+ - name: Run tests
33
+ run: bundle exec rake
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- cexpect (0.1.2)
4
+ cexpect (0.1.3)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -4,7 +4,7 @@ require_relative 'lib/cexpect/version'
4
4
 
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = 'cexpect'
7
- spec.version = Cexpect::VERSION
7
+ spec.version = CExpect::VERSION
8
8
  spec.authors = ['Christer Jansson']
9
9
  spec.email = ['christer@janssons.org']
10
10
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- module Cexpect
4
- VERSION = '0.1.3'
3
+ module CExpect
4
+ VERSION = '0.1.4'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cexpect
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Christer Jansson
@@ -17,6 +17,7 @@ executables: []
17
17
  extensions: []
18
18
  extra_rdoc_files: []
19
19
  files:
20
+ - ".github/workflows/ruby.yml"
20
21
  - ".gitignore"
21
22
  - ".rspec"
22
23
  - ".rubocop.yml"