pvoutput 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: addc07d68f5896b569e08c0fff56515de4989add
4
- data.tar.gz: 1b857c2cb71269917d2b6636a32c2cfb19e02e16
3
+ metadata.gz: c675f86a314a18eff21610c99ab24c182b0e17a4
4
+ data.tar.gz: a19c6c6e50ed4772bd2e8246e8dfb052047e97b0
5
5
  SHA512:
6
- metadata.gz: 369b0064aeacf2f2ed869298d33d1460177d3a76e130562d3ff069a87115d49782a62fce7d62952f591b2983508651deaf3b3f4ee81cc37eddec0d41de3a3d8c
7
- data.tar.gz: 246ad5582773fd4cc6b691b6ce9bbda18c1ec06d4fcd739733aabd4139d6cb30c8843128ce24e7dc45a326201d2bce5f520b7632e4bd3e150128ea3f528f026c
6
+ metadata.gz: 52c869a01e3d2b121137433db0c3c1bba8fdde9c4f03e7ac29a4c7b54cfec56560730fdddde34cb18f4963bdf7cf753ab81bcb8bf189b9b05aa3680bd3e9bd60
7
+ data.tar.gz: be043beee3755051fdfbcc5be663f5befd333b5be520d7e8add364ca0670ce6e7f13b84e9d8e032940fef9b20edf9dc7a9293246e88b397a2101fa57cb840c3c
@@ -0,0 +1,7 @@
1
+ # 0.1.1 (20151122)
2
+
3
+ * Convert the system id to a string
4
+
5
+ # 0.1.0 (20151122)
6
+
7
+ * Initial Release
@@ -7,8 +7,8 @@ module PVOutput
7
7
  # debug_output $stdout
8
8
 
9
9
  def initialize(system_id, api_key)
10
- @system_id = system_id
11
- @api_key = api_key
10
+ @system_id = system_id.to_s
11
+ @api_key = api_key.to_s
12
12
 
13
13
  self.class.headers 'X-Pvoutput-Apikey' => @api_key, 'X-Pvoutput-SystemId' => @system_id
14
14
  end
@@ -1,3 +1,3 @@
1
1
  module PVOutput
2
- VERSION = '0.1.0'
2
+ VERSION = '0.1.1'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pvoutput
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Ferlito
@@ -174,6 +174,7 @@ files:
174
174
  - ".gitignore"
175
175
  - ".rspec"
176
176
  - ".rubocop.yml"
177
+ - CHANGELOG.md
177
178
  - CODE_OF_CONDUCT.md
178
179
  - Gemfile
179
180
  - LICENSE.txt