stripe-toolkit 0.0.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 +7 -0
- data/lib/stripe-toolkit.rb +1 -0
- data/lib/stripe-toolkit/version.rb +3 -0
- data/stripe-toolkit.gemspec +23 -0
- metadata +47 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: dbc1dd0b2e8649b76575c56c31bf872762ac3131
|
|
4
|
+
data.tar.gz: ae96cadbfd5a52d81758633d8fd208ee2d460f37
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 5e9148e113b7261a9efd358830364c4e1d6dac3ede52fc7a1e604f6e37e1c0db5d3127386705c004612b96c9b593b41a49eed43eeb342ffa872e88cefcd01dfd
|
|
7
|
+
data.tar.gz: 35a6a7f8d9b710619564fe4472b0f65fbe7f24957916f82ccebd22775f659fb849cec5c88d36f3eaa0cee580bea070f8438994e8c6167454b87af3da9e34ad47
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
require_relative 'stripe-toolkit/version'
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
|
2
|
+
|
|
3
|
+
require_relative 'lib/stripe-toolkit/version'
|
|
4
|
+
|
|
5
|
+
Gem::Specification.new do |s|
|
|
6
|
+
s.name = 'stripe-toolkit'
|
|
7
|
+
s.version = StripeToolkit::VERSION.dup
|
|
8
|
+
|
|
9
|
+
s.author = 'Andrew Thorp'
|
|
10
|
+
s.email = 'andrewpthorp@gmail.com'
|
|
11
|
+
s.homepage = 'http://github.com/andrewpthorp/stripe-toolkit'
|
|
12
|
+
|
|
13
|
+
s.license = 'MIT'
|
|
14
|
+
s.summary = 'Toolkit for working with the Stripe API.'
|
|
15
|
+
s.description = s.summary
|
|
16
|
+
|
|
17
|
+
s.files = %w(stripe-toolkit.gemspec)
|
|
18
|
+
s.files += Dir.glob("lib/**/*.rb")
|
|
19
|
+
s.files += Dir.glob("spec/**/*")
|
|
20
|
+
|
|
21
|
+
s.test_files = Dir.glob("spec/**/*")
|
|
22
|
+
s.require_paths = ["lib"]
|
|
23
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: stripe-toolkit
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Andrew Thorp
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2014-12-15 00:00:00.000000000 Z
|
|
12
|
+
dependencies: []
|
|
13
|
+
description: Toolkit for working with the Stripe API.
|
|
14
|
+
email: andrewpthorp@gmail.com
|
|
15
|
+
executables: []
|
|
16
|
+
extensions: []
|
|
17
|
+
extra_rdoc_files: []
|
|
18
|
+
files:
|
|
19
|
+
- lib/stripe-toolkit.rb
|
|
20
|
+
- lib/stripe-toolkit/version.rb
|
|
21
|
+
- stripe-toolkit.gemspec
|
|
22
|
+
homepage: http://github.com/andrewpthorp/stripe-toolkit
|
|
23
|
+
licenses:
|
|
24
|
+
- MIT
|
|
25
|
+
metadata: {}
|
|
26
|
+
post_install_message:
|
|
27
|
+
rdoc_options: []
|
|
28
|
+
require_paths:
|
|
29
|
+
- lib
|
|
30
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
31
|
+
requirements:
|
|
32
|
+
- - ">="
|
|
33
|
+
- !ruby/object:Gem::Version
|
|
34
|
+
version: '0'
|
|
35
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
36
|
+
requirements:
|
|
37
|
+
- - ">="
|
|
38
|
+
- !ruby/object:Gem::Version
|
|
39
|
+
version: '0'
|
|
40
|
+
requirements: []
|
|
41
|
+
rubyforge_project:
|
|
42
|
+
rubygems_version: 2.2.2
|
|
43
|
+
signing_key:
|
|
44
|
+
specification_version: 4
|
|
45
|
+
summary: Toolkit for working with the Stripe API.
|
|
46
|
+
test_files: []
|
|
47
|
+
has_rdoc:
|