Sha256: ade212c9be1f38492201aac35a115e75b659c77f8d42e4da628f5bdfc5c8602d

Contents?: true

Size: 1.15 KB

Versions: 1

Compression:

Stored size: 1.15 KB

Contents

# -*- 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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
fanforce-plugin-worker-1.6.0.rc1 fanforce-plugin-worker.gemspec