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 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
@@ -0,0 +1,10 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+ Gemfile.lock
10
+ /vendor/
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
@@ -0,0 +1,10 @@
1
+ require:
2
+ - rubocop-performance
3
+ - rubocop-rake
4
+ - rubocop-rspec
5
+ Layout/HashAlignment:
6
+ EnforcedHashRocketStyle: table
7
+ EnforcedColonStyle: table
8
+
9
+ AllCops:
10
+ NewCops: enable
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]
data/Gemfile ADDED
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ source 'https://rubygems.org'
4
+
5
+ # Specify your gem's dependencies in conjoiner.gemspec
6
+ gemspec
7
+
8
+ gem 'rake', '~> 12.0'