intermix-client 0.0.3 → 0.0.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rubocop.yml +1 -1
- data/.travis.yml +1 -1
- data/Changelog.md +3 -0
- data/intermix-client.gemspec +17 -17
- metadata +11 -11
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d6fc1a91f623ef06d9fc92005ffd2562a0a86c8673f3338f6c7c7c338ba07f7e
|
4
|
+
data.tar.gz: 44b49e99876c6c186fddaafb7a341a555169fd965da73c7ccbbdaa2d3e2ef44c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 11dc0b334e00aac78949568abd310cb936a578163d57355c10258ffdda4b8b27035d26e99997005f212f03bf24309a030953240bb0a6847892c5207d32ef9b16
|
7
|
+
data.tar.gz: 17819b78293298b839d73dd4983fca57731c17f2b636de16fb9dd0c30b3623675f514de189b934d29ba71f16d17d8feed994062ac0cafd32660391369cc7e320
|
data/.rubocop.yml
CHANGED
data/.travis.yml
CHANGED
data/Changelog.md
CHANGED
data/intermix-client.gemspec
CHANGED
@@ -1,24 +1,24 @@
|
|
1
1
|
# To publish the next version:
|
2
2
|
# gem build intermix-client.gemspec
|
3
3
|
# gem push intermix-client-{VERSION}.gem
|
4
|
-
Gem::Specification.new do |
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
4
|
+
Gem::Specification.new do |s|
|
5
|
+
s.name = 'intermix-client'
|
6
|
+
s.version = '0.0.4'
|
7
|
+
s.platform = Gem::Platform::RUBY
|
8
|
+
s.licenses = ['MIT']
|
9
|
+
s.authors = ['Joe Manley']
|
10
|
+
s.email = ['joemanley201@gmail.com']
|
11
|
+
s.homepage = 'https://github.com/tophatter/intermix-api-ruby'
|
12
|
+
s.summary = 'Intermix API Client in Ruby'
|
13
|
+
s.description = 'Intermix API Client in Ruby'
|
9
14
|
|
10
|
-
|
11
|
-
spec.description = 'Intermix API Client in Ruby'
|
12
|
-
spec.homepage = 'https://github.com/tophatter/intermix-api-ruby'
|
13
|
-
spec.license = 'MIT'
|
15
|
+
s.extra_rdoc_files = ['README.md']
|
14
16
|
|
15
|
-
|
17
|
+
s.add_dependency 'activesupport', '>= 4.2'
|
18
|
+
s.add_dependency 'httparty', '>= 0.14.0'
|
16
19
|
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
spec.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
22
|
-
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
23
|
-
spec.require_paths = ['lib']
|
20
|
+
s.files = `git ls-files`.split("\n")
|
21
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
22
|
+
s.executables = s.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
23
|
+
s.require_paths = ['lib']
|
24
24
|
end
|
metadata
CHANGED
@@ -1,41 +1,41 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: intermix-client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Joe Manley
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-12-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
19
|
version: '4.2'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- - "
|
24
|
+
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '4.2'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: httparty
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- - "
|
31
|
+
- - ">="
|
32
32
|
- !ruby/object:Gem::Version
|
33
33
|
version: 0.14.0
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
|
-
- - "
|
38
|
+
- - ">="
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: 0.14.0
|
41
41
|
description: Intermix API Client in Ruby
|
@@ -43,7 +43,8 @@ email:
|
|
43
43
|
- joemanley201@gmail.com
|
44
44
|
executables: []
|
45
45
|
extensions: []
|
46
|
-
extra_rdoc_files:
|
46
|
+
extra_rdoc_files:
|
47
|
+
- README.md
|
47
48
|
files:
|
48
49
|
- ".coveralls.yml"
|
49
50
|
- ".gitignore"
|
@@ -83,17 +84,16 @@ require_paths:
|
|
83
84
|
- lib
|
84
85
|
required_ruby_version: !ruby/object:Gem::Requirement
|
85
86
|
requirements:
|
86
|
-
- - "
|
87
|
+
- - ">="
|
87
88
|
- !ruby/object:Gem::Version
|
88
|
-
version: '
|
89
|
+
version: '0'
|
89
90
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
90
91
|
requirements:
|
91
92
|
- - ">="
|
92
93
|
- !ruby/object:Gem::Version
|
93
94
|
version: '0'
|
94
95
|
requirements: []
|
95
|
-
|
96
|
-
rubygems_version: 2.7.9
|
96
|
+
rubygems_version: 3.0.6
|
97
97
|
signing_key:
|
98
98
|
specification_version: 4
|
99
99
|
summary: Intermix API Client in Ruby
|