forked from tatey/delayed-web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdelayed-web.gemspec
More file actions
24 lines (19 loc) · 962 Bytes
/
delayed-web.gemspec
File metadata and controls
24 lines (19 loc) · 962 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
$:.push File.expand_path('../lib', __FILE__)
require 'delayed/web/version'
Gem::Specification.new do |s|
s.name = 'delayed-web'
s.version = Delayed::Web::VERSION
s.authors = ['Derek Zak', 'Tate Johnson']
s.email = ['zak@arizonabay.com']
s.homepage = 'http://github.com/derekzak/delayed-web'
s.summary = 'A rails engine that provides a simple web interface for exposing the Delayed::Job queue.'
s.description = 'A rails engine that provides a simple web interface for exposing the Delayed::Job queue.'
s.license = 'MIT'
s.files = Dir['{app,config,lib,vendor}/**/*', 'CONTRIBUTING.md', 'LICENSE', 'Rakefile', 'README.md']
s.test_files = Dir['spec/**/*']
s.add_dependency 'rails', '>= 3.2.13'
s.add_development_dependency 'capybara', '~> 2.7.1'
s.add_development_dependency 'rspec-rails', '~> 3.5.2'
s.add_development_dependency 'sqlite3', '~> 1.3.6'
s.add_development_dependency 'listen'
end