spoolprint 1.0.0 → 1.6.0

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: a2f4545b0e4027268e5bbea35a3035fc2fc2ccdb62ec0965cd6b2b876be28824
4
- data.tar.gz: 2948b28e7b18a59d0ad34dcaa435c570f340b1122e69aba1e392409501f28da6
3
+ metadata.gz: ef8edae8dd03d0e7a3acfab6279613142468ebeeaa6b77b67af351cbbc2337ff
4
+ data.tar.gz: 7082bef9ff227251b52b7986c049cfbfc96c2afe86c58531522589ffb8473964
5
5
  SHA512:
6
- metadata.gz: e18186ec2decc3ab8403ad882c275dda627c527c5ca3af819ee9bea8186101ad9ca67aa57f2f4e1b9c19d704700fb68a138faba0fbfc0767d143cd9cfb194517
7
- data.tar.gz: 93316b19d646dd32b6bbd2a5d36b97377367a989d96a9483f7feefae75c04e577dca158c6c063db3daed7bd7c88a7af9e659ef9e01dc050aaaed71e7877c118d
6
+ metadata.gz: a24795c065a4a690a718d1f36f25bfb7aaad27975c4dce9cab3b67ef9a36ca93b42ebf898fbd75ff70c8de2b74b2183ca0d96072546e2b5702af5bcdf309b707
7
+ data.tar.gz: 262f087e875f7ce4d943e751aca8f8423b55fbb2485e80d940023a4c1194573bee1f6cdf4b496a90319a0701b07ab1732d9d0fb9929d4967df91effa1d83bf20
@@ -12,7 +12,7 @@ jobs:
12
12
  packages: write
13
13
 
14
14
  steps:
15
- - uses: actions/checkout@v2
15
+ - uses: actions/checkout@v3
16
16
  - name: Set up Ruby 2.6
17
17
  uses: actions/setup-ruby@v1
18
18
  with:
@@ -20,6 +20,9 @@ jobs:
20
20
 
21
21
  - name: Publish to RubyGems
22
22
  run: |
23
+ latest=$(git describe --tags)
24
+ echo checking out ${latest}
25
+ git checkout ${latest}
23
26
  mkdir -p $HOME/.gem
24
27
  touch $HOME/.gem/credentials
25
28
  chmod 0600 $HOME/.gem/credentials
data/.travis.yml ADDED
@@ -0,0 +1,10 @@
1
+ language: ruby
2
+
3
+ script: rake halo
4
+ deploy:
5
+ provider: releases
6
+ token: ${token}
7
+ file: "in.dist"
8
+ skip_cleanup: true
9
+ on:
10
+ tags: true
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2022 Reckordp
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/Rakefile CHANGED
@@ -4,5 +4,9 @@ Rake::TestTask.new do |t|
4
4
  t.libs << 'test'
5
5
  end
6
6
 
7
+ task :halo do
8
+ sh "echo a > in.dist"
9
+ end
10
+
7
11
  desc "Run tests"
8
12
  task default: :test
@@ -1,3 +1,3 @@
1
1
  module Spoolprint
2
- VERSION = "1.0.0"
2
+ VERSION = "1.6.0"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: spoolprint
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Reckordp
@@ -32,6 +32,8 @@ extensions:
32
32
  extra_rdoc_files: []
33
33
  files:
34
34
  - ".github/workflows/.rubygems.yml"
35
+ - ".travis.yml"
36
+ - LICENSE
35
37
  - Rakefile
36
38
  - ext/native/extconf.rb
37
39
  - ext/native/server.c