-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdelayed-method.gemspec
23 lines (20 loc) · 965 Bytes
/
delayed-method.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Gem::Specification.new do |s|
s.name = "delayed-method"
s.version = "0.4.0"
s.date = Time.now.strftime('%Y-%m-%d')
s.summary = "Allow you to quickly move a long call to background which then executed by resque"
s.homepage = "http://github.com/phuongnd08/delayed-method"
s.email = "phuongnd08@gmail"
s.authors = [ "Phuong Nguyen" ]
s.has_rdoc = false
s.files = %w( README.md Rakefile LICENSE )
s.files += Dir.glob("lib/**/*")
s.files += Dir.glob("test/**/*")
s.files += Dir.glob("spec/**/*")
s.add_dependency "resque"
s.add_development_dependency "redis_test"
s.add_development_dependency "rspec", "~> 2.0"
s.add_development_dependency "byebug"
s.add_development_dependency "activerecord"
s.description = "Allow you to quickly move a long call to background which then executed by resque"
end