mushy 0.13.0 → 0.15.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: 85eb693e91e6a27ab2943d07ab5d4a7d3544c958793aac1830a3d03a81d98001
4
- data.tar.gz: be51f8e5b94fb4184c1e8f7ba037de1a5ae9901a0fd7ace4fc85e6cc182a864b
3
+ metadata.gz: 343c94c36c757047fef709db0c64a473801d54fe39ba456cf9b0e6957d7430f5
4
+ data.tar.gz: 0f05e6fa5fc57a3b4fde460f9985be9dfb70c908ee64bee0a6172303a2ceec46
5
5
  SHA512:
6
- metadata.gz: 8bc9319d1c55c581d91377c28ec526ec2215c66962eae0723cfa47eaca5599d6a5bebc439ce423864c37544e6b6250354235f14dddb182c370836c9a289ddd66
7
- data.tar.gz: '08efdce27c2820c503ef940224c9b27da0d4c88f11d3f837d50ca1ba99f062de019b1143dc4a3d5bf575b1789b9218c913315570ef00d82b7173c0cbbaa8299a'
6
+ metadata.gz: 10ca18bbbc7208c522314fa5ded9ce6ac6d0a892f2883ab582fb8b8ed7d462bdb958117a68dc23bf92390e81339642730086f72fd20b71cce78e14a4f3c5b875
7
+ data.tar.gz: bdbf5771353c39233d4107d1292ca51d5eec4a52ed849e592d7a9554acf7d5c3614b2bb58196edf185bd8e1df27dc12d2b69f94aad5a607345a49343a7488308
data/bin/mushy CHANGED
@@ -44,6 +44,11 @@ get '/' do
44
44
  Mushy::Builder::Index.file
45
45
  end
46
46
 
47
+ get '/bulma.css' do
48
+ content_type :css
49
+ Mushy::Builder::Bulma.file
50
+ end
51
+
47
52
  get '/dark.css' do
48
53
  content_type :css
49
54
  Mushy::Builder::Dark.file
@@ -96,7 +96,7 @@ module Mushy
96
96
 
97
97
  def self.get_fluxs
98
98
  {
99
- fluxs: Mushy::Flux.all.select { |x| x.respond_to? :details }.map do |flux|
99
+ fluxs: Mushy::Flux.all.select { |x| x.respond_to? :details }.select { |x| x.details }.map do |flux|
100
100
  details = flux.details
101
101
  details[:config][:incoming_split] = { type: 'text', shrink: true, description: 'Split an incoming event into multiple events by this key, an each event will be processed independently.', default: '' }
102
102
  details[:config][:outgoing_split] = { type: 'text', shrink: true, description: 'Split an outgoing event into multiple events by this key.', default: '' }