Skip to content

Commit

Permalink
Removed celluloid, added concurrent-ruby and rubocop
Browse files Browse the repository at this point in the history
  • Loading branch information
gzigzigzeo committed Feb 25, 2016
1 parent 50e4899 commit 00d648a
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 5 deletions.
17 changes: 17 additions & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
require: rubocop-rspec

AllCops:
Include:
- ./Gemfile

Documentation:
Enabled: false

Style/StringLiterals:
EnforcedStyle: double_quotes

Style/ClassAndModuleChildren:
EnforcedStyle: compact

RSpec/FilePath:
Enabled: false
11 changes: 6 additions & 5 deletions sidekiq-grouping.gemspec
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'sidekiq/grouping/version'
require "sidekiq/grouping/version"

Gem::Specification.new do |spec|
spec.name = "sidekiq-grouping"
spec.version = Sidekiq::Grouping::VERSION
spec.authors = ["Victor Sokolov"]
spec.email = ["gzigzigzeo@gmail.com"]
spec.summary = %q{Allows identical sidekiq jobs to be processed with a single background call}
spec.summary = %q(
Allows identical sidekiq jobs to be processed with a single background call
)
spec.homepage = "http://github.com/gzigzigzeo/sidekiq-grouping"
spec.license = "MIT"

Expand All @@ -26,5 +27,5 @@ Gem::Specification.new do |spec|
spec.add_development_dependency "timecop"

spec.add_dependency "sidekiq"
spec.add_dependency "celluloid"
spec.add_dependency "concurrent-ruby"
end

0 comments on commit 00d648a

Please sign in to comment.