cognito 0.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +6 -0
- data/Gemfile +5 -0
- data/Rakefile +2 -0
- data/cognito.gemspec +15 -0
- metadata +48 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: fa50a9790794ce776ec70c1598641974958c95bc
|
4
|
+
data.tar.gz: 0002dc93479cc243003896fcbc5168cb33ac3f27
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: d6471921bee96276e698e0dc6647657bfc5c6111611cf5b6d5a6c6a6a64b9148079cb552c56ce170c099044d3ae7ca8ce9a49c562e039688b72cbcff0604f9b9
|
7
|
+
data.tar.gz: 174739671c4a62128d5f7ce97a1dacc451fddc4acc0b694ceaea9938c59f8286abe6237f2765407dd978a349ed0b18ed66d3c0d46981c733b203bb91f6e05d9b
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/Rakefile
ADDED
data/cognito.gemspec
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
Gem::Specification.new do |gem|
|
2
|
+
gem.name = 'cognito'
|
3
|
+
gem.version = '0.0.0'
|
4
|
+
gem.authors = ['John Backus']
|
5
|
+
gem.email = ['john@blockscore.com']
|
6
|
+
gem.description = 'API Client for Cognito'
|
7
|
+
gem.summary = gem.description
|
8
|
+
gem.homepage = 'https://blockscore.com/'
|
9
|
+
gem.license = 'MIT'
|
10
|
+
|
11
|
+
gem.require_paths = %w[lib]
|
12
|
+
|
13
|
+
gem.files = `git ls-files`.split("\n")
|
14
|
+
gem.test_files = `git ls-files -- spec/{unit,integration}`.split("\n")
|
15
|
+
end
|
metadata
ADDED
@@ -0,0 +1,48 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: cognito
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- John Backus
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2016-10-10 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: API Client for Cognito
|
14
|
+
email:
|
15
|
+
- john@blockscore.com
|
16
|
+
executables: []
|
17
|
+
extensions: []
|
18
|
+
extra_rdoc_files: []
|
19
|
+
files:
|
20
|
+
- ".gitignore"
|
21
|
+
- Gemfile
|
22
|
+
- Rakefile
|
23
|
+
- cognito.gemspec
|
24
|
+
homepage: https://blockscore.com/
|
25
|
+
licenses:
|
26
|
+
- MIT
|
27
|
+
metadata: {}
|
28
|
+
post_install_message:
|
29
|
+
rdoc_options: []
|
30
|
+
require_paths:
|
31
|
+
- lib
|
32
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
33
|
+
requirements:
|
34
|
+
- - ">="
|
35
|
+
- !ruby/object:Gem::Version
|
36
|
+
version: '0'
|
37
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
38
|
+
requirements:
|
39
|
+
- - ">="
|
40
|
+
- !ruby/object:Gem::Version
|
41
|
+
version: '0'
|
42
|
+
requirements: []
|
43
|
+
rubyforge_project:
|
44
|
+
rubygems_version: 2.5.1
|
45
|
+
signing_key:
|
46
|
+
specification_version: 4
|
47
|
+
summary: API Client for Cognito
|
48
|
+
test_files: []
|