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 +4 -4
- data/README.md +1 -1
- data/lib/bun_bun_bundle/version.rb +1 -1
- metadata +1 -2
- data/lib/bun_bun_bundle/hanami.rb +0 -30
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ea8665deac6a402f47088b8de4ada9f2e1ac120c8f8b79d3ab6861be9f0efacb
|
|
4
|
+
data.tar.gz: 4068228abedaa595b1907dac059d4d28f037d3a4bed43bea2efa919e7289c092
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a555adeca44e5e838d44f0bd98e948582217baf3cf8d6382b7d7ff004621bb7b7a9efac0184faf82696dea5bfa169a9c650c93664f4c150cdaf7ff553d9cfc78
|
|
7
|
+
data.tar.gz: ffc2455cf858ac6ee545dedfcb82546b90ed35a61d1ea52a32f7d96cd54d16c0454df8f0417ec9df127105a3430ba94015f23d69c377ebd24876e49ed87845dd
|
data/README.md
CHANGED
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.
|
|
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
|