skynet-deploy 2.1.1 → 2.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/main.yml +33 -0
- data/.ruby-version +1 -1
- data/README.md +0 -2
- data/lib/skynet/version.rb +1 -1
- data/skynet.gemspec +1 -1
- metadata +6 -6
- data/.travis.yml +0 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ff493bffa5d7c3590b40c74e6cae36caad27a8b017dfb07bee0254af3c847310
|
4
|
+
data.tar.gz: c14d5ef7b3e64a4e5e1c8a436c4b591e3d2c406a68812f8201c2c0eba772cc1a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 243456cbee9bcea1ddc0c63261239e3e1a3363dbd8dc0bf2eedaab7c47374ae991ac2ef5ccc170215c852e814d78ac75d9a72576285f1280995ef8741557a348
|
7
|
+
data.tar.gz: d537f5985b6f87d9520d7fda8a7b6f80a42b7f0e809927c034678798eb8964cc0d1cc70ca046a690e56d44103819c3da439739bd1a0b495bf3e1daf8d8393cee
|
@@ -0,0 +1,33 @@
|
|
1
|
+
name: Ruby
|
2
|
+
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
branches:
|
6
|
+
- main
|
7
|
+
- master
|
8
|
+
pull_request:
|
9
|
+
branches:
|
10
|
+
- main
|
11
|
+
- master
|
12
|
+
|
13
|
+
jobs:
|
14
|
+
build:
|
15
|
+
runs-on: ubuntu-latest
|
16
|
+
|
17
|
+
strategy:
|
18
|
+
matrix:
|
19
|
+
ruby:
|
20
|
+
- 3.0.7
|
21
|
+
- 3.1.5
|
22
|
+
- 3.2.4
|
23
|
+
- 3.3.1
|
24
|
+
|
25
|
+
steps:
|
26
|
+
- uses: actions/checkout@v4
|
27
|
+
- name: Set up Ruby
|
28
|
+
uses: ruby/setup-ruby@v1
|
29
|
+
with:
|
30
|
+
ruby-version: ${{ matrix.ruby }}
|
31
|
+
bundler-cache: true
|
32
|
+
- name: Run rspec tests
|
33
|
+
run: bundle exec rake spec
|
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.
|
1
|
+
3.3.1
|
data/README.md
CHANGED
@@ -1,8 +1,6 @@
|
|
1
1
|
Skynet
|
2
2
|
======
|
3
3
|
|
4
|
-
[![Build Status](https://travis-ci.com/rahearn/skynet.svg?branch=master)](https://travis-ci.com/rahearn/skynet)
|
5
|
-
|
6
4
|
GitHub-aware website builder
|
7
5
|
|
8
6
|
Skynet builds and deploys web sites on your VPS or bare metal server. It is triggered by the post-receive hook.
|
data/lib/skynet/version.rb
CHANGED
data/skynet.gemspec
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: skynet-deploy
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.1.
|
4
|
+
version: 2.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ryan Ahearn
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-05-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: sinatra
|
@@ -156,14 +156,14 @@ dependencies:
|
|
156
156
|
requirements:
|
157
157
|
- - "~>"
|
158
158
|
- !ruby/object:Gem::Version
|
159
|
-
version: '
|
159
|
+
version: '6.0'
|
160
160
|
type: :development
|
161
161
|
prerelease: false
|
162
162
|
version_requirements: !ruby/object:Gem::Requirement
|
163
163
|
requirements:
|
164
164
|
- - "~>"
|
165
165
|
- !ruby/object:Gem::Version
|
166
|
-
version: '
|
166
|
+
version: '6.0'
|
167
167
|
description: Sinatra app that listens for GitHub post-receive callbacks and deploys
|
168
168
|
your code
|
169
169
|
email:
|
@@ -173,10 +173,10 @@ executables:
|
|
173
173
|
extensions: []
|
174
174
|
extra_rdoc_files: []
|
175
175
|
files:
|
176
|
+
- ".github/workflows/main.yml"
|
176
177
|
- ".gitignore"
|
177
178
|
- ".rspec"
|
178
179
|
- ".ruby-version"
|
179
|
-
- ".travis.yml"
|
180
180
|
- Gemfile
|
181
181
|
- README.md
|
182
182
|
- Rakefile
|
@@ -216,7 +216,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
216
216
|
- !ruby/object:Gem::Version
|
217
217
|
version: '0'
|
218
218
|
requirements: []
|
219
|
-
rubygems_version: 3.
|
219
|
+
rubygems_version: 3.5.9
|
220
220
|
signing_key:
|
221
221
|
specification_version: 4
|
222
222
|
summary: Sinatra app that listens for GitHub post-receive callbacks and deploys your
|