pigeon-http 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: 2deb0f4d2617bd6cf6ddea9b246ae387ce73b22d78fc24f1e28214bd9b13d585
4
+ data.tar.gz: a7414236e1b13b9010ac24acb770a75ba93c2461e8c6d31e020f4e005db85ea2
5
+ SHA512:
6
+ metadata.gz: 28daabe5a3cbe2bf2e438c015225d97593123777b6e489bec0929f2a895948d393ba98f1cc7791620bb050c6fd9378b9bd52a9c06456d09f10244b3ad822562d
7
+ data.tar.gz: 94ad058fa894c1df58496c4afe4beb1147f7a0868cdcc10b8abba527552d29143c06c4bc1a654ab41a9b44c61495fda0e20c8e106601b4cd5a36c2e565f02a98
@@ -0,0 +1,13 @@
1
+ version: 2.1
2
+ jobs:
3
+ build:
4
+ docker:
5
+ - image: ruby:2.6.3
6
+ steps:
7
+ - checkout
8
+ - run:
9
+ name: Run the default task
10
+ command: |
11
+ gem install bundler -v 2.2.4
12
+ bundle install
13
+ bundle exec rake
data/.gitignore ADDED
@@ -0,0 +1,13 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+
10
+ # rspec failure tracking
11
+ .rspec_status
12
+
13
+ pigeon-http-*.gem
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper