From a832bc387bd80760f7a362664115f2e78085838e Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sun, 18 May 2014 11:44:28 +0200 Subject: Skeleton gem --- activejob.gemspec | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 activejob.gemspec (limited to 'activejob.gemspec') diff --git a/activejob.gemspec b/activejob.gemspec new file mode 100644 index 0000000000..201f3efb31 --- /dev/null +++ b/activejob.gemspec @@ -0,0 +1,20 @@ +Gem::Specification.new do |s| + s.platform = Gem::Platform::RUBY + s.name = 'activejob' + s.version = '4.2.0.alpha' + s.summary = 'Job framework with pluggable queues (will be part of Rails).' + s.description = 'Declare job classes that can be run by a variety of queueing backends.' + + s.required_ruby_version = '>= 1.9.3' + + s.license = 'MIT' + + s.author = 'David Heinemeier Hansson' + s.email = 'david@loudthinking.com' + s.homepage = 'http://www.rubyonrails.org' + + s.files = Dir['CHANGELOG.md', 'MIT-LICENSE', 'README.rdoc', 'lib/**/*'] + s.require_path = 'lib' + + s.add_dependency 'activesupport', '>= 4.1.0' +end -- cgit v1.2.3