intermix-client 0.0.3 → 0.0.4

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 842129af572462687c6aa5949d2883a31735dac45888d742176eddbc21af7428
4
- data.tar.gz: c29f00a632cf79db2a73577b2e88cfa326eff090370da85af0e95b71c137acee
3
+ metadata.gz: d6fc1a91f623ef06d9fc92005ffd2562a0a86c8673f3338f6c7c7c338ba07f7e
4
+ data.tar.gz: 44b49e99876c6c186fddaafb7a341a555169fd965da73c7ccbbdaa2d3e2ef44c
5
5
  SHA512:
6
- metadata.gz: b950e9dbd1551ad923eb6cdf6c21dcbd9b5e4b6b8728fde25e7daa46f302566ef9f17332cb76de7597f0665b1a8f952ddb92beece88f63c247ee7ac51dbbb809
7
- data.tar.gz: 666f952f29cf6ffccb5806cad45bc8fb53ae1f673eaaf615bdd587d6295e06d9ee193ace3dc3747476d9b1d569e67825c03f6fbb0fd67d7c9e9fc099eb3ea5b5
6
+ metadata.gz: 11dc0b334e00aac78949568abd310cb936a578163d57355c10258ffdda4b8b27035d26e99997005f212f03bf24309a030953240bb0a6847892c5207d32ef9b16
7
+ data.tar.gz: 17819b78293298b839d73dd4983fca57731c17f2b636de16fb9dd0c30b3623675f514de189b934d29ba71f16d17d8feed994062ac0cafd32660391369cc7e320
@@ -1,5 +1,5 @@
1
1
  AllCops:
2
- TargetRubyVersion: 2.3
2
+ TargetRubyVersion: 2.6
3
3
 
4
4
  Metrics/BlockLength:
5
5
  Enabled: false
@@ -1,7 +1,7 @@
1
1
  sudo: false
2
2
  language: ruby
3
3
  rvm:
4
- - 2.3.8
4
+ - 2.6.5
5
5
  script:
6
6
  - bundle exec rubocop
7
7
  - bundle exec rake
@@ -1,3 +1,6 @@
1
+ ## 0.0.4
2
+ * Allow this gem to be used with Rails 5+.
3
+
1
4
  ## 0.0.3
2
5
  * [Intermix::Vacuum - fix thresholds to actually respect percent values](https://github.com/tophatter/intermix-api-ruby/pull/9)
3
6
 
@@ -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 |spec|
5
- spec.name = 'intermix-client'
6
- spec.version = '0.0.3'
7
- spec.authors = ['Joe Manley']
8
- spec.email = ['joemanley201@gmail.com']
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
- spec.summary = 'Intermix API Client in Ruby'
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
- spec.required_ruby_version = '~> 2.3'
17
+ s.add_dependency 'activesupport', '>= 4.2'
18
+ s.add_dependency 'httparty', '>= 0.14.0'
16
19
 
17
- spec.add_dependency 'activesupport', '~> 4.2'
18
- spec.add_dependency 'httparty', '~> 0.14.0'
19
-
20
- spec.files = `git ls-files`.split("\n")
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.3
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-07-09 00:00:00.000000000 Z
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: '2.3'
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
- rubyforge_project:
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