bun_bun_bundle 0.3.5 → 0.3.6

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: 1bb9590f4f3d07e85a9db1cf04c6a71e23b8a6ccb2a8b5fd64a867d5be370b17
4
- data.tar.gz: b9afcef3823bebe8b7042aaf23bc395dc9c5ce1594cfae40826f8b038fba8af1
3
+ metadata.gz: ea8665deac6a402f47088b8de4ada9f2e1ac120c8f8b79d3ab6861be9f0efacb
4
+ data.tar.gz: 4068228abedaa595b1907dac059d4d28f037d3a4bed43bea2efa919e7289c092
5
5
  SHA512:
6
- metadata.gz: 6727eabdfe950a26ab037110a7ff68251cf7f7c15c2b7d867c944c5386ddd6b38b5d571f80ee747add1f7cb957aebc1b6f940124cf9a02fce88fb225d75785cc
7
- data.tar.gz: edf32a9181f1f26fb0bbdf05eb9a5f604d2900cd232c0f450d3688e60da030a3d8008f22b7528bae848157fb93749f3e9ace937bc5c925ab170c1b2ee016020e
6
+ metadata.gz: a555adeca44e5e838d44f0bd98e948582217baf3cf8d6382b7d7ff004621bb7b7a9efac0184faf82696dea5bfa169a9c650c93664f4c150cdaf7ff553d9cfc78
7
+ data.tar.gz: ffc2455cf858ac6ee545dedfcb82546b90ed35a61d1ea52a32f7d96cd54d16c0454df8f0417ec9df127105a3430ba94015f23d69c377ebd24876e49ed87845dd
data/README.md CHANGED
@@ -84,7 +84,7 @@ replaces it entirely, you can clean up the default setup:
84
84
  ```ruby
85
85
  # config/app.rb
86
86
 
87
- require 'bun_bun_bundle/hanami'
87
+ require 'bun_bun_bundle'
88
88
 
89
89
  module MyApp
90
90
  class App < Hanami::App
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module BunBunBundle
4
- VERSION = '0.3.5'
4
+ VERSION = '0.3.6'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bun_bun_bundle
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.5
4
+ version: 0.3.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Wout Fierens
@@ -45,7 +45,6 @@ files:
45
45
  - lib/bun_bun_bundle.rb
46
46
  - lib/bun_bun_bundle/config.rb
47
47
  - lib/bun_bun_bundle/dev_cache_middleware.rb
48
- - lib/bun_bun_bundle/hanami.rb
49
48
  - lib/bun_bun_bundle/helpers.rb
50
49
  - lib/bun_bun_bundle/manifest.rb
51
50
  - lib/bun_bun_bundle/railtie.rb
@@ -1,30 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'bun_bun_bundle'
4
-
5
- module BunBunBundle
6
- # Hanami integration for BunBunBundle.
7
- #
8
- # Add to your Hanami app's config/app.rb:
9
- #
10
- # require 'bun_bun_bundle/hanami'
11
- #
12
- # module MyApp
13
- # class App < Hanami::App
14
- # BunBunBundle.setup(root: root, hanami: config)
15
- # end
16
- # end
17
- #
18
- # Then include helpers in your views:
19
- #
20
- # # app/views/helpers.rb
21
- # module MyApp
22
- # module Views
23
- # module Helpers
24
- # include BunBunBundle::Helpers
25
- # include BunBunBundle::ReloadTag
26
- # end
27
- # end
28
- # end
29
- #
30
- end