Initial commit
parents
Showing
.gitignore
0 → 100644
.idea/.rakeTasks
0 → 100644
.idea/activebunny.iml
0 → 100644
.idea/misc.xml
0 → 100644
.idea/modules.xml
0 → 100644
.idea/workspace.xml
0 → 100644
This diff is collapsed.
.ruby-version
0 → 100644
Gemfile
0 → 100644
source 'https://rubygems.org' | |||
git_source(:github) { |repo| "https://github.com/#{repo}.git" } | |||
# Declare your gem's dependencies in activebunny.gemspec. | |||
# Bundler will treat runtime dependencies like base dependencies, and | |||
# development dependencies will be added by default to the :development group. | |||
gemspec | |||
# Declare any dependencies that are still in development here instead of in | |||
# your gemspec. These might include edge Rails or gems from your path or | |||
# Git. Remember to move these dependencies to your gemspec before releasing | |||
# your gem to rubygems.org. | |||
# To use a debugger | |||
# gem 'byebug', group: [:development, :test] | |||
gem 'bunny', "~> 2.14" | |||
\ No newline at end of file |
Gemfile.lock
0 → 100644
MIT-LICENSE
0 → 100644
README.md
0 → 100644
Rakefile
0 → 100644
activebunny.gemspec
0 → 100644
$:.push File.expand_path("lib", __dir__) | |||
# Maintain your gem's version: | |||
require "active_bunny/version" | |||
# Describe your gem and declare its dependencies: | |||
Gem::Specification.new do |spec| | |||
spec.name = "activebunny" | |||
spec.version = ActiveBunny::VERSION | |||
spec.authors = ["Marcel Hoppe"] | |||
spec.email = ["marcel.hoppe@mni.thm.de"] | |||
spec.homepage = "http://TODO" | |||
spec.summary = "An easy to use framework for RabbitMQ integration into Rails" | |||
spec.description = "An easy to use framework for RabbitMQ integration into Rails" | |||
spec.license = "MIT" | |||
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host' | |||
# to allow pushing to a single host or delete this section to allow pushing to any host. | |||
if spec.respond_to?(:metadata) | |||
spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'" | |||
else | |||
raise "RubyGems 2.0 or newer is required to protect against " \ | |||
"public gem pushes." | |||
end | |||
spec.files = Dir["{lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"] | |||
spec.add_dependency("activesupport", ">= 5.0", "< 7") | |||
spec.add_dependency "bunny", "~> 2.14" | |||
spec.add_development_dependency "sqlite3" | |||
spec.add_development_dependency "rails", "~> 6.0.0.rc1" | |||
end |
bin/test
0 → 100755
lib/active_bunny.rb
0 → 100644
lib/active_bunny/basics.rb
0 → 100644
lib/active_bunny/railtie.rb
0 → 100644
lib/active_bunny/version.rb
0 → 100644
lib/activebunny.rb
0 → 100644
test/active_bunny_test.rb
0 → 100644