takeout 0.1.0 → 0.1.1
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/README.md +1 -1
- data/lib/takeout/version.rb +1 -1
- data/takeout.gemspec +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1e8981158e8e5dafbab52af5d934153c69dbf3ee
|
|
4
|
+
data.tar.gz: 5a06c10a7867c3671a476612b5b5933d30a51e8a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 877c0d6f415c7b6f338c65334169da8d1730b8881fb851edc01dcecf0426d8f1a32ee456d8873292c8036058ee6feb65225edb40f9304d723d83b729ac453af9
|
|
7
|
+
data.tar.gz: 73bed704d4271d3c1c20e4b65b0dfcdb2cf49f20710464095f10656b0ee31098e22f6ee932767a0c728b94940e5e52f9d07e6edc4531e50c600d131c66f71b07
|
data/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Takeout
|
|
2
|
-
[](https://codeclimate.com/github/kylegrantlucas/takeout) [](https://codeclimate.com/github/kylegrantlucas/takeout/coverage) [](https://circleci.com/gh/kylegrantlucas/takeout/tree/master) [](http://inch-ci.org/github/kylegrantlucas/takeout)
|
|
2
|
+
[](http://badge.fury.io/rb/takeout) [](https://codeclimate.com/github/kylegrantlucas/takeout) [](https://codeclimate.com/github/kylegrantlucas/takeout/coverage) [](https://circleci.com/gh/kylegrantlucas/takeout/tree/master) [](http://inch-ci.org/github/kylegrantlucas/takeout)
|
|
3
3
|
|
|
4
4
|
A powerful little tool for generating on-the-fly API clients.
|
|
5
5
|
|
data/lib/takeout/version.rb
CHANGED
data/takeout.gemspec
CHANGED
|
@@ -8,9 +8,9 @@ Gem::Specification.new do |spec|
|
|
|
8
8
|
spec.version = Takeout::VERSION
|
|
9
9
|
spec.authors = ["Kyle Lucas"]
|
|
10
10
|
spec.email = ["kglucas93@gmail.com"]
|
|
11
|
-
spec.summary = %q{A
|
|
11
|
+
spec.summary = %q{A powerful little tool for generating on-the-fly API clients.}
|
|
12
12
|
spec.description = %q{}
|
|
13
|
-
spec.homepage = ""
|
|
13
|
+
spec.homepage = "http://github.com/kyelgrantlucas/takeout"
|
|
14
14
|
spec.license = "MIT"
|
|
15
15
|
spec.required_ruby_version = '>= 1.8.0'
|
|
16
16
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: takeout
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kyle Lucas
|
|
@@ -248,7 +248,7 @@ files:
|
|
|
248
248
|
- spec/support/fixtures/post.json
|
|
249
249
|
- spec/support/fixtures/posts.json
|
|
250
250
|
- takeout.gemspec
|
|
251
|
-
homepage:
|
|
251
|
+
homepage: http://github.com/kyelgrantlucas/takeout
|
|
252
252
|
licenses:
|
|
253
253
|
- MIT
|
|
254
254
|
metadata: {}
|
|
@@ -271,7 +271,7 @@ rubyforge_project:
|
|
|
271
271
|
rubygems_version: 2.2.2
|
|
272
272
|
signing_key:
|
|
273
273
|
specification_version: 4
|
|
274
|
-
summary: A
|
|
274
|
+
summary: A powerful little tool for generating on-the-fly API clients.
|
|
275
275
|
test_files:
|
|
276
276
|
- spec/.DS_Store
|
|
277
277
|
- spec/client_spec.rb
|