pvoutput 0.1.1 → 0.6.0

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: c675f86a314a18eff21610c99ab24c182b0e17a4
4
- data.tar.gz: a19c6c6e50ed4772bd2e8246e8dfb052047e97b0
2
+ SHA256:
3
+ metadata.gz: 335a39d8597c2d72545424953282c5325c677ba7c8c8529ef58a66157088e9b1
4
+ data.tar.gz: a7eb5913ea1960036f4c8bdb3f3c4523674c69e1bccb23756c4b037d48a866ac
5
5
  SHA512:
6
- metadata.gz: 52c869a01e3d2b121137433db0c3c1bba8fdde9c4f03e7ac29a4c7b54cfec56560730fdddde34cb18f4963bdf7cf753ab81bcb8bf189b9b05aa3680bd3e9bd60
7
- data.tar.gz: be043beee3755051fdfbcc5be663f5befd333b5be520d7e8add364ca0670ce6e7f13b84e9d8e032940fef9b20edf9dc7a9293246e88b397a2101fa57cb840c3c
6
+ metadata.gz: 5d5a1e4180ba44bec0fb0e3aed3facf13d40d959a55b13104852b9b070336935228e7dec82bded26ac0989abb72b35d6798325dc99fdc884d6e35920290aa444
7
+ data.tar.gz: e93c15e6e04f3421b4bc50b47e2ee2e30b846b5f11f333ff2b4d2866b811c2d06de83434ab9daaac25db764be7bbc00a5c09c4a7c5139131074db29a8f109864
@@ -0,0 +1,14 @@
1
+ # Set update schedule for GitHub Actions
2
+ version: 2
3
+ updates:
4
+ - package-ecosystem: "github-actions"
5
+ directory: "/"
6
+ schedule:
7
+ interval: "weekly"
8
+ day: "saturday"
9
+
10
+ - package-ecosystem: "bundler"
11
+ directory: "/"
12
+ schedule:
13
+ interval: "weekly"
14
+ day: "saturday"
@@ -0,0 +1,29 @@
1
+ name: Ruby Gem
2
+
3
+ on:
4
+ release:
5
+ types: [ published ]
6
+
7
+ jobs:
8
+ build:
9
+ name: Build + Publish
10
+ runs-on: ubuntu-latest
11
+
12
+ steps:
13
+ - uses: actions/checkout@v2
14
+ - name: Set up Ruby 2.6
15
+ uses: ruby/setup-ruby@v1
16
+ with:
17
+ ruby-version: 2.6
18
+
19
+ - name: Install dependencies
20
+ run: bundle install
21
+ - name: Publish to RubyGems
22
+ run: |
23
+ mkdir -p $HOME/.gem
24
+ touch $HOME/.gem/credentials
25
+ chmod 0600 $HOME/.gem/credentials
26
+ printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
27
+ rake release
28
+ env:
29
+ GEM_HOST_API_KEY: "${{secrets.RUBYGEMS_AUTH_TOKEN}}"
@@ -0,0 +1,30 @@
1
+ name: Test
2
+
3
+ on:
4
+ push:
5
+ branches: [ master ]
6
+ pull_request:
7
+ branches: [ master ]
8
+ schedule:
9
+ - cron: '0 1 * * SUN'
10
+
11
+ jobs:
12
+ test:
13
+ runs-on: ubuntu-latest
14
+ strategy:
15
+ matrix:
16
+ ruby-version: [ '2.5', '2.6', '2.7', '3.0', 'ruby-head' ]
17
+
18
+ steps:
19
+ - uses: actions/checkout@v2
20
+ - name: Setup ruby
21
+ uses: ruby/setup-ruby@v1
22
+ with:
23
+ ruby-version: ${{ matrix.ruby-version }}
24
+ bundler-cache: true
25
+ - name: Install dependencies
26
+ run: bundle install
27
+ - name: Lint files
28
+ run: bundle exec rubocop
29
+ - name: Run tests
30
+ run: bundle exec rake
data/.gitignore CHANGED
@@ -4,3 +4,4 @@
4
4
  /pkg/
5
5
  /spec/reports/
6
6
  /tmp/
7
+ /vendor/bundle
data/.rubocop.yml CHANGED
@@ -1,6 +1,9 @@
1
1
  require: rubocop-rspec
2
2
 
3
- HashSyntax:
3
+ AllCops:
4
+ NewCops: enable
5
+
6
+ Style/HashSyntax:
4
7
  EnforcedStyle: hash_rockets
5
8
 
6
9
  Style/Documentation:
@@ -9,14 +12,26 @@ Style/Documentation:
9
12
  Style/Lambda:
10
13
  Enabled: false
11
14
 
12
- Style/TrailingComma:
13
- EnforcedStyleForMultiline: comma
15
+ Style/TrailingCommaInArrayLiteral:
16
+ EnforcedStyleForMultiline: consistent_comma
17
+
18
+ Style/TrailingCommaInHashLiteral:
19
+ EnforcedStyleForMultiline: consistent_comma
20
+
21
+ Metrics/MethodLength:
22
+ Max: 20
14
23
 
15
- Metrics/LineLength:
24
+ Layout/LineLength:
16
25
  Max: 120
17
26
 
27
+ RSpec/ExampleLength:
28
+ Max: 15
29
+
18
30
  Style/ModuleFunction:
19
31
  Enabled: false
20
32
 
21
- AlignHash:
33
+ Layout/HashAlignment:
22
34
  EnforcedHashRocketStyle: table
35
+
36
+ Style/OptionalBooleanParameter:
37
+ Enabled: false
data/CHANGELOG.md CHANGED
@@ -1,7 +1,38 @@
1
+ # Changelog
2
+
3
+ # 0.6.0 (2021-02-06)
4
+
5
+ This test has no code changes but tests the new release process.
6
+
7
+ * Move tests from CircleCI to GitHub Actions (@johnf)
8
+ * Keep an eye on dependencies with Dependabot (@jwillemsen)
9
+ * Schedule regular tests against multiple rubys (@jwillemsen)
10
+
11
+ # 0.5.0 (2020-09-20)
12
+
13
+ * Add more detail to error messages (@jwillemsen)
14
+ * Support debugging (@johnf)
15
+
16
+ # 0.4.0 (20160911)
17
+
18
+ * Add retries to batch_output (@jwillemsen)
19
+
20
+ # 0.3.0 (20160229)
21
+
22
+ * Add donation mode (@jwillemsen)
23
+ * Add batch_output support (@jwillemsen)
24
+
25
+ # 0.2.0 (20160227)
26
+
27
+ * Fix typo in temperature (@jwillemsen)
28
+ * Add usage documentation (@jwillemsen)
29
+ * Add the add_ouput method for end of day reporting (@jwillemsen)
30
+ * Use latest bundler in CircleCI (@johnf)
31
+
1
32
  # 0.1.1 (20151122)
2
33
 
3
- * Convert the system id to a string
34
+ * Convert the system id to a string (@johnf)
4
35
 
5
36
  # 0.1.0 (20151122)
6
37
 
7
- * Initial Release
38
+ * Initial Release (@johnf)
data/Gemfile CHANGED
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  source 'https://rubygems.org'
2
4
 
3
5
  gemspec
data/README.md CHANGED
@@ -1,7 +1,9 @@
1
1
  # PVOutput
2
2
 
3
- [![Circle CI](https://circleci.com/gh/johnf/pvoutput.svg?style=svg)](https://circleci.com/gh/johnf/pvoutput)
3
+ [![Actions Status](https://github.com/johnf/pvoutput/workflows/Test/badge.svg)](https://github.com/johnf/pvoutput/actions)
4
4
  [![Coverage Status](https://coveralls.io/repos/johnf/pvoutput/badge.svg?branch=master&service=github)](https://coveralls.io/github/johnf/pvoutput?branch=master)
5
+ [![Gem Version](https://badge.fury.io/rb/pvoutput.svg)](http://badge.fury.io/rb/pvoutput)
6
+
5
7
 
6
8
  Ruby library for talking to the PVOutput API.
7
9
 
@@ -23,7 +25,133 @@ Or install it yourself as:
23
25
 
24
26
  ## Usage
25
27
 
26
- TODO
28
+ In order to use pvoutput in your application you need to use
29
+
30
+ ```ruby
31
+ require 'pvoutput/client'
32
+ ```
33
+
34
+ First step is to create a PVOutput client using your PVOutput assigned system_id and api_key
35
+
36
+ ```ruby
37
+ pvoutput = PVOutput::Client.new(system_id, api_key)
38
+ ```
39
+
40
+ At the moment you [donate](http://pvoutput.org/donate.jsp) to PVOutput you can enable the donation mode by creating a PVOutput client using
41
+
42
+ ```ruby
43
+ pvoutput = PVOutput::Client.new(system_id, api_key, true)
44
+ ```
45
+
46
+ Now you can report your real time status to PVOutput using
47
+
48
+ ```ruby
49
+ pvoutput.add_status(
50
+ options
51
+ )
52
+ ```
53
+
54
+ The add_status operation accepts the following options
55
+
56
+ | Option | PVOutput Parameter |
57
+ | ---------------- | ------------------ |
58
+ | energy_generated | v1 |
59
+ | power_generated | v2 |
60
+ | energy_consumed | v3 |
61
+ | power_consumed | v4 |
62
+ | temperature | v5 |
63
+ | voltage | v6 |
64
+ | cumulative | c1 |
65
+ | net | n |
66
+
67
+ As example
68
+
69
+ ```ruby
70
+ client.add_status(
71
+ :energy_generated => 100,
72
+ :power_generated => 50,
73
+ :temperature => 30,
74
+ :voltage => 200,
75
+ )
76
+ ```
77
+
78
+ You can report your daily output to PVOutput using
79
+
80
+ ```ruby
81
+ pvoutput.add_output(
82
+ options
83
+ )
84
+ ```
85
+
86
+ The add_output operation accepts the following options
87
+
88
+ | Option | PVOutput Parameter |
89
+ | --------------------- | ------------------ |
90
+ | output_date | d |
91
+ | energy_generated | g |
92
+ | peak_power | pp |
93
+ | peak_time | pt |
94
+ | condition | cd |
95
+ | min_temp | tm |
96
+ | max_temp | tx |
97
+ | comments | cm |
98
+ | import_peak | ip |
99
+ | import_off_peak | io |
100
+ | import_shoulder | is |
101
+ | import_high_shoulder | ih |
102
+ | consumption | c |
103
+
104
+ As example
105
+
106
+ ```ruby
107
+ client.add_output(
108
+ :output_date => '20160228'
109
+ :energy_generated => 15000,
110
+ :max_temp => 30
111
+ )
112
+ ```
113
+
114
+ You can report also a batch of daily output values to PVOutput using
115
+
116
+ ```ruby
117
+ pvoutput.add_batch_output(
118
+ options
119
+ )
120
+ ```
121
+
122
+ The add_batch_output operation accepts a hash with the date as key and within that the following options
123
+
124
+ | Option | PVOutput Parameter |
125
+ | --------------------- | ------------------ |
126
+ | energy_generated | g |
127
+ | peak_power | pp |
128
+ | peak_time | pt |
129
+ | condition | cd |
130
+ | min_temp | tm |
131
+ | max_temp | tx |
132
+ | comments | cm |
133
+ | import_peak | ip |
134
+ | import_off_peak | io |
135
+ | import_shoulder | is |
136
+ | import_high_shoulder | ih |
137
+ | consumption | c |
138
+
139
+ As example
140
+
141
+ ```ruby
142
+ client.add_output(
143
+ :'20150101' => {
144
+ :energy_generated => 1239, },
145
+ :'20150102' => {
146
+ :energy_generated => 1523 },
147
+ :'20150103' => {
148
+ :energy_generated => 2190 },
149
+ )
150
+ ```
151
+
152
+ ## Debugging
153
+
154
+ You can enable HTTParty debugging to see the requests by setting `PVOUTPUT_DEBUG=true`
27
155
 
28
156
  ## Development
29
157
 
@@ -33,7 +161,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
33
161
 
34
162
  ## Contributing
35
163
 
36
- Bug reports and pull requests are welcome on GitHub at https://github.com/johnf/pvoutput. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](contributor-covenant.org) code of conduct.
164
+ Bug reports and pull requests are welcome on GitHub at https://github.com/johnf/pvoutput. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
37
165
 
38
166
 
39
167
  ## License
data/Rakefile CHANGED
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'bundler/gem_tasks'
2
4
  require 'rspec/core/rake_task'
3
5
  require 'rubocop/rake_task'
data/bin/console CHANGED
@@ -1,7 +1,8 @@
1
1
  #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
2
3
 
3
4
  require 'bundler/setup'
4
- require 'jfy'
5
+ require 'pvoutput/client'
5
6
 
6
7
  require 'pry'
7
8
  Pry.start
data/lib/pvoutput.rb CHANGED
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'pvoutput/version'
2
4
 
3
5
  module PVOutput
@@ -1,19 +1,43 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'httparty'
2
4
 
3
5
  module PVOutput
4
6
  class Client
5
7
  include HTTParty
6
8
  base_uri 'pvoutput.org'
7
- # debug_output $stdout
9
+ debug_output $stdout if ENV['PVOUTPUT_DEBUG']
8
10
 
9
- def initialize(system_id, api_key)
11
+ def initialize(system_id, api_key, donation_mode = false)
10
12
  @system_id = system_id.to_s
11
13
  @api_key = api_key.to_s
14
+ # The batch operations have default limit of 30 sets of data in one request, when you
15
+ # are using the donation mode the limit is 100 sets
16
+ @batch_size = 30
17
+ @batch_size = 100 if donation_mode
12
18
 
13
19
  self.class.headers 'X-Pvoutput-Apikey' => @api_key, 'X-Pvoutput-SystemId' => @system_id
14
20
  end
15
21
 
16
- # rubocop:disable Metrics/AbcSize, Metrics/CyclomaticComplexity, Metrics/MethodLength, Metrics/PerceivedComplexity
22
+ # Helper method to post batch request to pvoutput that retries at the moment we get
23
+ # a 400 error back with body containing 'Load in progress'
24
+ def post_request(path, options = {}, &block)
25
+ loop do
26
+ response = self.class.post(path, options, &block)
27
+
28
+ if response.code == 400 && response.body =~ /Load in progress/
29
+ # We can't send data too fast, when the previous request is still loaded we
30
+ # have to wait so sleep 10 seconds and try again
31
+ sleep(10)
32
+ elsif response.code == 200
33
+ return
34
+ else
35
+ raise("Bad Post: #{response.body}")
36
+ end
37
+ end
38
+ end
39
+
40
+ # rubocop:disable Metrics/AbcSize, Metrics/CyclomaticComplexity, Metrics/PerceivedComplexity
17
41
  def add_status(options)
18
42
  time = options[:when] || Time.now
19
43
 
@@ -26,15 +50,61 @@ module PVOutput
26
50
  params[:v2] = options[:power_generated] if options[:power_generated]
27
51
  params[:v3] = options[:energy_consumed] if options[:energy_consumed]
28
52
  params[:v4] = options[:power_consumed] if options[:power_consumed]
29
- params[:v5] = options[:temperature] if options[:temparature]
53
+ params[:v5] = options[:temperature] if options[:temperature]
30
54
  params[:v6] = options[:voltage] if options[:voltage]
31
55
  params[:c1] = 1 if options[:cumulative] == true
32
56
  params[:n] = 1 if options[:net] == true
33
57
 
34
58
  response = self.class.post('/service/r2/addstatus.jsp', :body => params)
35
59
 
36
- fail('Bad Post') unless response.code == 200
60
+ raise('Bad Post') unless response.code == 200
61
+ end
62
+ # rubocop:enable Metrics/AbcSize, Metrics/CyclomaticComplexity, Metrics/PerceivedComplexity
63
+
64
+ # rubocop:disable Metrics/AbcSize, Metrics/CyclomaticComplexity, Metrics/PerceivedComplexity
65
+ def add_output(options)
66
+ params = {
67
+ }
68
+
69
+ params[:d] = options[:output_date]
70
+ params[:g] = options[:energy_generated] if options[:energy_generated]
71
+ params[:pp] = options[:peak_power] if options[:peak_power]
72
+ params[:pt] = options[:peak_time] if options[:peak_time]
73
+ params[:cd] = options[:condition] if options[:condition]
74
+ params[:tm] = options[:min_temp] if options[:min_temp]
75
+ params[:tx] = options[:max_temp] if options[:max_temp]
76
+ params[:cm] = options[:comments] if options[:comments]
77
+ params[:ip] = options[:import_peak] if options[:import_peak]
78
+ params[:io] = options[:import_off_peak] if options[:import_off_peak]
79
+ params[:is] = options[:import_shoulder] if options[:import_shoulder]
80
+ params[:ih] = options[:import_high_shoulder] if options[:import_high_shoulder]
81
+ params[:c] = options[:consumption] if options[:consumption]
82
+
83
+ response = self.class.post('/service/r2/addoutput.jsp', :body => params)
84
+
85
+ raise('Bad Post') unless response.code == 200
86
+ end
87
+ # rubocop:enable Metrics/AbcSize, Metrics/CyclomaticComplexity, Metrics/PerceivedComplexity
88
+
89
+ def add_batch_output(options)
90
+ keys = %i[energy_generated energy_export energy_used]
91
+ keys += %i[peak_power peak_time condition min_temp]
92
+ keys += %i[max_temp comments import_peak import_off_peak]
93
+ keys += %i[import_shoulder]
94
+
95
+ options.to_a.each_slice(@batch_size) do |slice|
96
+ data = ''
97
+ slice.each do |entry|
98
+ date, values = entry
99
+ data += "#{date},#{keys.map { |key| values[key] }.join(',')};"
100
+ end
101
+
102
+ params = {
103
+ :data => data.chop,
104
+ }
105
+
106
+ post_request('/service/r2/addbatchoutput.jsp', :body => params)
107
+ end
37
108
  end
38
- # rubocop:enable Metrics/AbcSize, Metrics/CyclomaticComplexity, Metrics/MethodLength, Metrics/PerceivedComplexity
39
109
  end
40
110
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module PVOutput
2
- VERSION = '0.1.1'
4
+ VERSION = '0.6.0'
3
5
  end
data/pvoutput.gemspec CHANGED
@@ -1,5 +1,6 @@
1
- # coding: utf-8
2
- lib = File.expand_path('../lib', __FILE__)
1
+ # frozen_string_literal: true
2
+
3
+ lib = File.expand_path('lib', __dir__)
3
4
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
5
  require 'pvoutput/version'
5
6
 
@@ -18,16 +19,18 @@ Gem::Specification.new do |spec|
18
19
  spec.require_paths = ['lib']
19
20
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
20
21
 
22
+ spec.required_ruby_version = '>= 2.4'
23
+
21
24
  spec.add_dependency 'httparty'
22
25
 
23
- spec.add_development_dependency 'bundler', '~> 1.10'
24
- spec.add_development_dependency 'rake', '~> 10.0'
26
+ spec.add_development_dependency 'bundler', '>= 2.1'
27
+ spec.add_development_dependency 'coveralls'
25
28
  spec.add_development_dependency 'pry'
29
+ spec.add_development_dependency 'rake', '>= 12.3.3'
26
30
  spec.add_development_dependency 'rspec'
27
- spec.add_development_dependency 'webmock'
28
- spec.add_development_dependency 'timecop'
31
+ spec.add_development_dependency 'rspec_junit_formatter'
29
32
  spec.add_development_dependency 'rubocop'
30
33
  spec.add_development_dependency 'rubocop-rspec'
31
- spec.add_development_dependency 'rspec_junit_formatter'
32
- spec.add_development_dependency 'coveralls'
34
+ spec.add_development_dependency 'timecop'
35
+ spec.add_development_dependency 'webmock'
33
36
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pvoutput
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Ferlito
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2015-11-22 00:00:00.000000000 Z
11
+ date: 2021-02-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httparty
@@ -28,30 +28,30 @@ dependencies:
28
28
  name: bundler
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - "~>"
31
+ - - ">="
32
32
  - !ruby/object:Gem::Version
33
- version: '1.10'
33
+ version: '2.1'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - "~>"
38
+ - - ">="
39
39
  - !ruby/object:Gem::Version
40
- version: '1.10'
40
+ version: '2.1'
41
41
  - !ruby/object:Gem::Dependency
42
- name: rake
42
+ name: coveralls
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - "~>"
45
+ - - ">="
46
46
  - !ruby/object:Gem::Version
47
- version: '10.0'
47
+ version: '0'
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - "~>"
52
+ - - ">="
53
53
  - !ruby/object:Gem::Version
54
- version: '10.0'
54
+ version: '0'
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: pry
57
57
  requirement: !ruby/object:Gem::Requirement
@@ -67,21 +67,21 @@ dependencies:
67
67
  - !ruby/object:Gem::Version
68
68
  version: '0'
69
69
  - !ruby/object:Gem::Dependency
70
- name: rspec
70
+ name: rake
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
73
  - - ">="
74
74
  - !ruby/object:Gem::Version
75
- version: '0'
75
+ version: 12.3.3
76
76
  type: :development
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
80
  - - ">="
81
81
  - !ruby/object:Gem::Version
82
- version: '0'
82
+ version: 12.3.3
83
83
  - !ruby/object:Gem::Dependency
84
- name: webmock
84
+ name: rspec
85
85
  requirement: !ruby/object:Gem::Requirement
86
86
  requirements:
87
87
  - - ">="
@@ -95,7 +95,7 @@ dependencies:
95
95
  - !ruby/object:Gem::Version
96
96
  version: '0'
97
97
  - !ruby/object:Gem::Dependency
98
- name: timecop
98
+ name: rspec_junit_formatter
99
99
  requirement: !ruby/object:Gem::Requirement
100
100
  requirements:
101
101
  - - ">="
@@ -137,7 +137,7 @@ dependencies:
137
137
  - !ruby/object:Gem::Version
138
138
  version: '0'
139
139
  - !ruby/object:Gem::Dependency
140
- name: rspec_junit_formatter
140
+ name: timecop
141
141
  requirement: !ruby/object:Gem::Requirement
142
142
  requirements:
143
143
  - - ">="
@@ -151,7 +151,7 @@ dependencies:
151
151
  - !ruby/object:Gem::Version
152
152
  version: '0'
153
153
  - !ruby/object:Gem::Dependency
154
- name: coveralls
154
+ name: webmock
155
155
  requirement: !ruby/object:Gem::Requirement
156
156
  requirements:
157
157
  - - ">="
@@ -171,6 +171,9 @@ executables: []
171
171
  extensions: []
172
172
  extra_rdoc_files: []
173
173
  files:
174
+ - ".github/dependabot.yml"
175
+ - ".github/workflows/gem-push.yaml"
176
+ - ".github/workflows/ruby.yml"
174
177
  - ".gitignore"
175
178
  - ".rspec"
176
179
  - ".rubocop.yml"
@@ -182,7 +185,6 @@ files:
182
185
  - Rakefile
183
186
  - bin/console
184
187
  - bin/setup
185
- - circle.yml
186
188
  - lib/pvoutput.rb
187
189
  - lib/pvoutput/client.rb
188
190
  - lib/pvoutput/version.rb
@@ -199,15 +201,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
199
201
  requirements:
200
202
  - - ">="
201
203
  - !ruby/object:Gem::Version
202
- version: '0'
204
+ version: '2.4'
203
205
  required_rubygems_version: !ruby/object:Gem::Requirement
204
206
  requirements:
205
207
  - - ">="
206
208
  - !ruby/object:Gem::Version
207
209
  version: '0'
208
210
  requirements: []
209
- rubyforge_project:
210
- rubygems_version: 2.4.5.1
211
+ rubygems_version: 3.0.3
211
212
  signing_key:
212
213
  specification_version: 4
213
214
  summary: Library to speak to the PVOutput API
data/circle.yml DELETED
@@ -1,6 +0,0 @@
1
- test:
2
- post:
3
- - bundle exec rubocop
4
- machine:
5
- ruby:
6
- version: 2.2.3