easy_api 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/Gemfile.lock +1 -1
- data/README.md +2 -4
- data/easy_api.gemspec +2 -2
- data/lib/easy_api.rb +1 -1
- data/lib/easy_api/object.rb +1 -0
- metadata +3 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8796cb69b2fac857b68a1967154915842359f548
|
4
|
+
data.tar.gz: 15e996fd1e0437352cd053f4aef1f7467f49ab85
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b487103efdc0694eb0f4b3fba7bc07d1fcba2ff6e86bea170c3ae4fe6869049d05b5ff300dbb738c7098c9329642069890747b5f606b66e0bf9e080eb794af33
|
7
|
+
data.tar.gz: d33705a383103425d4b1d180ca17a63d45a38462d14fc2329420cf12265c163b17ff6270a1f62285cfd2b899af0705e89d7996079ca8c51032ba7864102f7d82
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -1,8 +1,6 @@
|
|
1
1
|
# EasyApi
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
TODO: Delete this and the text above, and describe your gem
|
3
|
+
EasyApi is a library to use to write easy API clients with.
|
6
4
|
|
7
5
|
## Installation
|
8
6
|
|
@@ -32,4 +30,4 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
32
30
|
|
33
31
|
## Contributing
|
34
32
|
|
35
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
33
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/StephanMeijer/easy_api.
|
data/easy_api.gemspec
CHANGED
@@ -6,10 +6,10 @@ require "easy_api"
|
|
6
6
|
Gem::Specification.new do |spec|
|
7
7
|
spec.name = "easy_api"
|
8
8
|
spec.version = EasyApi::VERSION
|
9
|
-
spec.authors = ["Stephan Meijer"
|
9
|
+
spec.authors = ["Stephan Meijer"]
|
10
10
|
spec.email = ["me@stephanmeijer.com"]
|
11
11
|
|
12
|
-
spec.summary = %q{
|
12
|
+
spec.summary = %q{Easy way to write API's}
|
13
13
|
|
14
14
|
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
15
15
|
f.match(%r{^(test|spec|features)/})
|
data/lib/easy_api.rb
CHANGED
data/lib/easy_api/object.rb
CHANGED
metadata
CHANGED
@@ -1,15 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: easy_api
|
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
|
- Stephan Meijer
|
8
|
-
- Fabian de Laender
|
9
8
|
autorequire:
|
10
9
|
bindir: exe
|
11
10
|
cert_chain: []
|
12
|
-
date: 2018-05-
|
11
|
+
date: 2018-05-08 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
14
|
name: bundler
|
@@ -93,5 +92,5 @@ rubyforge_project:
|
|
93
92
|
rubygems_version: 2.6.14
|
94
93
|
signing_key:
|
95
94
|
specification_version: 4
|
96
|
-
summary:
|
95
|
+
summary: Easy way to write API's
|
97
96
|
test_files: []
|