burg 0.2.0 → 0.3.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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +4 -0
  3. data/lib/burg/version.rb +1 -1
  4. metadata +1 -2
  5. data/Rakefile +0 -10
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 912b97a94d6115e8ce81684885bb9ca0654453cff84c4f1b84f9b4dce92ca678
4
- data.tar.gz: b095a0f6be28d357bbacc2fe12434b346e521f9008a257ff8459767860206611
3
+ metadata.gz: 7d7f4537c75aa510de90e7c2a2c6bb69f4af0378d61b614ee7d76da1a1f732f8
4
+ data.tar.gz: 6f9409a6644ec944f63868c275c2e176462330a14c2b07fafce55ea7510f0e17
5
5
  SHA512:
6
- metadata.gz: 21fc8f8cea1caf480c62fd82689b29b564a5518a5d69f7e8fac61d8154d8926b5f29e9dab12465460b3b9ec1ddcbf5e3798d510af79b16214ba6547a543ee502
7
- data.tar.gz: d30fe131fc41ef0fc30dd981b09b8a6af211b7a1256197e4752da278284b3754aeb531f038583a4abfbde41c00d7bd686e8fa718445bc3a74dbfc397ae4d83eb
6
+ metadata.gz: ebd9b3f9a482d3949601d9e6cb54889c62ab735bda3e6c0091c312b60d56a4787eb7b227ef37e1856839e22d087b0191ed1c95b5855a7101c06b598850a352ff
7
+ data.tar.gz: 4ecda71a63df8fb96827bc72bfdad1eef4c9d0991c23625f6202a3d935fc1357f9011f2a78313d42d1b29d94d66b5d70ab04ab4eb068788170179f534c68f68b
data/README.md CHANGED
@@ -6,6 +6,10 @@ Burg is the worst Ruby web framework. It's an experimental framework that's most
6
6
 
7
7
  Bug reports and pull requests are welcome [on GitHub](https://github.com/jarednorman/burg). This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/jarednorman/burg/blob/main/CODE_OF_CONDUCT.md).
8
8
 
9
+ ## Releasing
10
+
11
+ This project uses [bake-gem](https://github.com/ioquatix/bake-gem) for releasing. Run `bake gem:release:{patch,minor,major}` to cut a new release.
12
+
9
13
  ## License
10
14
 
11
15
  The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
data/lib/burg/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Burg
4
- VERSION = "0.2.0"
4
+ VERSION = "0.3.0"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: burg
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jared Norman
@@ -48,7 +48,6 @@ files:
48
48
  - CODE_OF_CONDUCT.md
49
49
  - LICENSE.txt
50
50
  - README.md
51
- - Rakefile
52
51
  - lib/burg.rb
53
52
  - lib/burg/app_loader.rb
54
53
  - lib/burg/app_loader_middleware.rb
data/Rakefile DELETED
@@ -1,10 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require "bundler/gem_tasks"
4
- require "rspec/core/rake_task"
5
-
6
- RSpec::Core::RakeTask.new(:spec)
7
-
8
- require "standard/rake"
9
-
10
- task default: %i[spec standard]