punk 0.0.3 → 0.1.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
2
  SHA256:
3
- metadata.gz: 6c5da76bf816d7620b6f5d967e347bd9dca73bedc06d92e6383ef7711ed1e5f6
4
- data.tar.gz: 71480cd4c971fa145027e29006287e8f4c4a04862ba61e5bc1a9cd3fb25ec4c5
3
+ metadata.gz: b20685bd423004b7d8c8091293801c235923c7cb96bf16ea79961ef5f56c47b6
4
+ data.tar.gz: ab0d42c7456f07a479e1d499c118496350e9782cbd6c3259b6948c5c70cb76fa
5
5
  SHA512:
6
- metadata.gz: bcdb8db68f2043c9f2edfc5d1331b78b6bd7d1a30a1ea2bfaec3c41e3b51f2a92b51c1cfdb8c74d93df2ebfdb9a328f7ca9b5c9d835e3b711c1c58a6a87ad6d9
7
- data.tar.gz: f15bc05aae04d83d95f966d2022107b658e1b9ad9ed89ec5fdca6effb624376a28eaa6f476e4079876daf5afe8783ca50bdcbb860a8ada32305e19aecc057836
6
+ metadata.gz: 73fc612da341d73697eea88330bd70c0fdefdeacb81e7cede617af1361cd689ce6d256522574da586b567791af60539f8ead0896f582321d2945542264db3849
7
+ data.tar.gz: 551975fa3830c030a92ad5ad0fe7e1cd06832040bd3ae83cb4ba71ff8ff2124db94809a521a0ce2dc2d178ab73b1bd9a914583196764937def4762abf8d56ec3
@@ -0,0 +1,26 @@
1
+ name: ship
2
+
3
+ on:
4
+ release:
5
+ types:
6
+ - published
7
+
8
+ jobs:
9
+ ship:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v2
13
+ - name: Set up Ruby
14
+ uses: ruby/setup-ruby@v1
15
+ with:
16
+ ruby-version: 2.5.8
17
+ bundler-cache: true
18
+ - name: Deploy to RubyGems
19
+ run: |
20
+ mkdir -p $HOME/.gem
21
+ touch $HOME/.gem/credentials
22
+ chmod 0600 $HOME/.gem/credentials
23
+ printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
24
+ bundle exec rake release
25
+ env:
26
+ GEM_HOST_API_KEY: "${{secrets.RUBYGEMS_AUTH_TOKEN}}"
@@ -0,0 +1,20 @@
1
+ name: test
2
+
3
+ on: [push, pull_request]
4
+
5
+ jobs:
6
+ test:
7
+ runs-on: ubuntu-latest
8
+ env:
9
+ PUNK_ENV: test
10
+ steps:
11
+ - uses: actions/checkout@v2
12
+ - name: Set up Ruby
13
+ uses: ruby/setup-ruby@v1
14
+ with:
15
+ ruby-version: 2.5.8
16
+ bundler-cache: true
17
+ - name: Lint files
18
+ run: bundle exec rubocop
19
+ - name: Run specs
20
+ run: bundle exec rspec
@@ -0,0 +1,243 @@
1
+ require:
2
+ - rubocop-rails
3
+ - rubocop-rspec
4
+
5
+ AllCops:
6
+ NewCops: enable
7
+ TargetRubyVersion: 2.5
8
+ DisplayCopNames: true
9
+ Exclude:
10
+ - "punk.gemspec"
11
+ - ".bundle/**/*"
12
+ - "vendor/**/*"
13
+ - "node_modules/**/*"
14
+
15
+ RSpec/DescribeMethod:
16
+ Exclude:
17
+ - spec/routes/**/*
18
+
19
+ RSpec/FilePath:
20
+ Exclude:
21
+ - spec/routes/**/*
22
+
23
+ Layout/EmptyLineAfterGuardClause:
24
+ Enabled: false
25
+
26
+ Layout/EmptyLinesAroundAttributeAccessor:
27
+ Enabled: true
28
+
29
+ Layout/ExtraSpacing:
30
+ AllowForAlignment: false
31
+
32
+ Layout/FirstHashElementIndentation:
33
+ EnforcedStyle: consistent
34
+
35
+ Layout/LineLength:
36
+ Enabled: false
37
+
38
+ Layout/SpaceAroundEqualsInParameterDefault:
39
+ EnforcedStyle: no_space
40
+
41
+ Layout/SpaceAroundMethodCallOperator:
42
+ Enabled: true
43
+
44
+ Layout/SpaceBeforeBrackets:
45
+ Enabled: false
46
+
47
+ Lint/BinaryOperatorWithIdenticalOperands:
48
+ Enabled: true
49
+
50
+ Lint/DeprecatedOpenSSLConstant:
51
+ Enabled: true
52
+
53
+ Lint/DuplicateElsifCondition:
54
+ Enabled: true
55
+
56
+ Lint/DuplicateRescueException:
57
+ Enabled: true
58
+
59
+ Lint/EmptyConditionalBody:
60
+ Enabled: true
61
+
62
+ Lint/FloatComparison:
63
+ Enabled: true
64
+
65
+ Lint/MissingSuper:
66
+ Enabled: true
67
+
68
+ Lint/MixedRegexpCaptureTypes:
69
+ Enabled: true
70
+
71
+ Lint/OutOfRangeRegexpRef:
72
+ Enabled: true
73
+
74
+ Lint/RaiseException:
75
+ Enabled: true
76
+
77
+ Lint/SelfAssignment:
78
+ Enabled: true
79
+
80
+ Lint/StructNewOverride:
81
+ Enabled: true
82
+
83
+ Lint/TopLevelReturnWithArgument:
84
+ Enabled: true
85
+
86
+ Lint/UnreachableLoop:
87
+ Enabled: true
88
+
89
+ Metrics/ParameterLists:
90
+ Enabled: false
91
+
92
+ Metrics/BlockLength:
93
+ Enabled: false
94
+
95
+ Metrics/MethodLength:
96
+ Enabled: false
97
+
98
+ Metrics/ClassLength:
99
+ Enabled: false
100
+
101
+ Metrics/ModuleLength:
102
+ Enabled: false
103
+
104
+ Metrics/AbcSize:
105
+ Enabled: false
106
+
107
+ Metrics/CyclomaticComplexity:
108
+ Enabled: false
109
+
110
+ Metrics/PerceivedComplexity:
111
+ Enabled: false
112
+
113
+ Naming/MethodParameterName:
114
+ Enabled: false
115
+
116
+ RSpec/EmptyExampleGroup:
117
+ Enabled: false
118
+
119
+ RSpec/MultipleExpectations:
120
+ Max: 2
121
+
122
+ Style/AccessorGrouping:
123
+ Enabled: true
124
+
125
+ Rails/ActiveRecordCallbacksOrder:
126
+ Enabled: true
127
+
128
+ Style/ArrayCoercion:
129
+ Enabled: true
130
+
131
+ Style/AsciiComments:
132
+ Enabled: false
133
+
134
+ Style/BisectedAttrAccessor:
135
+ Enabled: true
136
+
137
+ Style/CaseLikeIf:
138
+ Enabled: true
139
+
140
+ Style/Documentation:
141
+ Enabled: false
142
+
143
+ Style/ExplicitBlockArgument:
144
+ Enabled: false
145
+
146
+ Style/ExponentialNotation:
147
+ Enabled: true
148
+
149
+ Style/GlobalStdStream:
150
+ Enabled: true
151
+
152
+ Style/HashAsLastArrayItem:
153
+ Enabled: true
154
+
155
+ Style/HashEachMethods:
156
+ Enabled: true
157
+
158
+ Style/HashLikeCase:
159
+ Enabled: true
160
+
161
+ Style/HashTransformKeys:
162
+ Enabled: true
163
+
164
+ Style/HashTransformValues:
165
+ Enabled: true
166
+
167
+ Style/OptionalBooleanParameter:
168
+ Enabled: true
169
+
170
+ Style/ParallelAssignment:
171
+ Enabled: false
172
+
173
+ Style/RedundantAssignment:
174
+ Enabled: true
175
+
176
+ Style/RedundantFetchBlock:
177
+ Enabled: true
178
+
179
+ Style/RedundantFileExtensionInRequire:
180
+ Enabled: true
181
+
182
+ Style/RedundantRegexpCharacterClass:
183
+ Enabled: true
184
+
185
+ Style/RedundantRegexpEscape:
186
+ Enabled: true
187
+
188
+ Style/RegexpLiteral:
189
+ Enabled: false
190
+
191
+ Style/SingleArgumentDig:
192
+ Enabled: true
193
+
194
+ Style/SlicingWithRange:
195
+ Enabled: true
196
+
197
+ Style/StringConcatenation:
198
+ Enabled: true
199
+
200
+ Style/StringLiterals:
201
+ Enabled: false
202
+
203
+ Style/SymbolArray:
204
+ Enabled: false
205
+
206
+ Style/WordArray:
207
+ Enabled: false
208
+
209
+ Rails/FindById:
210
+ Enabled: true
211
+
212
+ Rails/Inquiry:
213
+ Enabled: true
214
+
215
+ Rails/MailerName:
216
+ Enabled: true
217
+
218
+ Rails/MatchRoute:
219
+ Enabled: true
220
+
221
+ Rails/NegateInclude:
222
+ Enabled: true
223
+
224
+ Rails/Pluck:
225
+ Enabled: true
226
+
227
+ Rails/PluckInWhere:
228
+ Enabled: true
229
+
230
+ Rails/RenderInline:
231
+ Enabled: true
232
+
233
+ Rails/RenderPlainText:
234
+ Enabled: true
235
+
236
+ Rails/ShortI18n:
237
+ Enabled: true
238
+
239
+ Rails/SkipsModelValidations:
240
+ Enabled: false
241
+
242
+ Rails/WhereExists:
243
+ Enabled: true
data/Gemfile CHANGED
@@ -89,6 +89,7 @@ gem 'phony', '~> 2.18'
89
89
 
90
90
  # Development
91
91
  group :development do
92
+ gem 'bundler', '~> 1.17'
92
93
  gem 'gemfile_updater', '~> 0.1'
93
94
  gem 'juwelier', '~> 2.4'
94
95
  end
@@ -292,6 +292,7 @@ DEPENDENCIES
292
292
  activesupport (~> 6.1)
293
293
  amazing_print (~> 1.2)
294
294
  bootsnap (~> 1.5)
295
+ bundler (~> 1.17)
295
296
  byebug (~> 11.1)
296
297
  capybara (~> 3.34)
297
298
  commander (~> 4.5)
data/README.md CHANGED
@@ -1,3 +1,5 @@
1
+ [![test](https://github.com/kranzky/punk/workflows/test/badge.svg)](https://github.com/kranzky/punk/actions?query=workflow%3Atest)
2
+ [![ship](https://github.com/kranzky/punk/workflows/ship/badge.svg)](https://github.com/kranzky/punk/actions?query=workflow%3Aship)
1
3
  [![Gem Version](https://badge.fury.io/rb/punk.svg)](https://badge.fury.io/rb/punk)
2
4
 
3
5
  # Punk!
data/Rakefile CHANGED
@@ -1,23 +1,22 @@
1
- # encoding: utf-8
1
+ # frozen_string_literal: true
2
2
 
3
3
  require 'rubygems'
4
4
  require 'bundler'
5
5
  begin
6
6
  Bundler.setup(:default, :development)
7
7
  rescue Bundler::BundlerError => e
8
- $stderr.puts e.message
9
- $stderr.puts "Run `bundle install` to install missing gems"
8
+ warn e.message
9
+ warn "Run `bundle install` to install missing gems"
10
10
  exit e.status_code
11
11
  end
12
12
  require 'rake'
13
13
  require 'juwelier'
14
14
  Juwelier::Tasks.new do |gem|
15
- # gem is a Gem::Specification... see http://guides.rubygems.org/specification-reference/ for more options
16
15
  gem.name = "punk"
17
16
  gem.homepage = "https://github.com/kranzky/punk"
18
- gem.license = "UNLICENSE"
19
- gem.summary = %Q{Punk! is an omakase web framework for rapid prototyping.}
20
- gem.description = %Q{}
17
+ gem.license = "Unlicense"
18
+ gem.summary = "Punk! is an omakase web framework for rapid prototyping."
19
+ gem.description = ""
21
20
  gem.email = "lloyd@kranzky.com"
22
21
  gem.authors = ["Lloyd Kranzky"]
23
22
  gem.required_ruby_version = ">= 2.1"
@@ -28,4 +27,4 @@ Juwelier::RubygemsDotOrgTasks.new
28
27
  require 'yard'
29
28
  YARD::Rake::YardocTask.new
30
29
 
31
- task :default => :clean
30
+ task default: :clean
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.3
1
+ 0.1.0
data/bin/punk CHANGED
@@ -2,7 +2,6 @@
2
2
 
3
3
  # frozen_string_literal: true
4
4
 
5
- require 'rubygems'
6
5
  require 'bundler/setup'
7
6
  require 'commander/import'
8
7
  require_relative '../lib/punk'
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env bash
2
+
3
+ export DATABASE_URL='postgres://localhost/punk_test'
4
+ export MEMCACHIER_SERVERS='localhost:11211'
5
+ export COOKIE_SECRET='20b065932a09ca10a67b02a049695177bd9b1aa75bd2cf9755e62b9a7e64daeefebec4edc2a91b2be08f7899fa9e48aca6f67d4f045d34e83213566d7dde249c'
@@ -24,7 +24,7 @@ PUNK::Command.create "PATCH" do
24
24
  "PATH_INFO" => args[0],
25
25
  "CONTENT_TYPE" => "text/json",
26
26
  "SCRIPT_NAME" => "",
27
- "rack.input" => StringIO.new(args[1..].join)
27
+ "rack.input" => StringIO.new(args[1..-1].join)
28
28
  )
29
29
  end
30
30
  end
@@ -38,7 +38,7 @@ PUNK::Command.create "POST" do
38
38
  "PATH_INFO" => args[0],
39
39
  "CONTENT_TYPE" => "text/json",
40
40
  "SCRIPT_NAME" => "",
41
- "rack.input" => StringIO.new(args[1..].join)
41
+ "rack.input" => StringIO.new(args[1..-1].join)
42
42
  )
43
43
  end
44
44
  end
@@ -52,7 +52,7 @@ PUNK::Command.create "PUT" do
52
52
  "PATH_INFO" => args[0],
53
53
  "CONTENT_TYPE" => "text/json",
54
54
  "SCRIPT_NAME" => "",
55
- "rack.input" => StringIO.new(args[1..].join)
55
+ "rack.input" => StringIO.new(args[1..-1].join)
56
56
  )
57
57
  end
58
58
  end
@@ -36,7 +36,7 @@ module PUNK
36
36
  if File.exist?(index_path)
37
37
  File.read(index_path)
38
38
  else
39
- <<~EOF
39
+ <<~INDEX_HTML
40
40
  <!DOCTYPE html>
41
41
  <html>
42
42
  <head>
@@ -47,7 +47,7 @@ module PUNK
47
47
  <p>Are you <a href="https://github.com/kranzky/lets-punk">ready</a> to rock?</p>
48
48
  </body>
49
49
  </html>
50
- EOF
50
+ INDEX_HTML
51
51
  end
52
52
 
53
53
  plugin :sessions, secret: [PUNK.get.cookie.secret].pack('H*'),
@@ -89,7 +89,7 @@ module PUNK
89
89
  def require_session!
90
90
  begin
91
91
  # TODO
92
- @_current_session = nil #Session[request.session['session_id']]
92
+ @_current_session = nil # Session[request.session['session_id']]
93
93
  if @_current_session&.active?
94
94
  @_current_session.touch
95
95
  else
@@ -193,8 +193,8 @@ module PUNK
193
193
  logger.info "Started #{name} for #{request.ip}", params.deep_symbolize_keys.sanitize.inspect
194
194
  logger.trace request.env['HTTP_USER_AGENT']
195
195
  # TODO
196
- # logger.info "Started #{name} for #{request.ip || Session.default_values[:remote_addr].to_s}", params.deep_symbolize_keys.sanitize.inspect
197
- # logger.trace request.env['HTTP_USER_AGENT'] || Session.default_values[:user_agent]
196
+ # logger.info "Started #{name} for #{request.ip || Session.default_values[:remote_addr].to_s}", params.deep_symbolize_keys.sanitize.inspect
197
+ # logger.trace request.env['HTTP_USER_AGENT'] || Session.default_values[:user_agent]
198
198
  logger.trace request.env['HTTP_COOKIE']
199
199
  logger.push_tags(name)
200
200
  _set_cookie(request.env)
@@ -6,11 +6,11 @@ command :test do |c|
6
6
  say('Running tests...')
7
7
  unless ENV['PUNK_ENV'] == 'test'
8
8
  error('!!! PUNK_ENV should be test !!!')
9
- exit 1
9
+ exit 1 # rubocop:disable Rails/Exit
10
10
  end
11
11
  ENV.delete_if { |name, _value| name =~ /^PUNK_/ }
12
12
  system('rubocop') &&
13
- # system('quasar build -m pwa') && TODO
13
+ # system('quasar build -m pwa') && TODO
14
14
  system('PUNK_ENV=test rspec')
15
15
  exit $CHILD_STATUS.exitstatus # rubocop:disable Rails/Exit
16
16
  end
@@ -12,7 +12,7 @@ module PUNK
12
12
 
13
13
  def method_missing(key, *args, &block)
14
14
  val = super
15
- val = val.to_h if val.class == self.class || val.class.instance_of?(self.class)
15
+ val = val.to_h if val.instance_of?(self.class)
16
16
  val
17
17
  end
18
18
 
@@ -2,16 +2,16 @@
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
3
  # Instead, edit Juwelier::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
- # stub: punk 0.0.3 ruby lib
5
+ # stub: punk 0.1.0 ruby lib
6
6
 
7
7
  Gem::Specification.new do |s|
8
8
  s.name = "punk".freeze
9
- s.version = "0.0.3"
9
+ s.version = "0.1.0"
10
10
 
11
11
  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
12
12
  s.require_paths = ["lib".freeze]
13
13
  s.authors = ["Lloyd Kranzky".freeze]
14
- s.date = "2021-01-08"
14
+ s.date = "2021-01-09"
15
15
  s.description = "".freeze
16
16
  s.email = "lloyd@kranzky.com".freeze
17
17
  s.executables = ["punk".freeze]
@@ -21,6 +21,9 @@ Gem::Specification.new do |s|
21
21
  ]
22
22
  s.files = [
23
23
  ".document",
24
+ ".github/workflows/ship.yml",
25
+ ".github/workflows/test.yml",
26
+ ".rubocop.yml",
24
27
  "Gemfile",
25
28
  "Gemfile.lock",
26
29
  "LICENSE",
@@ -28,6 +31,7 @@ Gem::Specification.new do |s|
28
31
  "Rakefile",
29
32
  "VERSION",
30
33
  "bin/punk",
34
+ "env/test.sh",
31
35
  "lib/punk.rb",
32
36
  "lib/punk/commands/auth.rb",
33
37
  "lib/punk/commands/generate.rb",
@@ -94,7 +98,7 @@ Gem::Specification.new do |s|
94
98
  "punk.gemspec"
95
99
  ]
96
100
  s.homepage = "https://github.com/kranzky/punk".freeze
97
- s.licenses = ["UNLICENSE".freeze]
101
+ s.licenses = ["Unlicense".freeze]
98
102
  s.required_ruby_version = Gem::Requirement.new(">= 2.1".freeze)
99
103
  s.rubygems_version = "3.0.9".freeze
100
104
  s.summary = "Punk! is an omakase web framework for rapid prototyping.".freeze
@@ -142,6 +146,7 @@ Gem::Specification.new do |s|
142
146
  s.add_runtime_dependency(%q<sentry-raven>.freeze, ["~> 3.1"])
143
147
  s.add_runtime_dependency(%q<skylight>.freeze, ["~> 4.3"])
144
148
  s.add_runtime_dependency(%q<phony>.freeze, ["~> 2.18"])
149
+ s.add_development_dependency(%q<bundler>.freeze, ["~> 1.17"])
145
150
  s.add_development_dependency(%q<gemfile_updater>.freeze, ["~> 0.1"])
146
151
  s.add_development_dependency(%q<juwelier>.freeze, ["~> 2.4"])
147
152
  s.add_development_dependency(%q<amazing_print>.freeze, ["~> 1.2"])
@@ -188,6 +193,7 @@ Gem::Specification.new do |s|
188
193
  s.add_dependency(%q<sentry-raven>.freeze, ["~> 3.1"])
189
194
  s.add_dependency(%q<skylight>.freeze, ["~> 4.3"])
190
195
  s.add_dependency(%q<phony>.freeze, ["~> 2.18"])
196
+ s.add_dependency(%q<bundler>.freeze, ["~> 1.17"])
191
197
  s.add_dependency(%q<gemfile_updater>.freeze, ["~> 0.1"])
192
198
  s.add_dependency(%q<juwelier>.freeze, ["~> 2.4"])
193
199
  s.add_dependency(%q<amazing_print>.freeze, ["~> 1.2"])
@@ -235,6 +241,7 @@ Gem::Specification.new do |s|
235
241
  s.add_dependency(%q<sentry-raven>.freeze, ["~> 3.1"])
236
242
  s.add_dependency(%q<skylight>.freeze, ["~> 4.3"])
237
243
  s.add_dependency(%q<phony>.freeze, ["~> 2.18"])
244
+ s.add_dependency(%q<bundler>.freeze, ["~> 1.17"])
238
245
  s.add_dependency(%q<gemfile_updater>.freeze, ["~> 0.1"])
239
246
  s.add_dependency(%q<juwelier>.freeze, ["~> 2.4"])
240
247
  s.add_dependency(%q<amazing_print>.freeze, ["~> 1.2"])
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: punk
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lloyd Kranzky
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-01-08 00:00:00.000000000 Z
11
+ date: 2021-01-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bootsnap
@@ -556,6 +556,20 @@ dependencies:
556
556
  - - "~>"
557
557
  - !ruby/object:Gem::Version
558
558
  version: '2.18'
559
+ - !ruby/object:Gem::Dependency
560
+ name: bundler
561
+ requirement: !ruby/object:Gem::Requirement
562
+ requirements:
563
+ - - "~>"
564
+ - !ruby/object:Gem::Version
565
+ version: '1.17'
566
+ type: :development
567
+ prerelease: false
568
+ version_requirements: !ruby/object:Gem::Requirement
569
+ requirements:
570
+ - - "~>"
571
+ - !ruby/object:Gem::Version
572
+ version: '1.17'
559
573
  - !ruby/object:Gem::Dependency
560
574
  name: gemfile_updater
561
575
  requirement: !ruby/object:Gem::Requirement
@@ -650,6 +664,9 @@ extra_rdoc_files:
650
664
  - README.md
651
665
  files:
652
666
  - ".document"
667
+ - ".github/workflows/ship.yml"
668
+ - ".github/workflows/test.yml"
669
+ - ".rubocop.yml"
653
670
  - Gemfile
654
671
  - Gemfile.lock
655
672
  - LICENSE
@@ -657,6 +674,7 @@ files:
657
674
  - Rakefile
658
675
  - VERSION
659
676
  - bin/punk
677
+ - env/test.sh
660
678
  - lib/punk.rb
661
679
  - lib/punk/commands/auth.rb
662
680
  - lib/punk/commands/generate.rb
@@ -723,7 +741,7 @@ files:
723
741
  - punk.gemspec
724
742
  homepage: https://github.com/kranzky/punk
725
743
  licenses:
726
- - UNLICENSE
744
+ - Unlicense
727
745
  metadata: {}
728
746
  post_install_message:
729
747
  rdoc_options: []