mirror of
https://github.com/mperham/sidekiq.git
synced 2022-11-09 13:52:34 -05:00
bundler
This commit is contained in:
parent
f6a2fc1a8c
commit
d8232072b3
5 changed files with 45 additions and 0 deletions
1
.rvmrc
Normal file
1
.rvmrc
Normal file
|
@ -0,0 +1 @@
|
|||
rvm use jruby@sidekiq --create
|
2
Gemfile
Normal file
2
Gemfile
Normal file
|
@ -0,0 +1,2 @@
|
|||
source 'http://rubygems.org'
|
||||
gemspec
|
20
Gemfile.lock
Normal file
20
Gemfile.lock
Normal file
|
@ -0,0 +1,20 @@
|
|||
PATH
|
||||
remote: .
|
||||
specs:
|
||||
sidekiq (0.1.0)
|
||||
connection_pool
|
||||
|
||||
GEM
|
||||
remote: http://rubygems.org/
|
||||
specs:
|
||||
connection_pool (0.1.0)
|
||||
minitest (2.10.0)
|
||||
rake (0.9.2.2)
|
||||
|
||||
PLATFORMS
|
||||
java
|
||||
|
||||
DEPENDENCIES
|
||||
minitest
|
||||
rake
|
||||
sidekiq!
|
3
lib/sidekiq/version.rb
Normal file
3
lib/sidekiq/version.rb
Normal file
|
@ -0,0 +1,3 @@
|
|||
module Sidekiq
|
||||
VERSION = "0.1.0"
|
||||
end
|
19
sidekiq.gemspec
Normal file
19
sidekiq.gemspec
Normal file
|
@ -0,0 +1,19 @@
|
|||
# -*- encoding: utf-8 -*-
|
||||
require File.expand_path('../lib/sidekiq/version', __FILE__)
|
||||
|
||||
Gem::Specification.new do |gem|
|
||||
gem.authors = ["Mike Perham"]
|
||||
gem.email = ["mperham@gmail.com"]
|
||||
gem.description = gem.summary = ""
|
||||
gem.homepage = ""
|
||||
|
||||
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
||||
gem.files = `git ls-files`.split("\n")
|
||||
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
||||
gem.name = "sidekiq"
|
||||
gem.require_paths = ["lib"]
|
||||
gem.version = Sidekiq::VERSION
|
||||
gem.add_dependency 'connection_pool'
|
||||
gem.add_development_dependency 'minitest'
|
||||
gem.add_development_dependency 'rake'
|
||||
end
|
Loading…
Add table
Reference in a new issue