# -*- encoding: utf-8 -*- lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'fanforce/plugin_worker/version' Gem::Specification.new do |gem| gem.name = 'fanforce-plugin-worker' gem.version = Fanforce::PluginWorker::VERSION gem.date = Time.now.utc.strftime('%Y-%m-%d') gem.summary = %q{Worker library to help Fanforce plugins with background processing} gem.authors = ['Caleb Clark'] gem.email = ['cclark@fanforce.com'] gem.homepage = 'http://github.com/fanforce/gem-plugin-worker' gem.files = `git ls-files`.split($/) gem.test_files = gem.files.grep(%r{^(test|spec|features)/}) gem.require_paths = ['lib'] gem.add_runtime_dependency 'iron_mq', '~> 5.0.1' gem.add_runtime_dependency 'iron_cache', '~> 1.4.2' gem.add_runtime_dependency 'uuid', '~> 2.3.7' gem.add_runtime_dependency 'activesupport', '~> 4.1.6' gem.add_runtime_dependency 'redis', '~> 3.1.0' gem.add_runtime_dependency 'multi_json', '>= 1.7.2' gem.add_runtime_dependency 'fanforce-base', '~> 1.6.0' gem.add_runtime_dependency 'fanforce-api', '~> 1.6.0' end