Sha256: ccce5d0c0ea7aef749f33f82539e7f73d924278919f399daf6c40016de2bcc5c

Contents?: true

Size: 797 Bytes

Versions: 1

Compression:

Stored size: 797 Bytes

Contents

# -*- encoding: utf-8 -*-
$:.push File.expand_path('../lib', __FILE__)
require 'combustion/version'

Gem::Specification.new do |s|
  s.name        = 'combustion'
  s.version     = Combustion::VERSION
  s.authors     = ['Pat Allan']
  s.email       = ['pat@freelancing-gods.com']
  s.homepage    = ''
  s.summary     = 'Elegant Rails Engine Testing'
  s.description = 'Test your Rails Engines without needing a full Rails app'

  s.rubyforge_project = 'combustion'

  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_runtime_dependency 'rails', '>= 3.0.0'
  s.add_runtime_dependency 'thor',  '>= 0.14.6'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
combustion-0.3.2 combustion.gemspec