Skip to content

Commit

Permalink
Merge pull request #7 from fastlane/gemify
Browse files Browse the repository at this point in the history
gemify taskqueue
  • Loading branch information
taquitos authored Mar 23, 2018
2 parents 88c5dff + b5d4a66 commit 5b3f459
Show file tree
Hide file tree
Showing 8 changed files with 29 additions and 11 deletions.
8 changes: 2 additions & 6 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
source('https://rubygems.org')

group :development do
gem 'pry'
gem 'pry-byebug'
gem 'rspec'
gem 'rubocop'
end
gemspec

14 changes: 10 additions & 4 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
PATH
remote: .
specs:
taskqueue (0.0.0)

GEM
remote: https://rubygems.org/
specs:
ast (2.4.0)
byebug (10.0.0)
byebug (10.0.1)
coderay (1.1.2)
diff-lcs (1.3)
method_source (0.9.0)
parallel (1.12.1)
parser (2.5.0.2)
parser (2.5.0.4)
ast (~> 2.4.0)
powerpack (0.1.1)
pry (0.11.3)
Expand All @@ -30,9 +35,9 @@ GEM
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.7.0)
rspec-support (3.7.1)
rubocop (0.52.1)
rubocop (0.54.0)
parallel (~> 1.10)
parser (>= 2.4.0.2, < 3.0)
parser (>= 2.5)
powerpack (~> 0.1)
rainbow (>= 2.2.2, < 4.0)
ruby-progressbar (~> 1.7)
Expand All @@ -48,6 +53,7 @@ DEPENDENCIES
pry-byebug
rspec
rubocop
taskqueue!

BUNDLED WITH
1.16.1
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion specs/work_queue_spec.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
require_relative "../task_queue"
require_relative "../lib/task_queue"

class MockRecreatableTask
include TaskQueue::RecreatableTask
Expand Down
16 changes: 16 additions & 0 deletions taskqueue.gemspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
Gem::Specification.new do |s|
s.name = 'taskqueue'
s.version = '0.0.0'
s.date = '2018-03-20'
s.summary = "ruby implementation of a simple dispatch queue"
s.description = ""
s.authors = ["Joshua Liebowitz"]
s.email = '[email protected]'
s.files = ["lib/task.rb", "lib/task_queue.rb", "lib/queue_worker.rb", "lib/recreatable_task.rb"]
s.homepage = 'https://github.com/fastlane/taskqueue'
s.license = 'MIT'
s.add_development_dependency 'pry'
s.add_development_dependency 'pry-byebug'
s.add_development_dependency 'rspec'
s.add_development_dependency 'rubocop'
end

0 comments on commit 5b3f459

Please sign in to comment.