-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsimple_job.gemspec
31 lines (24 loc) · 955 Bytes
/
simple_job.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
require File.expand_path(File.join(File.dirname(__FILE__), 'lib', 'simple_job', 'version'))
Gem::Specification.new do |s|
# definition
s.name = %q{simple_job}
s.version = SimpleJob::VERSION
# details
s.date = %q{2012-01-10}
s.summary = %q{Support classes and modules for executable jobs.}
s.description = %q{Contains libraries that support defining, queueing, and executing jobs.}
s.authors = [ 'David Dawson' ]
s.email = %q{[email protected]}
s.homepage = %q{https://github.com/daws/simple_job}
s.require_paths = [ 'lib' ]
# documentation
s.has_rdoc = true
s.extra_rdoc_files = %w( README.rdoc CHANGELOG.rdoc LICENSE.txt )
s.rdoc_options = %w( --main README.rdoc )
# files to include
s.files = Dir[ 'lib/**/*.rb', 'README.rdoc', 'CHANGELOG.rdoc', 'LICENSE.txt' ]
# dependencies
s.add_dependency 'activemodel', '>= 3.0'
s.add_dependency 'activesupport', '>= 3.0'
s.add_dependency 'aws-sdk-v1', '~> 1.2'
end