burg 0.3.0 → 0.4.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 +0 -4
  3. data/Rakefile +10 -0
  4. data/lib/burg/version.rb +1 -1
  5. metadata +2 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7d7f4537c75aa510de90e7c2a2c6bb69f4af0378d61b614ee7d76da1a1f732f8
4
- data.tar.gz: 6f9409a6644ec944f63868c275c2e176462330a14c2b07fafce55ea7510f0e17
3
+ metadata.gz: a45c624a85ed4c3d2548f28d3eb3b83f358af22b7a8f91f08fea74e8e67e532a
4
+ data.tar.gz: 60d71d624f1520b0fd19e15a833dd497232fc99c98bc364a59d5a3c43e2288dd
5
5
  SHA512:
6
- metadata.gz: ebd9b3f9a482d3949601d9e6cb54889c62ab735bda3e6c0091c312b60d56a4787eb7b227ef37e1856839e22d087b0191ed1c95b5855a7101c06b598850a352ff
7
- data.tar.gz: 4ecda71a63df8fb96827bc72bfdad1eef4c9d0991c23625f6202a3d935fc1357f9011f2a78313d42d1b29d94d66b5d70ab04ab4eb068788170179f534c68f68b
6
+ metadata.gz: 373977efb20a105aa0c4876dc2aa7c4c04880fe94334ae8c892ec5e06a424e31e0755173fcabe1b35f36f8a05d3f618a7d9708f073330edb688c04c9815f6e0a
7
+ data.tar.gz: 8aa7252a4e9a481d50d74ef28417840165ba07c8acc3c09f0bc3e2d0c3d08f2891b77a0a8d072852adbf1b3880930a8b9d2b505f4382fa029a49734c2d3c778b
data/README.md CHANGED
@@ -6,10 +6,6 @@ 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
-
13
9
  ## License
14
10
 
15
11
  The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
data/Rakefile ADDED
@@ -0,0 +1,10 @@
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]
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.3.0"
4
+ VERSION = "0.4.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.3.0
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jared Norman
@@ -48,6 +48,7 @@ files:
48
48
  - CODE_OF_CONDUCT.md
49
49
  - LICENSE.txt
50
50
  - README.md
51
+ - Rakefile
51
52
  - lib/burg.rb
52
53
  - lib/burg/app_loader.rb
53
54
  - lib/burg/app_loader_middleware.rb