-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Matthew Newell <[email protected]>
- Loading branch information
Showing
29 changed files
with
2,821 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,8 +11,25 @@ jobs: | |
uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: 2.7.2 | ||
- name: Run the default task | ||
- name: Run unit tests and code linting | ||
run: | | ||
gem install bundler -v 2.2.9 | ||
bundle install | ||
bundle exec rake | ||
bundle exec yard | ||
- name: Deploy documentation | ||
if: github.ref == 'refs/heads/main' | ||
uses: crazy-max/[email protected] | ||
with: | ||
target_branch: gh-pages | ||
build_dir: doc | ||
env: | ||
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | ||
|
||
- name: Release Gem | ||
if: contains(github.ref, 'refs/tags/v') | ||
uses: dawidd6/[email protected] | ||
with: | ||
github_token: ${{secrets.GITHUB_TOKEN}} | ||
api_key: ${{secrets.RUBYGEMS_API_KEY}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
PATH | ||
remote: . | ||
specs: | ||
remotus (0.1.0) | ||
connection_pool (~> 2.2) | ||
net-scp (~> 3.0) | ||
net-ssh (~> 6.1) | ||
winrm (~> 2.3) | ||
winrm-fs (~> 1.3) | ||
|
||
GEM | ||
remote: https://rubygems.org/ | ||
specs: | ||
ast (2.4.2) | ||
builder (3.2.4) | ||
connection_pool (2.2.3) | ||
diff-lcs (1.4.4) | ||
erubi (1.10.0) | ||
ffi (1.15.0) | ||
gssapi (1.3.1) | ||
ffi (>= 1.0.1) | ||
gyoku (1.3.1) | ||
builder (>= 2.1.2) | ||
httpclient (2.8.3) | ||
little-plugger (1.1.4) | ||
logging (2.3.0) | ||
little-plugger (~> 1.1) | ||
multi_json (~> 1.14) | ||
multi_json (1.15.0) | ||
net-scp (3.0.0) | ||
net-ssh (>= 2.6.5, < 7.0.0) | ||
net-ssh (6.1.0) | ||
nori (2.6.0) | ||
parallel (1.20.1) | ||
parser (3.0.0.0) | ||
ast (~> 2.4.1) | ||
rainbow (3.0.0) | ||
rake (13.0.3) | ||
regexp_parser (2.1.1) | ||
rexml (3.2.4) | ||
rspec (3.10.0) | ||
rspec-core (~> 3.10.0) | ||
rspec-expectations (~> 3.10.0) | ||
rspec-mocks (~> 3.10.0) | ||
rspec-core (3.10.1) | ||
rspec-support (~> 3.10.0) | ||
rspec-expectations (3.10.1) | ||
diff-lcs (>= 1.2.0, < 2.0) | ||
rspec-support (~> 3.10.0) | ||
rspec-mocks (3.10.2) | ||
diff-lcs (>= 1.2.0, < 2.0) | ||
rspec-support (~> 3.10.0) | ||
rspec-support (3.10.2) | ||
rubocop (1.11.0) | ||
parallel (~> 1.10) | ||
parser (>= 3.0.0.0) | ||
rainbow (>= 2.2.2, < 4.0) | ||
regexp_parser (>= 1.8, < 3.0) | ||
rexml | ||
rubocop-ast (>= 1.2.0, < 2.0) | ||
ruby-progressbar (~> 1.7) | ||
unicode-display_width (>= 1.4.0, < 3.0) | ||
rubocop-ast (1.4.1) | ||
parser (>= 2.7.1.5) | ||
rubocop-rake (0.5.1) | ||
rubocop | ||
rubocop-rspec (2.2.0) | ||
rubocop (~> 1.0) | ||
rubocop-ast (>= 1.1.0) | ||
ruby-progressbar (1.11.0) | ||
rubyntlm (0.6.3) | ||
rubyzip (2.3.0) | ||
unicode-display_width (2.0.0) | ||
winrm (2.3.6) | ||
builder (>= 2.1.2) | ||
erubi (~> 1.8) | ||
gssapi (~> 1.2) | ||
gyoku (~> 1.0) | ||
httpclient (~> 2.2, >= 2.2.0.2) | ||
logging (>= 1.6.1, < 3.0) | ||
nori (~> 2.0) | ||
rubyntlm (~> 0.6.0, >= 0.6.3) | ||
winrm-fs (1.3.5) | ||
erubi (~> 1.8) | ||
logging (>= 1.6.1, < 3.0) | ||
rubyzip (~> 2.0) | ||
winrm (~> 2.0) | ||
yard (0.9.26) | ||
|
||
PLATFORMS | ||
x86_64-linux | ||
|
||
DEPENDENCIES | ||
rake (~> 13.0) | ||
remotus! | ||
rspec (~> 3.0) | ||
rubocop (~> 1.7) | ||
rubocop-rake (~> 0.5) | ||
rubocop-rspec (~> 2.2) | ||
yard (~> 0.9) | ||
|
||
BUNDLED WITH | ||
2.2.9 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.