baremetrics_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/.gitignore +17 -9
- data/{baremetrics.gemspec → baremetrics_api.gemspec} +4 -5
- data/lib/baremetrics_api/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9e7bb588180c3199f52ab8daf8d6107b306ec361
|
|
4
|
+
data.tar.gz: a2ccd3f1bc6fb7240481e6cc8e201d19195e6738
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 73130477c18cf9a33447b3e14feb8b14712fd60ab49b859021275c922e1f7220160b02a343c26519938251c929bda98dae535363b535be37d6b7cd3fce1924f6
|
|
7
|
+
data.tar.gz: 005ea0e85d597fefda31ed7653670f4b8da104a5931b59eaa791b3e401d0102cf6f5b83dd3dcf02475a9923b4b45d1cb64a811f4bbeb7a179c9d133522c7360f
|
data/.gitignore
CHANGED
|
@@ -1,9 +1,17 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
1
|
+
.bundle
|
|
2
|
+
*.gem
|
|
3
|
+
Gemfile.lock
|
|
4
|
+
db/*.sqlite3
|
|
5
|
+
log/*
|
|
6
|
+
tmp/*
|
|
7
|
+
.DS_Store
|
|
8
|
+
.idea/*
|
|
9
|
+
certs/*
|
|
10
|
+
.elasticbeanstalk/
|
|
11
|
+
|
|
12
|
+
# Elastic Beanstalk Files
|
|
13
|
+
.elasticbeanstalk/*
|
|
14
|
+
!.elasticbeanstalk/*.cfg.yml
|
|
15
|
+
!.elasticbeanstalk/*.global.yml
|
|
16
|
+
|
|
17
|
+
config/application.yml
|
|
@@ -7,16 +7,15 @@ Gem::Specification.new do |spec|
|
|
|
7
7
|
spec.name = 'baremetrics_api'
|
|
8
8
|
spec.version = BaremetricsAPI::VERSION
|
|
9
9
|
spec.authors = ['Third Blink Software Inc']
|
|
10
|
-
spec.email = ['
|
|
10
|
+
spec.email = ['team@thirdblink.com']
|
|
11
11
|
|
|
12
12
|
spec.summary = 'Ruby client library for Baremetrics V1 API'
|
|
13
13
|
spec.description = 'Provides an easy way to interact with the Baremetrics API in any application.'
|
|
14
14
|
spec.homepage = 'https://github.com/rewindit/baremetrics_api'
|
|
15
|
-
spec.license = '
|
|
15
|
+
spec.license = 'Nonstandard'
|
|
16
|
+
|
|
17
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
16
18
|
|
|
17
|
-
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
|
18
|
-
f.match(%r{^(test|spec|features)/})
|
|
19
|
-
end
|
|
20
19
|
spec.bindir = 'exe'
|
|
21
20
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
22
21
|
spec.require_paths = ['lib']
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: baremetrics_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
|
- Third Blink Software Inc
|
|
@@ -110,7 +110,7 @@ dependencies:
|
|
|
110
110
|
version: '4.2'
|
|
111
111
|
description: Provides an easy way to interact with the Baremetrics API in any application.
|
|
112
112
|
email:
|
|
113
|
-
-
|
|
113
|
+
- team@thirdblink.com
|
|
114
114
|
executables: []
|
|
115
115
|
extensions: []
|
|
116
116
|
extra_rdoc_files: []
|
|
@@ -122,7 +122,7 @@ files:
|
|
|
122
122
|
- LICENSE.txt
|
|
123
123
|
- README.md
|
|
124
124
|
- Rakefile
|
|
125
|
-
-
|
|
125
|
+
- baremetrics_api.gemspec
|
|
126
126
|
- bin/console
|
|
127
127
|
- bin/setup
|
|
128
128
|
- lib/baremetrics_api.rb
|
|
@@ -145,7 +145,7 @@ files:
|
|
|
145
145
|
- lib/faraday/rate_checker.rb
|
|
146
146
|
homepage: https://github.com/rewindit/baremetrics_api
|
|
147
147
|
licenses:
|
|
148
|
-
-
|
|
148
|
+
- Nonstandard
|
|
149
149
|
metadata: {}
|
|
150
150
|
post_install_message:
|
|
151
151
|
rdoc_options: []
|