payload-api 0.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: a3fb1c5560cf78f19c57bd89cdb1e13baf1ed62724aeaf79f8540063aef38ec1
4
+ data.tar.gz: 118974f17c2e63757df0720945ef7c2bce8a8a306f4ae22dc88caf1745883d2e
5
+ SHA512:
6
+ metadata.gz: b3ff208b9b111d64cbb18807da8600bc4bb7dcb92b68746f21079eab95a3caf51fa089352530023a1ff4d7dc53352d3a9db68d77efba25d6b842d079fb6a73d0
7
+ data.tar.gz: eebbf9fa92b613fe279f3d322a8694f322e73954c7743483a222fd82dc8c0baa9b97010ccfc6c9e7ba4d5db33ab2c23ec866c82ae23c875d377ef64337d63d1e
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License
2
+
3
+ Copyright (c) 2017 RentShare (http://rentshare.com)
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,24 @@
1
+ # Payload RubyGem
2
+
3
+ A RubyGem for interfacing with the Payload API
4
+
5
+ ## Installation
6
+
7
+ To install using [Bundler](https://bundler.io):
8
+
9
+ ```ruby
10
+ gem 'place-api', '~> 0.5.5'
11
+ ```
12
+
13
+ To install using gem:
14
+
15
+ ```bash
16
+ gem install payload
17
+ ```
18
+
19
+
20
+ ## Basic usage
21
+ Coming Soon
22
+
23
+ ## Documentation
24
+ Read the [docs](https://docs.payload.co/?ruby)
data/lib/payload.rb ADDED
@@ -0,0 +1,6 @@
1
+ require "place/version"
2
+
3
+ module Payload
4
+ class << self
5
+ end
6
+ end
@@ -0,0 +1,3 @@
1
+ module Payload
2
+ VERSION = '0.0.0'
3
+ end
data/payload.gemspec ADDED
@@ -0,0 +1,21 @@
1
+ lib = File.join(File.dirname(__FILE__), "lib")
2
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
+
4
+ require 'payload/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "payload-api"
8
+ spec.version = Payload::VERSION
9
+ spec.required_ruby_version = ">= 2.0.0"
10
+ spec.summary = "Payload ruby library"
11
+ spec.description = "A simple library to interface with the Payload API. See https://docs.payload.co for details."
12
+ spec.author = "Payload"
13
+ spec.email = "help@payload.co"
14
+ spec.homepage = "https://docs.payload.co"
15
+ spec.license = "MIT"
16
+
17
+ spec.files = `git ls-files`.split("\n")
18
+ spec.test_files = `git ls-files -- test/*`.split("\n")
19
+ spec.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
20
+ spec.require_paths = ["lib"]
21
+ end
metadata ADDED
@@ -0,0 +1,49 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: payload-api
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Payload
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2018-10-28 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: A simple library to interface with the Payload API. See https://docs.payload.co
14
+ for details.
15
+ email: help@payload.co
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - LICENSE
21
+ - README.md
22
+ - lib/payload.rb
23
+ - lib/payload/version.rb
24
+ - payload.gemspec
25
+ homepage: https://docs.payload.co
26
+ licenses:
27
+ - MIT
28
+ metadata: {}
29
+ post_install_message:
30
+ rdoc_options: []
31
+ require_paths:
32
+ - lib
33
+ required_ruby_version: !ruby/object:Gem::Requirement
34
+ requirements:
35
+ - - ">="
36
+ - !ruby/object:Gem::Version
37
+ version: 2.0.0
38
+ required_rubygems_version: !ruby/object:Gem::Requirement
39
+ requirements:
40
+ - - ">="
41
+ - !ruby/object:Gem::Version
42
+ version: '0'
43
+ requirements: []
44
+ rubyforge_project:
45
+ rubygems_version: 2.7.7
46
+ signing_key:
47
+ specification_version: 4
48
+ summary: Payload ruby library
49
+ test_files: []