litterbox 0.1.5 → 0.2.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 +4 -4
- data/.codeclimate.yml +4 -0
- data/.travis.yml +11 -4
- data/Gemfile +2 -0
- data/Gemfile.lock +33 -0
- data/README.md +2 -0
- data/lib/litterbox/version.rb +1 -1
- metadata +6 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2d87b4e2ce1592021b806e895f6c217eda81ecba1450fee1e37b22ba1e1a70fa
|
|
4
|
+
data.tar.gz: 72cc9422b4b1380284afa5fc0b610be72d0570cc8bdc254c122035b336885d84
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2297afe184cb78e936e1a2367d380d18095df258c95443beda3d39c79d1c7486e1469258cff13404d199cfcbc7eab8154c6e7ad8f1992e80baf8ddc2ffb682de
|
|
7
|
+
data.tar.gz: a96af55cc724d5c181cd48af3561a8cfdc23ac9d206d9dfe149ebcfb1fd4b2a00b709bf288e6d45091517aba46c70fb23ecb3ade6f851294465ef3e19bcd8ff1
|
data/.codeclimate.yml
ADDED
data/.travis.yml
CHANGED
|
@@ -8,7 +8,14 @@ before_install:
|
|
|
8
8
|
- curl https://raw.githubusercontent.com/habitat-sh/habitat/master/components/hab/install.sh | sudo bash
|
|
9
9
|
- ./install_keys.sh
|
|
10
10
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
11
|
+
jobs:
|
|
12
|
+
include:
|
|
13
|
+
- stage: gem release
|
|
14
|
+
if: branch = master
|
|
15
|
+
rvm: 2.5.0
|
|
16
|
+
script: echo "Deploying to rubygems.org ..."
|
|
17
|
+
deploy:
|
|
18
|
+
provider: rubygems
|
|
19
|
+
gem: litterbox
|
|
20
|
+
api_key: $RUBYGEMS_API_KEY
|
|
21
|
+
on: master
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -9,7 +9,16 @@ GEM
|
|
|
9
9
|
specs:
|
|
10
10
|
ast (2.4.0)
|
|
11
11
|
coderay (1.1.2)
|
|
12
|
+
coveralls (0.7.1)
|
|
13
|
+
multi_json (~> 1.3)
|
|
14
|
+
rest-client
|
|
15
|
+
simplecov (>= 0.7)
|
|
16
|
+
term-ansicolor
|
|
17
|
+
thor
|
|
12
18
|
diff-lcs (1.3)
|
|
19
|
+
docile (1.3.0)
|
|
20
|
+
domain_name (0.5.20180417)
|
|
21
|
+
unf (>= 0.0.5, < 1.0.0)
|
|
13
22
|
ffi (1.9.23)
|
|
14
23
|
formatador (0.2.5)
|
|
15
24
|
guard (2.14.2)
|
|
@@ -24,13 +33,21 @@ GEM
|
|
|
24
33
|
guard-rake (1.0.0)
|
|
25
34
|
guard
|
|
26
35
|
rake
|
|
36
|
+
http-cookie (1.0.3)
|
|
37
|
+
domain_name (~> 0.5)
|
|
38
|
+
json (2.1.0)
|
|
27
39
|
listen (3.1.5)
|
|
28
40
|
rb-fsevent (~> 0.9, >= 0.9.4)
|
|
29
41
|
rb-inotify (~> 0.9, >= 0.9.7)
|
|
30
42
|
ruby_dep (~> 1.2)
|
|
31
43
|
lumberjack (1.0.12)
|
|
32
44
|
method_source (0.9.0)
|
|
45
|
+
mime-types (3.1)
|
|
46
|
+
mime-types-data (~> 3.2015)
|
|
47
|
+
mime-types-data (3.2016.0521)
|
|
48
|
+
multi_json (1.13.1)
|
|
33
49
|
nenv (0.3.0)
|
|
50
|
+
netrc (0.11.0)
|
|
34
51
|
notiffany (0.1.1)
|
|
35
52
|
nenv (~> 0.1)
|
|
36
53
|
shellany (~> 0.0)
|
|
@@ -46,6 +63,10 @@ GEM
|
|
|
46
63
|
rb-fsevent (0.10.2)
|
|
47
64
|
rb-inotify (0.9.10)
|
|
48
65
|
ffi (>= 0.5.0, < 2)
|
|
66
|
+
rest-client (2.0.2)
|
|
67
|
+
http-cookie (>= 1.0.2, < 2.0)
|
|
68
|
+
mime-types (>= 1.16, < 4.0)
|
|
69
|
+
netrc (~> 0.8)
|
|
49
70
|
rspec (3.7.0)
|
|
50
71
|
rspec-core (~> 3.7.0)
|
|
51
72
|
rspec-expectations (~> 3.7.0)
|
|
@@ -70,7 +91,18 @@ GEM
|
|
|
70
91
|
ruby_dep (1.5.0)
|
|
71
92
|
rubyzip (1.2.1)
|
|
72
93
|
shellany (0.0.1)
|
|
94
|
+
simplecov (0.16.1)
|
|
95
|
+
docile (~> 1.1)
|
|
96
|
+
json (>= 1.8, < 3)
|
|
97
|
+
simplecov-html (~> 0.10.0)
|
|
98
|
+
simplecov-html (0.10.2)
|
|
99
|
+
term-ansicolor (1.6.0)
|
|
100
|
+
tins (~> 1.0)
|
|
73
101
|
thor (0.20.0)
|
|
102
|
+
tins (1.16.3)
|
|
103
|
+
unf (0.1.4)
|
|
104
|
+
unf_ext
|
|
105
|
+
unf_ext (0.0.7.5)
|
|
74
106
|
unicode-display_width (1.3.0)
|
|
75
107
|
yard (0.9.12)
|
|
76
108
|
|
|
@@ -79,6 +111,7 @@ PLATFORMS
|
|
|
79
111
|
|
|
80
112
|
DEPENDENCIES
|
|
81
113
|
bundler (~> 1.16.1)
|
|
114
|
+
coveralls
|
|
82
115
|
guard (~> 2.14.2)
|
|
83
116
|
guard-rake (~> 1.0.0)
|
|
84
117
|
litterbox!
|
data/README.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
# Litterbox
|
|
2
2
|
|
|
3
3
|
[](https://travis-ci.org/skylerto/litterbox)
|
|
4
|
+
[](https://coveralls.io/github/skylerto/litterbox?branch=master)
|
|
5
|
+
[](https://codeclimate.com/github/skylerto/litterbox/maintainability)
|
|
4
6
|
|
|
5
7
|
Habitat bindings in Ruby!
|
|
6
8
|
|
data/lib/litterbox/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: litterbox
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- skylerto
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-05-
|
|
11
|
+
date: 2018-05-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -136,8 +136,8 @@ dependencies:
|
|
|
136
136
|
- - "~>"
|
|
137
137
|
- !ruby/object:Gem::Version
|
|
138
138
|
version: 0.20.0
|
|
139
|
-
description:
|
|
140
|
-
|
|
139
|
+
description: |2
|
|
140
|
+
Some of the bits around the edge of Habitat, that I wish were available natively.
|
|
141
141
|
email:
|
|
142
142
|
- skylerclayne@gmail.com
|
|
143
143
|
executables:
|
|
@@ -147,6 +147,7 @@ executables:
|
|
|
147
147
|
extensions: []
|
|
148
148
|
extra_rdoc_files: []
|
|
149
149
|
files:
|
|
150
|
+
- ".codeclimate.yml"
|
|
150
151
|
- ".github/ISSUE_TEMPLATE.md"
|
|
151
152
|
- ".github/PULL_REQUEST_TEMPLATE.md"
|
|
152
153
|
- ".gitignore"
|
|
@@ -220,7 +221,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
220
221
|
version: '0'
|
|
221
222
|
requirements: []
|
|
222
223
|
rubyforge_project:
|
|
223
|
-
rubygems_version: 2.7.
|
|
224
|
+
rubygems_version: 2.7.6
|
|
224
225
|
signing_key:
|
|
225
226
|
specification_version: 4
|
|
226
227
|
summary: Some of the bits around the edge of Habitat
|