├── .gitignore ├── CHANGELOG.md ├── Gemfile ├── README.md ├── Rakefile ├── arkency-command_bus.gemspec ├── bin ├── console └── setup ├── lib └── arkency │ ├── command_bus.rb │ └── command_bus │ ├── alias.rb │ └── version.rb └── spec ├── command_bus_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkency/command_bus/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkency/command_bus/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkency/command_bus/HEAD/Gemfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkency/command_bus/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | require "bundler/gem_tasks" 2 | -------------------------------------------------------------------------------- /arkency-command_bus.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkency/command_bus/HEAD/arkency-command_bus.gemspec -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkency/command_bus/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkency/command_bus/HEAD/bin/setup -------------------------------------------------------------------------------- /lib/arkency/command_bus.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkency/command_bus/HEAD/lib/arkency/command_bus.rb -------------------------------------------------------------------------------- /lib/arkency/command_bus/alias.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkency/command_bus/HEAD/lib/arkency/command_bus/alias.rb -------------------------------------------------------------------------------- /lib/arkency/command_bus/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkency/command_bus/HEAD/lib/arkency/command_bus/version.rb -------------------------------------------------------------------------------- /spec/command_bus_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkency/command_bus/HEAD/spec/command_bus_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkency/command_bus/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------