spree_zones
spree_zone_members
spree_wrap_surface_aspect_ratios
spree_trackers
spree_tax_rates
spree_tax_categories
spree_styles
spree_states
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require_relative "../../automated_init" | |
| context "Handle Commands" do | |
| context "Added" do | |
| context "Writes Added event" do | |
| id = Controls::Account.id | |
| account = Controls::Account::New.example | |
| add = Controls::Commands::Add.example | |
| time = Controls::Time::Processed.example |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module Fixtures | |
| class EventWritten | |
| include TestBench::Fixture | |
| attr_accessor :stream_name | |
| attr_accessor :values | |
| attr_accessor :command | |
| attr_accessor :expected_version | |
| attr_accessor :command_attributes |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| defmodule Autobot.Redis do | |
| import Exredis | |
| def start_link do | |
| Agent.start_link(fn -> | |
| {:ok, client} = Exredis.start_link | |
| client | |
| end, name: __MODULE__) | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var webpack = require('webpack'); | |
| var path = require('path'); | |
| var ManifestPlugin = require('webpack-manifest-plugin') | |
| function root(fragment){ | |
| return path.join(__dirname, "client", fragment); | |
| } | |
| module.exports = { | |
| devtool: 'source-map', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def include_js(file) | |
| @_js_includes ||= {} | |
| @_js_includes[file] ||= begin | |
| manifest_path = Rails.root.join('public', 'assets', 'manifest.json') | |
| if File.exist?(manifest_path) | |
| manifest = JSON.parse(File.read(manifest_path)) | |
| path = "/assets/#{manifest[file]}" | |
| else | |
| path = "http://127.0.0.1:8080/#{file}" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import sublime | |
| import sublime_plugin | |
| import re | |
| """ | |
| ___ __ __ __ ________ __ __ | |
| / | ____/ /___/ / / /_____ / ____/ /___ / /_ ____ _/ /____ | |
| / /| |/ __ / __ / / __/ __ \ / / __/ / __ \/ __ \/ __ `/ / ___/ | |
| / ___ / /_/ / /_/ / / /_/ /_/ / / /_/ / / /_/ / /_/ / /_/ / (__ ) | |
| /_/ |_\__,_/\__,_/ \__/\____/ \____/_/\____/_.___/\__,_/_/____/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let g:gist_clip_command = 'pbcopy' | |
| let g:gist_detect_filetype = 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (defn build-routes | |
| [{:keys [bus queues] :as app-data}] | |
| (routes | |
| (GET "/data" req | |
| ; get an http-kit websocket channel for this request | |
| (http/with-channel req req-ch | |
| ; make a channel for subscriptions to the data updated event bus | |
| (let [metrics (async/chan)] | |
| ; subscribed to all messages in the updated topic | |
| (async/sub bus :updated metrics) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (defn- deref2 [_ p] @p) | |
| (defn gather! | |
| [{:keys [queues]}] | |
| (send queues deref2 (rabbit/get-queues))) |