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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a77991b8fb3d4eb69920a343be97d8f51da4a052
4
- data.tar.gz: f8a381ed79fbe0ca4548921d6a1564462af42d47
3
+ metadata.gz: 8796cb69b2fac857b68a1967154915842359f548
4
+ data.tar.gz: 15e996fd1e0437352cd053f4aef1f7467f49ab85
5
5
  SHA512:
6
- metadata.gz: fd7f9965b417a7327594b6a87f97e9e2e6f71ecabd33f7e432baaa74d28ff2148326b64ba685c100088fb8001be4a4cd96a7d138608dc9d7704ef167fab0fb17
7
- data.tar.gz: 1bd175d0d4b05843350edcc469c98eddf3f04df835327b1bee72f4d531f129100c263aff3d631384e5e073e842f467d8a6303c4d590f67631a2b84b90b96a030
6
+ metadata.gz: b487103efdc0694eb0f4b3fba7bc07d1fcba2ff6e86bea170c3ae4fe6869049d05b5ff300dbb738c7098c9329642069890747b5f606b66e0bf9e080eb794af33
7
+ data.tar.gz: d33705a383103425d4b1d180ca17a63d45a38462d14fc2329420cf12265c163b17ff6270a1f62285cfd2b899af0705e89d7996079ca8c51032ba7864102f7d82
@@ -19,10 +19,10 @@ PLATFORMS
19
19
 
20
20
  DEPENDENCIES
21
21
  bundler (~> 1.16)
22
+ easy_api!
22
23
  minitest
23
24
  pry
24
25
  rake (~> 10.0)
25
- easy_api!
26
26
 
27
27
  BUNDLED WITH
28
28
  1.16.1
data/README.md CHANGED
@@ -1,8 +1,6 @@
1
1
  # EasyApi
2
2
 
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/easy_api`. To experiment with that code, run `bin/console` for an interactive prompt.
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/[USERNAME]/easy_api.
33
+ Bug reports and pull requests are welcome on GitHub at https://github.com/StephanMeijer/easy_api.
@@ -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", "Fabian de Laender"]
9
+ spec.authors = ["Stephan Meijer"]
10
10
  spec.email = ["me@stephanmeijer.com"]
11
11
 
12
- spec.summary = %q{The first real Telegram API client}
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)/})
@@ -1,5 +1,5 @@
1
1
  require "easy_api/object"
2
2
 
3
3
  module EasyApi
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
@@ -1,4 +1,5 @@
1
1
  require 'forwardable'
2
+ require 'ostruct'
2
3
 
3
4
  module EasyApi
4
5
  class MissingRequiredAttributeError < StandardError; end;
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.0
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-07 00:00:00.000000000 Z
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: The first real Telegram API client
95
+ summary: Easy way to write API's
97
96
  test_files: []