saj_collector 0.5.5 → 1.0.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 +4 -4
- data/.github/dependabot.yml +12 -0
- data/.github/workflows/ruby.yml +24 -13
- data/.rubocop.yml +6 -1
- data/Gemfile +2 -0
- data/README.md +18 -16
- data/Rakefile +2 -0
- data/exe/saj_collector +23 -15
- data/exe/saj_output_collector +11 -2
- data/lib/saj_collector/version.rb +3 -1
- data/lib/say_collector.rb +2 -0
- data/saj_collector.gemspec +9 -4
- metadata +34 -22
- data/.travis.yml +0 -35
- data/circle.yml +0 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8304d3b07d3aa1751eb21298b30d45c7e8ca55021943f158f9ae7efb520fbdac
|
4
|
+
data.tar.gz: 04d0d8405a6c6785387cd8a6ea5370683d943cbfb32ec7cfaf972f480309ce62
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 17d4b2d147ac00f47fb250d1ce4e9711792b02ef4c96d636ef4d698fc66b5b27861372892dea0aaeb308bf3295617975247363e78166f2de034d77e87aad42c7
|
7
|
+
data.tar.gz: ecc1699e209baba815e5d8b47c897469aa7f9f4eca964077f1376e87ae800eac2d0ec0324ac2b645ce2c21311678f45b019052ef4e12c10e20e7c2e156d6f93b
|
data/.github/workflows/ruby.yml
CHANGED
@@ -1,20 +1,31 @@
|
|
1
|
-
name:
|
1
|
+
name: ruby
|
2
2
|
|
3
|
-
on:
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
pull_request:
|
6
|
+
branches:
|
7
|
+
- master
|
8
|
+
schedule:
|
9
|
+
- cron: '0 1 * * SUN'
|
4
10
|
|
5
11
|
jobs:
|
6
12
|
build:
|
7
|
-
|
8
13
|
runs-on: ubuntu-latest
|
9
|
-
|
14
|
+
strategy:
|
15
|
+
matrix:
|
16
|
+
ruby-version: [ '2.4', '2.5', '2.6', '2.7', '3.0', 'ruby-head' ]
|
17
|
+
name: ruby ${{ matrix.ruby-version }}
|
10
18
|
steps:
|
11
|
-
- uses: actions/checkout@
|
12
|
-
-
|
13
|
-
uses: actions/setup-ruby@v1
|
19
|
+
- uses: actions/checkout@v2
|
20
|
+
- uses: ruby/setup-ruby@v1
|
14
21
|
with:
|
15
|
-
ruby-version:
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
22
|
+
ruby-version: ${{ matrix.ruby-version }}
|
23
|
+
bundler-cache: true
|
24
|
+
- name: Install dependencies
|
25
|
+
run: bundle install
|
26
|
+
- name: Lint files
|
27
|
+
run: bundle exec rubocop
|
28
|
+
- name: Test with Rake
|
29
|
+
run: bundle exec rake
|
30
|
+
|
31
|
+
|
data/.rubocop.yml
CHANGED
data/Gemfile
CHANGED
data/README.md
CHANGED
@@ -1,17 +1,17 @@
|
|
1
1
|
# SAJ Collector
|
2
2
|
|
3
|
-
[](https://github.com/jwillemsen/saj_collector/actions)
|
4
4
|
[](https://www.codacy.com/app/jwillemsen/saj_collector?utm_source=github.com&utm_medium=referral&utm_content=jwillemsen/saj_collector&utm_campaign=badger)
|
5
|
-
[](
|
5
|
+
[](https://rubygems.org/gems/saj_collector)
|
6
6
|
|
7
|
-
Pull
|
7
|
+
Pull statistics from [SAJ Solar Inverter](https://www.saj-electric.com/) and push them to [PVOutput](https://pvoutput.org/). This
|
8
8
|
ruby gem is based on https://github.com/johnf/jfy_collector
|
9
9
|
|
10
10
|
## Installation
|
11
11
|
|
12
12
|
First install [ruby](https://www.ruby-lang.org) on your system through your favorite package manager. On Windows download and install ruby from [Rubyinstaller](http://www.rubyinstaller.org).
|
13
13
|
|
14
|
-
Install
|
14
|
+
Install saj_collector by running the following command from a linux shell or windows command prompt
|
15
15
|
|
16
16
|
gem install saj_collector
|
17
17
|
|
@@ -23,35 +23,34 @@ PVOutput system id (```system_id```) and PVOutput API key (```api_key```). These
|
|
23
23
|
system id and API key can be found on your
|
24
24
|
[PVOutput account page](https://pvoutput.org/account.jsp).
|
25
25
|
|
26
|
+
Some SAJ Solar Inverters provide the generation of each day with a granularity of 0.1kWh and some with
|
27
|
+
a granularity of 0.01kWh. In case of the last you have to change the ```day_trend_multiplication_factor```
|
28
|
+
within your ```saj_collector.yaml``` to 10. An incorrect ```day_trend_multiplication_factor``` triggers
|
29
|
+
a `Bad Post` exception when running the `saj_output_collector` script.
|
30
|
+
|
26
31
|
``` yaml
|
27
|
-
---
|
28
32
|
:saj: a.b.c.d
|
29
33
|
:system_id: 123456
|
30
34
|
:api_key: fb6a2e3
|
31
35
|
:day_trend_multiplication_factor: 100
|
32
36
|
```
|
33
37
|
|
34
|
-
Run the SAJ Collector
|
38
|
+
Run the SAJ Collector from the command prompt or shell
|
35
39
|
|
36
40
|
saj_collector
|
37
41
|
|
38
42
|
This will run the current power generation frm the SAJ Collector and push the
|
39
|
-
data
|
40
|
-
``saj_collector`` to your crontab or a custom script to let it automatically push with
|
41
|
-
a certain frequency.
|
43
|
+
data to PVOutput.
|
42
44
|
|
43
45
|
The SAJ Output Collector will retrieve the generation of each day of the current month and
|
44
|
-
push the data
|
45
|
-
Run the SAJ Output Collector in a screen or via init of some sort
|
46
|
+
push the data to PVOutput. Run the SAJ Output Collector from the command prompt or shell
|
46
47
|
|
47
48
|
saj_output_collector
|
48
49
|
|
49
|
-
|
50
|
-
a certain frequency.
|
50
|
+
## Scheduling the collector
|
51
51
|
|
52
|
-
|
53
|
-
a
|
54
|
-
within your ```saj_collector.yaml``` to 10.
|
52
|
+
On Linux you can add ``saj_collector`` and ``saj_output_collector`` to your crontab to let it automatically push with
|
53
|
+
a certain frequency.
|
55
54
|
|
56
55
|
At the moment you add any of these to your crontab you have to make sure
|
57
56
|
that the ``saj_collector.yaml`` file can be found. For example when you put the ``saj_collector.yaml`` file
|
@@ -60,6 +59,9 @@ add to your crontab
|
|
60
59
|
|
61
60
|
*/5 6-21 * * * cd /usr/local/bin && ruby /usr/local/bin/saj_collector
|
62
61
|
|
62
|
+
On Windows you can create a task using the Task Scheduler. Make sure that for the Action you specific the path
|
63
|
+
of the ``saj_collector.yaml`` file as ``Start in``.
|
64
|
+
|
63
65
|
## Development
|
64
66
|
|
65
67
|
After checking out the repo, run `bin/setup` to install dependencies.
|
data/Rakefile
CHANGED
data/exe/saj_collector
CHANGED
@@ -1,32 +1,40 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
+
# frozen_string_literal: true
|
2
3
|
|
3
4
|
require 'rexml/document'
|
4
5
|
require 'net/http'
|
5
6
|
require 'pvoutput/client'
|
6
7
|
require 'yaml'
|
8
|
+
require 'ipaddress'
|
9
|
+
|
10
|
+
yaml_file = 'saj_collector.yaml'
|
7
11
|
|
8
12
|
# Load the configuration from the yaml file
|
9
|
-
sajcollector_config = YAML.load_file(
|
13
|
+
sajcollector_config = YAML.load_file(yaml_file)
|
10
14
|
|
11
15
|
# Create a pvoutput with the configured system_id and api_key which both
|
12
16
|
# can be obtained from the pvoutput website
|
13
17
|
pvoutput = PVOutput::Client.new(sajcollector_config[:system_id], sajcollector_config[:api_key])
|
14
18
|
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
'power_generated' => 0, # Power generation in watts
|
19
|
-
'voltage' => 0, # Voltage in volts
|
20
|
-
'amperage' => 0, # Amperage
|
21
|
-
'power_today' => 0,
|
22
|
-
'power_all_time' => 0,
|
23
|
-
'runtime_today' => 0,
|
24
|
-
'runtime_all_time' => 0
|
25
|
-
}
|
19
|
+
unless IPAddress.valid?(sajcollector_config[:saj])
|
20
|
+
raise("[#{sajcollector_config[:saj]}] is not a valid IP address, please correct your #{yaml_file} file")
|
21
|
+
end
|
26
22
|
|
27
23
|
# Get the current realtime data from the SAJ device
|
28
24
|
c = Net::HTTP.get(sajcollector_config[:saj], '/real_time_data.xml')
|
29
25
|
|
26
|
+
options = {
|
27
|
+
temperature: 0, # Temperature in celcius
|
28
|
+
energy_generated: 0, # Energy generation in watt hours
|
29
|
+
power_generated: 0, # Power generation in watts
|
30
|
+
voltage: 0, # Voltage in volts
|
31
|
+
amperage: 0, # Amperage
|
32
|
+
power_today: 0,
|
33
|
+
power_all_time: 0,
|
34
|
+
runtime_today: 0,
|
35
|
+
runtime_all_time: 0
|
36
|
+
}
|
37
|
+
|
30
38
|
# Let REXML parse the XML site
|
31
39
|
doc = REXML::Document.new c
|
32
40
|
|
@@ -89,7 +97,7 @@ puts " Run Time: #{options[:runtime_all_time]} Hours"
|
|
89
97
|
|
90
98
|
pvoutput.add_status(
|
91
99
|
energy_generated: options[:energy_generated],
|
92
|
-
power_generated:
|
93
|
-
temperature:
|
94
|
-
voltage:
|
100
|
+
power_generated: options[:power_generated],
|
101
|
+
temperature: options[:temperature],
|
102
|
+
voltage: options[:voltage]
|
95
103
|
)
|
data/exe/saj_output_collector
CHANGED
@@ -1,17 +1,25 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
+
# frozen_string_literal: true
|
2
3
|
|
3
4
|
require 'rexml/document'
|
4
5
|
require 'net/http'
|
5
6
|
require 'pvoutput/client'
|
6
7
|
require 'yaml'
|
8
|
+
require 'ipaddress'
|
9
|
+
|
10
|
+
yaml_file = 'saj_collector.yaml'
|
7
11
|
|
8
12
|
# Load the configuration from the yaml file
|
9
|
-
sajcollector_config = YAML.load_file(
|
13
|
+
sajcollector_config = YAML.load_file(yaml_file)
|
10
14
|
|
11
15
|
# Create a pvoutput with the configured system_id and api_key which both
|
12
16
|
# can be obtained from the pvoutput website
|
13
17
|
pvoutput = PVOutput::Client.new(sajcollector_config[:system_id], sajcollector_config[:api_key])
|
14
18
|
|
19
|
+
unless IPAddress.valid?(sajcollector_config[:saj])
|
20
|
+
raise("[#{sajcollector_config[:saj]}] is not a valid IP address, please correct your #{yaml_file} file")
|
21
|
+
end
|
22
|
+
|
15
23
|
# Get the current day trend data from the SAJ device
|
16
24
|
c = Net::HTTP.get(sajcollector_config[:saj], '/day_trend.xml')
|
17
25
|
|
@@ -52,7 +60,8 @@ while counter < days
|
|
52
60
|
end
|
53
61
|
|
54
62
|
options.each do |date, values|
|
55
|
-
|
63
|
+
energy_generated = values[:energy_generated].to_i / 1000.0
|
64
|
+
puts "Energy generated #{date}: #{energy_generated} kWh"
|
56
65
|
end
|
57
66
|
|
58
67
|
pvoutput.add_batch_output(options)
|
data/lib/say_collector.rb
CHANGED
data/saj_collector.gemspec
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
lib = File.expand_path('lib', __dir__)
|
2
4
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
3
5
|
require 'saj_collector/version'
|
@@ -8,7 +10,7 @@ Gem::Specification.new do |spec|
|
|
8
10
|
spec.authors = ['Johnny Willemsen']
|
9
11
|
spec.email = ['jwillemsen@remedy.nl']
|
10
12
|
|
11
|
-
spec.summary = 'Pull
|
13
|
+
spec.summary = 'Pull statistics from SAJ Solar Inverter and push them to PVOutput'
|
12
14
|
spec.homepage = 'https://github.com/jwillemsen/saj_collector'
|
13
15
|
spec.license = 'MIT'
|
14
16
|
|
@@ -17,11 +19,14 @@ Gem::Specification.new do |spec|
|
|
17
19
|
spec.require_paths = ['lib']
|
18
20
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
19
21
|
|
20
|
-
spec.
|
22
|
+
spec.required_ruby_version = '>= 2.4'
|
23
|
+
|
24
|
+
spec.add_dependency 'ipaddress'
|
25
|
+
spec.add_dependency 'pvoutput', '>= 0.6'
|
21
26
|
|
22
27
|
spec.add_development_dependency 'bundler'
|
23
|
-
spec.add_development_dependency 'rake', '
|
28
|
+
spec.add_development_dependency 'rake', '>= 12.3.3'
|
24
29
|
spec.add_development_dependency 'rspec'
|
25
|
-
spec.add_development_dependency 'rubocop', '~>
|
30
|
+
spec.add_development_dependency 'rubocop', '~> 1.9.0'
|
26
31
|
spec.add_development_dependency 'rubocop-rspec'
|
27
32
|
end
|
metadata
CHANGED
@@ -1,29 +1,43 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: saj_collector
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Johnny Willemsen
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-02-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: ipaddress
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
13
27
|
- !ruby/object:Gem::Dependency
|
14
28
|
name: pvoutput
|
15
29
|
requirement: !ruby/object:Gem::Requirement
|
16
30
|
requirements:
|
17
|
-
- - "
|
31
|
+
- - ">="
|
18
32
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
33
|
+
version: '0.6'
|
20
34
|
type: :runtime
|
21
35
|
prerelease: false
|
22
36
|
version_requirements: !ruby/object:Gem::Requirement
|
23
37
|
requirements:
|
24
|
-
- - "
|
38
|
+
- - ">="
|
25
39
|
- !ruby/object:Gem::Version
|
26
|
-
version: 0.
|
40
|
+
version: '0.6'
|
27
41
|
- !ruby/object:Gem::Dependency
|
28
42
|
name: bundler
|
29
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -42,16 +56,16 @@ dependencies:
|
|
42
56
|
name: rake
|
43
57
|
requirement: !ruby/object:Gem::Requirement
|
44
58
|
requirements:
|
45
|
-
- - "
|
59
|
+
- - ">="
|
46
60
|
- !ruby/object:Gem::Version
|
47
|
-
version:
|
61
|
+
version: 12.3.3
|
48
62
|
type: :development
|
49
63
|
prerelease: false
|
50
64
|
version_requirements: !ruby/object:Gem::Requirement
|
51
65
|
requirements:
|
52
|
-
- - "
|
66
|
+
- - ">="
|
53
67
|
- !ruby/object:Gem::Version
|
54
|
-
version:
|
68
|
+
version: 12.3.3
|
55
69
|
- !ruby/object:Gem::Dependency
|
56
70
|
name: rspec
|
57
71
|
requirement: !ruby/object:Gem::Requirement
|
@@ -72,14 +86,14 @@ dependencies:
|
|
72
86
|
requirements:
|
73
87
|
- - "~>"
|
74
88
|
- !ruby/object:Gem::Version
|
75
|
-
version:
|
89
|
+
version: 1.9.0
|
76
90
|
type: :development
|
77
91
|
prerelease: false
|
78
92
|
version_requirements: !ruby/object:Gem::Requirement
|
79
93
|
requirements:
|
80
94
|
- - "~>"
|
81
95
|
- !ruby/object:Gem::Version
|
82
|
-
version:
|
96
|
+
version: 1.9.0
|
83
97
|
- !ruby/object:Gem::Dependency
|
84
98
|
name: rubocop-rspec
|
85
99
|
requirement: !ruby/object:Gem::Requirement
|
@@ -94,7 +108,7 @@ dependencies:
|
|
94
108
|
- - ">="
|
95
109
|
- !ruby/object:Gem::Version
|
96
110
|
version: '0'
|
97
|
-
description:
|
111
|
+
description:
|
98
112
|
email:
|
99
113
|
- jwillemsen@remedy.nl
|
100
114
|
executables:
|
@@ -104,16 +118,15 @@ extensions: []
|
|
104
118
|
extra_rdoc_files: []
|
105
119
|
files:
|
106
120
|
- ".github/FUNDING.yml"
|
121
|
+
- ".github/dependabot.yml"
|
107
122
|
- ".github/workflows/ruby.yml"
|
108
123
|
- ".rubocop.yml"
|
109
|
-
- ".travis.yml"
|
110
124
|
- CODE_OF_CONDUCT.md
|
111
125
|
- Gemfile
|
112
126
|
- LICENSE.txt
|
113
127
|
- README.md
|
114
128
|
- Rakefile
|
115
129
|
- bin/setup
|
116
|
-
- circle.yml
|
117
130
|
- exe/saj_collector
|
118
131
|
- exe/saj_output_collector
|
119
132
|
- lib/saj_collector/version.rb
|
@@ -123,7 +136,7 @@ homepage: https://github.com/jwillemsen/saj_collector
|
|
123
136
|
licenses:
|
124
137
|
- MIT
|
125
138
|
metadata: {}
|
126
|
-
post_install_message:
|
139
|
+
post_install_message:
|
127
140
|
rdoc_options: []
|
128
141
|
require_paths:
|
129
142
|
- lib
|
@@ -131,16 +144,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
131
144
|
requirements:
|
132
145
|
- - ">="
|
133
146
|
- !ruby/object:Gem::Version
|
134
|
-
version: '
|
147
|
+
version: '2.4'
|
135
148
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
136
149
|
requirements:
|
137
150
|
- - ">="
|
138
151
|
- !ruby/object:Gem::Version
|
139
152
|
version: '0'
|
140
153
|
requirements: []
|
141
|
-
|
142
|
-
|
143
|
-
signing_key:
|
154
|
+
rubygems_version: 3.0.8
|
155
|
+
signing_key:
|
144
156
|
specification_version: 4
|
145
|
-
summary: Pull
|
157
|
+
summary: Pull statistics from SAJ Solar Inverter and push them to PVOutput
|
146
158
|
test_files: []
|
data/.travis.yml
DELETED
@@ -1,35 +0,0 @@
|
|
1
|
-
before_install:
|
2
|
-
- gem install bundler
|
3
|
-
bundler_args: "--verbose"
|
4
|
-
script:
|
5
|
-
- bundle exec rake build
|
6
|
-
rvm:
|
7
|
-
- 2.3.1
|
8
|
-
- 2.4
|
9
|
-
- 2.5
|
10
|
-
- 2.6
|
11
|
-
- 2.7
|
12
|
-
- ruby-head
|
13
|
-
gemfile:
|
14
|
-
- Gemfile
|
15
|
-
matrix:
|
16
|
-
allow_failures:
|
17
|
-
- rvm: ruby-head
|
18
|
-
env:
|
19
|
-
matrix:
|
20
|
-
- CODECLIMATE_REPO_TOKEN=2b46019558c79326fc3cc87f2e4261610256aee236063c4b62b8ed8d2c2ce21d
|
21
|
-
global:
|
22
|
-
secure: pIBdjy8REKRp9GPVeR22JYu0GrCmS2d1rz7Yyxo9lV7yMKUQK2lQw5PQ1fQizxK1NryiNx5nrYJol/EC9a/MTp8rGAOVwEYv5C7gO/Ede/ADuOo7OUjCvI+a88hWNQqp04cZAeYLaX0Avdz/odbkXKHAH8HTt028f1REMKXH3CUm7CmqTEPlB96xXk8nSH8IAQZZlSw1Yu2bIP18h4m73USh9JM/nZbfY7lz2jCxLeinFFJl3ELkfAtvuuo6ptyuu7uZTpZd/9H6N0ddEFUFUcimZbXCcF21S3BdTX6eSyB1h66q17Tx6fi7/rQh+Jah8yhOrgjr+LLZoIAXosgBt/LnfN2V1MqJVqd/ajN9TBVp+mB/NV7z+nqcUNSEbleOpE9tTb4DHa3izA2cL17wuA0sxxNuvaUVbu1u4iFQNfEtiVmCdqZwAp9cXeD0x1RSLWUofn413xAzQBNiH/UxXwVFvZzUwtrlkzEUyYWtprm9RWyJEaEr1a4Tv5LhjmeaB2e9gwDzIT/RZaTfTswZzpbBsN3/dOeLhZkH4hCbN7Um2OBymQlVTNpZp/jRM/pEepMUdJjQ2SUU26/9B5Xqp3M01zUr2Z65djmyAkK3DkdLAzGo9FdWZW7VdDKLaO17TeDWizkQLD9pZUr1QfniYJzUxqYb7oqfekhtcDCMOag=
|
23
|
-
addons:
|
24
|
-
code_climate:
|
25
|
-
repo_token: 2b46019558c79326fc3cc87f2e4261610256aee236063c4b62b8ed8d2c2ce21d
|
26
|
-
after_success:
|
27
|
-
- bundle exec codeclimate-test-reporter
|
28
|
-
deploy:
|
29
|
-
provider: rubygems
|
30
|
-
api_key:
|
31
|
-
secure: YnibTFYFBn8XvyocId6wfKm3qCrVOprorIkKHEok4g8AOo3VHea9YxChmp2E/yvVqDdT9G7yKg3hn+JwuolYOIyGVSlS7AXOHguzHLcOI7iYwAd+RWFXDmn1MMFIX/tVV0oeRu8mNGbxNIbofI6DtExH0RHRHN0FTIqxPzH8Se0TbkHzznKkouwu55CU8ss7kh/CYPeFJOEyfCxZ+NNm1cdWocNkMbhPxT2FgsXGRlIMsABc/UpTMUR2mtmGqFUiwnIKvxkhI9qUEePfqHYU/IVGubwUjSE5LJRvOtAOdglj4QH4UZKlI2TJI6kq4a/1q7lZuAnONyqdlROrmBIjm9K9g9l0XvCBeReNpZoXRxIS+78F0H1GSCvxajaRfJYk0Po4RZ6JE2N8hhxSpqyMRHy2mVQiu5fBMXaZXcH7buIgiPY7KH+JFBgyGUqFR8a+8d0kKuX0Fz/sM1YmO2iATtP+CXqSotDWmU4nn8dMoEyvzvHlG5O49ZIlhG+ze6SlryWOlgiewEk8Gf+Nn3q5En1jgxAZTSPy5eyzQdT4RR4dysMy8p1BGCxIXyaKDDZVtk3n+00kG4VMLmrLehfrjalNY6NDAkOEO5Fc1OrQEYXKT/CHlA3R7iaZDqsblRgfpEDYTsXAffMobyggnrrWZRxrJppvITGCFOb6FFvYjKI=
|
32
|
-
gemspec: saj_collector.gemspec
|
33
|
-
on:
|
34
|
-
tags: true
|
35
|
-
repo: jwillemsen/saj_collector
|