Sha256: 41af89d4f553415711eaf80f133bec85372699c6ad589860c92745a2bb61582f
Contents?: true
Size: 871 Bytes
Versions: 3
Compression:
Stored size: 871 Bytes
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require 'resqutils/version' Gem::Specification.new do |s| s.name = "resqutils" s.version = Resqutils::VERSION s.platform = Gem::Platform::RUBY s.authors = ['Stitch Fix Engineering'] s.email = ['eng@stitchfix.com'] s.homepage = "http://tech.stitchfix.com" s.summary = "Utilities for using Resque in a Rails app" s.description = "Utilities for using Resque in a Rails app" s.rubyforge_project = "resqutils" s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } s.require_paths = ["lib"] s.add_dependency("resque") s.add_development_dependency("rake") s.add_development_dependency("rspec") end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
resqutils-1.1.0 | resqutils.gemspec |
resqutils-1.0.0 | resqutils.gemspec |
resqutils-0.0.1 | resqutils.gemspec |