lifx-faraday 0.0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: da6087bdfb50b85e2a022615943b1c5b37370e7b
4
- data.tar.gz: f5dd45f34212a17a7587faf3a86a68734e70e962
2
+ SHA256:
3
+ metadata.gz: 68108787c488724ba3e80765d3122eac6a6a10478deface3e44e3fd899557b56
4
+ data.tar.gz: 3e2187681fadb7ab476ed558aeaf6bb572aab97c71889dbb3e925d09e879f975
5
5
  SHA512:
6
- metadata.gz: 5ad3246440ddb0c680c385376362fa2bdb1243f46b5bcc6923556ae70c827f9569833516f69b1a047f3b2d5f672d4dcb47d4d6967ca05d91e2dc2029f9197175
7
- data.tar.gz: a8ab8998bbc7593602088992eda69f2614fed40286ad0e52d2e5eaeff0b322ec0bfee60e44d402ee3445ea27391f38128b27c015d1fde7d33e0621a8ea85a6d7
6
+ metadata.gz: a4d03608664ec4b9ff6ce46bd53c996ee8e3c7b0985455a99c28d39f15e0cb7fa8e49f4778ddda62edc62def6830140b635e4252a0622cd24c3817ba88a19ce2
7
+ data.tar.gz: 5587e9af6059a9f1b48bd18b5d6e74f5a3288bd60210c73dd5c22ce623ba9950c18fc453cb0ea3a664151239c516f50b39703fdaf3a799128a29c1865f6a6e00
@@ -1,5 +1,10 @@
1
1
  # Change Log
2
2
 
3
+ ## [v0.0.0](https://github.com/coreyja/lifx-faraday/tree/v0.0.0) (2017-05-27)
4
+ **Merged pull requests:**
5
+
6
+ - Use Faraday to set a LIFX Light [\#1](https://github.com/coreyja/lifx-faraday/pull/1) ([coreyja](https://github.com/coreyja))
7
+
3
8
 
4
9
 
5
10
  \* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
@@ -1,7 +1,7 @@
1
1
  module LifxFaraday
2
2
  API = Faraday.new 'https://api.lifx.com/v1' do |c|
3
3
  # Request
4
- c.basic_auth(ENV.fetch('LIFX_TOKEN'), '')
4
+ c.basic_auth(ENV['LIFX_TOKEN'], '')
5
5
  c.use Faraday::Request::UrlEncoded
6
6
 
7
7
  # Adapter
@@ -1,3 +1,3 @@
1
1
  module LifxFaraday
2
- VERSION = '0.0.0'.freeze
2
+ VERSION = '0.1.1'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lifx-faraday
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Corey Alexander
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-05-27 00:00:00.000000000 Z
11
+ date: 2019-11-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -104,8 +104,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
104
104
  - !ruby/object:Gem::Version
105
105
  version: '0'
106
106
  requirements: []
107
- rubyforge_project:
108
- rubygems_version: 2.6.8
107
+ rubygems_version: 3.0.3
109
108
  signing_key:
110
109
  specification_version: 4
111
110
  summary: LiFX API implemented using Faraday