conjoiner 0.1.0
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 +7 -0
- data/.gitignore +10 -0
- data/.gitlab-ci.yml +27 -0
- data/.rubocop.yml +10 -0
- data/.ruby-version +1 -0
- data/CHANGELOG.md +7 -0
- data/Gemfile +8 -0
- data/LICENSE +661 -0
- data/README.md +87 -0
- data/Rakefile +26 -0
- data/bin/console +9 -0
- data/bin/setup +9 -0
- data/ca.andrewsullivancant.conjoiner.plist +23 -0
- data/conjoiner.gemspec +47 -0
- data/conjoiner.service +9 -0
- data/cucumber.yml +1 -0
- data/exe/conjoiner +7 -0
- data/lib/conjoiner/cli.rb +265 -0
- data/lib/conjoiner/version.rb +5 -0
- data/lib/conjoiner.rb +10 -0
- metadata +263 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: c299bb2f3d58db4461105f5965c0c89a7031aa9e4006c33f9817da87266e6792
|
4
|
+
data.tar.gz: b1d3e72ec85b62a934e8f0e12cc9badf3108e09bd1add9b2cef4420404b22bb6
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 391e4618be7fa6aac2c90fea430e6c1ceb1fb98b7f4f6989e026ea59b99c49a309da96fba515ccb9fd5d53eafd72fa268dbf382ac75e1bae05fcb33b2b0503b1
|
7
|
+
data.tar.gz: dba77655da367f54f5ab15f5d9164c4ded2ffdf771a3be6a10d71c41f0427dcf7b36609d86935e3afa4fcb08e49405b73c4577b4d09453e783b3829ec768d089
|
data/.gitignore
ADDED
data/.gitlab-ci.yml
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
image: ruby:2.5
|
2
|
+
|
3
|
+
cache:
|
4
|
+
paths:
|
5
|
+
- vendor/bundle
|
6
|
+
|
7
|
+
before_script:
|
8
|
+
- bundle install --path vendor
|
9
|
+
|
10
|
+
stages:
|
11
|
+
- test
|
12
|
+
|
13
|
+
rspec:
|
14
|
+
stage: test
|
15
|
+
script:
|
16
|
+
- bundle exec rspec
|
17
|
+
|
18
|
+
rubocop:
|
19
|
+
stage: test
|
20
|
+
script:
|
21
|
+
- bundle exec rubocop
|
22
|
+
|
23
|
+
bundle-audit:
|
24
|
+
stage: test
|
25
|
+
script:
|
26
|
+
- bundle exec bundle-audit update
|
27
|
+
- bundle exec bundle-audit check
|
data/.rubocop.yml
ADDED
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
2.5.9
|
data/CHANGELOG.md
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
# Change Log
|
2
|
+
All notable changes to this project will be documented in this file.
|
3
|
+
|
4
|
+
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
5
|
+
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
6
|
+
|
7
|
+
## [Unreleased]
|