recycle 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 139a82cedf10b7ee5dd55869d2cfb0423eb28149
4
+ data.tar.gz: f4a542f820e89bffe12a077b3dca7d013348880e
5
+ SHA512:
6
+ metadata.gz: 9f1c54477cc4457d09fa676f1d1b6fab43fdc89db1e5bee3994d85443f553607d3164e8c96c57cf67529e7e83df3788497ced228f1759995506e3da492fbe7d7
7
+ data.tar.gz: d77067d2deb4e250b3e57114c60d8c5a1beddc93867661f3fbfb72a7823b524e9c27b7aaadc77fe4ab47eef5b16fc2d6cf8a07c2562f2f0c696ca26bde89c06f
data/.gitignore ADDED
@@ -0,0 +1,11 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ tmp
11
+ .byebug_history
data/.travis.yml ADDED
@@ -0,0 +1,5 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.3.4
5
+ before_install: gem install bundler -v 1.15.1
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at jeremywrowe@users.noreply.github.com. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [http://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: http://contributor-covenant.org
74
+ [version]: http://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in recycle.gemspec
4
+ gemspec
data/Guardfile ADDED
@@ -0,0 +1,16 @@
1
+ guard :minitest do
2
+ watch('exe/recycle') { 'test' }
3
+ watch(%r{^test/(.*)\/?test_(.*)\.rb$})
4
+ watch(%r{^lib/(.*/)?([^/]+)\.rb$}) { |m| "test/#{m[1]}test_#{m[2]}.rb" }
5
+ watch(%r{^test/test_helper\.rb$}) { 'test' }
6
+ end
7
+
8
+ guard 'cucumber' do
9
+ watch('exe/recycle') { 'features' }
10
+ watch(%r{^features/.+\.feature$})
11
+ watch(%r{^features/support/.+$}) { 'features' }
12
+
13
+ watch(%r{^features/step_definitions/(.+)_steps\.rb$}) do |m|
14
+ Dir[File.join("**/#{m[1]}.feature")][0] || 'features'
15
+ end
16
+ end
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2017 Jeremy W. Rowe
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,18 @@
1
+ # Recycle
2
+
3
+ A quick little gem for managing shortcuts for navigation and quick little helper
4
+ functions. Often dot files can be frustrating to manage, this aims to remove
5
+ some of the frustration by adding an easy way of adding directory shortcuts
6
+ (through aliases) and helper functions for commands.
7
+
8
+ To use:
9
+
10
+ * install the gem
11
+ * run the command `recycle init`
12
+ * add the following to your shell
13
+ ```sh
14
+ eval "$(recycle exec)"
15
+ ```
16
+
17
+ This is still very much a work in progress, but give it a shot and open up pull
18
+ requests as you see fit.
data/Rakefile ADDED
@@ -0,0 +1,10 @@
1
+ require 'bundler/gem_tasks'
2
+ require 'rake/testtask'
3
+
4
+ Rake::TestTask.new(:test) do |t|
5
+ t.libs << 'test'
6
+ t.libs << 'lib'
7
+ t.test_files = FileList['test/**/*_test.rb']
8
+ end
9
+
10
+ task default: :test
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'bundler/setup'
4
+ require 'recycle'
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require 'irb'
14
+ IRB.start(__FILE__)
data/bin/cucumber ADDED
@@ -0,0 +1,18 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ #
5
+ # This file was generated by Bundler.
6
+ #
7
+ # The application 'cucumber' is installed as part of a gem, and
8
+ # this file is here to facilitate running it.
9
+ #
10
+
11
+ require 'pathname'
12
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile',
13
+ Pathname.new(__FILE__).realpath)
14
+
15
+ require 'rubygems'
16
+ require 'bundler/setup'
17
+
18
+ load Gem.bin_path('cucumber', 'cucumber')
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,2 @@
1
+ ---
2
+ format: progress
data/exe/recycle ADDED
@@ -0,0 +1,135 @@
1
+ #!/usr/bin/env ruby
2
+ require 'recycle'
3
+ require 'recycle/list'
4
+
5
+ require 'fileutils'
6
+ require 'rubygems'
7
+ require 'yaml'
8
+ require 'commander/import'
9
+
10
+ program :name, 'Recycle'
11
+ program :version, Recycle::VERSION
12
+ program :description, 'A command for storing frequently used commands.'
13
+
14
+ default_command :help
15
+
16
+ RECYCLE_HOME = File.join(ENV['RECYCLE_ROOT'] || Dir.home, '.recycle')
17
+ DATA_FILE = File.join(RECYCLE_HOME, 'data.yml')
18
+ RECYCLE_CONFIG = File.exists?(DATA_FILE) ? YAML.load_file(DATA_FILE) : {}
19
+
20
+ command :init do |cmd|
21
+ cmd.syntax = 'recycle init'
22
+ cmd.description = 'Setup the recycle storage directory. RECYCLE_ROOT env variable to change destination'
23
+ cmd.action do
24
+ FileUtils.mkdir_p(RECYCLE_HOME)
25
+ File.open(DATA_FILE, 'w') { |f| f.write RECYCLE_CONFIG.to_yaml }
26
+ end
27
+ end
28
+
29
+ command :list do |cmd|
30
+ cmd.syntax = 'recycle list <filter>'
31
+ cmd.description = 'List all recycle entire.'
32
+ cmd.option '-d', '--dir', String, 'Filters down to just directores'
33
+ cmd.option '-c', '--cmd', String, 'Filters down to just commands'
34
+
35
+ cmd.action do |args, options|
36
+ output = ''
37
+
38
+ commands = RECYCLE_CONFIG.fetch('commands', {})
39
+ directories = RECYCLE_CONFIG.fetch('directories', {})
40
+ show_all = !options.cmd && !options.dir
41
+ show_commands = (options.cmd || show_all) && commands.length.positive?
42
+ show_directories = (options.dir || show_all) && directories.length.positive?
43
+
44
+ puts Recycle::List.render_section('Commands', commands) if show_commands
45
+ puts Recycle::List.render_section('Directories', directories) if show_directories
46
+
47
+ unless show_commands || show_directories
48
+ output << <<~DOC
49
+ ================================================================================
50
+ #{"Usage".center(80).rstrip}
51
+ ================================================================================
52
+
53
+ recycle list - Lists out all entities
54
+ recycle list dir - Lists out directory entities
55
+ recycle list cmd - Lists out command entities
56
+ DOC
57
+ end
58
+ puts output
59
+ end
60
+ end
61
+
62
+ command :add do |cmd|
63
+ cmd.syntax = 'recycle add [OPTION]'
64
+ cmd.description = 'Add an entry.'
65
+ cmd.option '-d', '--dir "STRING"', String, 'Adds a directory entry'
66
+ cmd.option '-c', '--cmd "STRING"', String, 'Adds a command entry'
67
+
68
+ cmd.action do |args, options|
69
+ if !options.dir && !options.cmd
70
+ puts <<~DOC
71
+ ================================================================================
72
+ #{"Usage".center(80).rstrip}
73
+ ================================================================================
74
+
75
+ recycle add -c IDENTIFIER "value here" - adds the command named IDENTIFIER with the value provided in quotes
76
+ recycle add -d IDENTIFIER "value here" - adds the command named IDENTIFIER with the value provided in quotes
77
+ DOC
78
+ exit 1
79
+ end
80
+
81
+ if options.dir
82
+ (new_item = {})[options.dir] = args.first
83
+ RECYCLE_CONFIG["directories"].merge!(new_item)
84
+ end
85
+
86
+ if options.cmd
87
+ (new_item = {})[options.cmd] = args.first
88
+ RECYCLE_CONFIG["commands"].merge!(new_item)
89
+ end
90
+
91
+ File.open(DATA_FILE, 'w') { |f| f.write RECYCLE_CONFIG.to_yaml }
92
+ end
93
+ end
94
+
95
+ command :remove do |cmd|
96
+ cmd.syntax = 'recycle remove [OPTION]'
97
+ cmd.description = 'Remove an entry.'
98
+ cmd.option '-d', '--dir "STRING"', String, 'Removes a directory entry'
99
+ cmd.option '-c', '--cmd "STRING"', String, 'Removes a command entry'
100
+
101
+ cmd.action do |args, options|
102
+ if !options.dir && !options.cmd
103
+ puts <<~DOC
104
+ ================================================================================
105
+ #{"Usage".center(80).rstrip}
106
+ ================================================================================
107
+
108
+ recycle remove -c IDENTIFIER - removes the command named IDENTIFIER
109
+ recycle remove -d IDENTIFIER - removes the command named IDENTIFIER
110
+ DOC
111
+ exit 1
112
+ end
113
+ RECYCLE_CONFIG["directories"].delete(options.dir.strip) if options.dir
114
+ RECYCLE_CONFIG["commands"].delete(options.cmd.strip) if options.cmd
115
+ File.open(DATA_FILE, 'w') { |f| f.write RECYCLE_CONFIG.to_yaml }
116
+ end
117
+ end
118
+
119
+ command :exec do |cmd|
120
+ cmd.syntax = 'recycle exec'
121
+ cmd.description = 'Outputs all configuration in a shell consumable manner'
122
+ cmd.action do
123
+ RECYCLE_CONFIG.fetch('directories', {}).each do |key, value|
124
+ puts %|alias #{key}="cd #{value}"|
125
+ end
126
+
127
+ RECYCLE_CONFIG.fetch('commands', {}).each do |key, value|
128
+ puts <<~DOC
129
+ function #{key}() {
130
+ #{value}
131
+ }
132
+ DOC
133
+ end
134
+ end
135
+ end
@@ -0,0 +1,29 @@
1
+ require 'erb'
2
+
3
+ module Recycle
4
+ class List < BasicObject
5
+ TMPL = <<-DATA.freeze
6
+ <%= "=" * 80 %>
7
+ <%= title.center(80).rstrip %>
8
+ <%= "=" * 80 %>
9
+ <% sorted_content.each do |content| %>
10
+ <%= render_row(key_width, content.first, content.last) -%>
11
+ <% end %>
12
+
13
+ DATA
14
+
15
+ class << self
16
+ def render_section(title, content)
17
+ key_width = content.keys.map(&:length).max
18
+ sorted_content = content.sort_by { |key, _value| key }
19
+ ::ERB.new(TMPL, nil, '-').result(binding)
20
+ end
21
+
22
+ private
23
+
24
+ def render_row(key_width, key, value)
25
+ "#{key.ljust(key_width)} => #{value}"
26
+ end
27
+ end
28
+ end
29
+ end
@@ -0,0 +1,3 @@
1
+ module Recycle
2
+ VERSION = '0.1.0'.freeze
3
+ end
data/lib/recycle.rb ADDED
@@ -0,0 +1,4 @@
1
+ require 'recycle/version'
2
+
3
+ module Recycle
4
+ end
data/recycle.gemspec ADDED
@@ -0,0 +1,34 @@
1
+ # coding: utf-8
2
+
3
+ lib = File.expand_path('../lib', __FILE__)
4
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
+ require 'recycle/version'
6
+
7
+ Gem::Specification.new do |spec|
8
+ spec.name = 'recycle'
9
+ spec.version = Recycle::VERSION
10
+ spec.authors = ['Jeremy W. Rowe']
11
+ spec.email = ['jeremywrowe@users.noreply.github.com']
12
+
13
+ spec.summary = 'WIP'
14
+ spec.description = 'WIP'
15
+ spec.license = 'MIT'
16
+
17
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
18
+ f.match(%r{^(test|spec|features)/})
19
+ end
20
+ spec.bindir = 'exe'
21
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
22
+ spec.require_paths = ['lib']
23
+
24
+ spec.add_development_dependency 'commander', '~> 4.4.3'
25
+
26
+ spec.add_development_dependency 'bundler', '~> 1.15'
27
+ spec.add_development_dependency 'rake', '~> 10.0'
28
+ spec.add_development_dependency 'minitest', '~> 5.0'
29
+ spec.add_development_dependency 'guard'
30
+ spec.add_development_dependency 'guard-minitest'
31
+ spec.add_development_dependency 'guard-cucumber'
32
+ spec.add_development_dependency 'cucumber', '~> 2.4'
33
+ spec.add_development_dependency 'byebug'
34
+ end
metadata ADDED
@@ -0,0 +1,188 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: recycle
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Jeremy W. Rowe
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2017-07-08 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: commander
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 4.4.3
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 4.4.3
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.15'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.15'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '10.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '10.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: minitest
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '5.0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '5.0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: guard
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: guard-minitest
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: guard-cucumber
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: cucumber
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - "~>"
116
+ - !ruby/object:Gem::Version
117
+ version: '2.4'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - "~>"
123
+ - !ruby/object:Gem::Version
124
+ version: '2.4'
125
+ - !ruby/object:Gem::Dependency
126
+ name: byebug
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - ">="
130
+ - !ruby/object:Gem::Version
131
+ version: '0'
132
+ type: :development
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - ">="
137
+ - !ruby/object:Gem::Version
138
+ version: '0'
139
+ description: WIP
140
+ email:
141
+ - jeremywrowe@users.noreply.github.com
142
+ executables:
143
+ - recycle
144
+ extensions: []
145
+ extra_rdoc_files: []
146
+ files:
147
+ - ".gitignore"
148
+ - ".travis.yml"
149
+ - CODE_OF_CONDUCT.md
150
+ - Gemfile
151
+ - Guardfile
152
+ - LICENSE.txt
153
+ - README.md
154
+ - Rakefile
155
+ - bin/console
156
+ - bin/cucumber
157
+ - bin/setup
158
+ - config/cucumber.yml
159
+ - exe/recycle
160
+ - lib/recycle.rb
161
+ - lib/recycle/list.rb
162
+ - lib/recycle/version.rb
163
+ - recycle.gemspec
164
+ homepage:
165
+ licenses:
166
+ - MIT
167
+ metadata: {}
168
+ post_install_message:
169
+ rdoc_options: []
170
+ require_paths:
171
+ - lib
172
+ required_ruby_version: !ruby/object:Gem::Requirement
173
+ requirements:
174
+ - - ">="
175
+ - !ruby/object:Gem::Version
176
+ version: '0'
177
+ required_rubygems_version: !ruby/object:Gem::Requirement
178
+ requirements:
179
+ - - ">="
180
+ - !ruby/object:Gem::Version
181
+ version: '0'
182
+ requirements: []
183
+ rubyforge_project:
184
+ rubygems_version: 2.5.2
185
+ signing_key:
186
+ specification_version: 4
187
+ summary: WIP
188
+ test_files: []