Sha256: 6c6431e1c9fb8fdb092d358f7743e243b766fc69b3b4a5dff27f394a93be3e94

Contents?: true

Size: 1.25 KB

Versions: 1

Compression:

Stored size: 1.25 KB

Contents

# -*- encoding: utf-8 -*-

Gem::Specification.new do |gem|
  gem.authors       = ["John Firebaugh"]
  gem.email         = ["john.firebaugh@gmail.com"]
  gem.description   = %q{Unit test your Rails JavaScript with the mocha test framework and chai assertion library}
  gem.summary       = %q{Matcha is a Rails engine that allows you to test your JavaScript with the
mocha test framework and chai assertion library.

It is similar to Jasmine and Evergreen, but does not attempt to be framework
agnostic. By sticking with Rails, Matcha can take full advantage of features such as
the asset pipeline and engines.}
  gem.homepage      = "http://github.com/jfirebaugh/matcha"

  gem.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  gem.files         = `git ls-files`.split("\n")
  gem.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  gem.name          = "matcha"
  gem.require_paths = ["lib"]
  gem.version       = "0.9.0"

  gem.add_dependency "jquery-rails"
  gem.add_dependency "rails", "~> 3.1"
  gem.add_dependency "capybara"

  gem.add_development_dependency "rspec-rails"
  gem.add_development_dependency "capybara-firebug", "~> 1.1"
  gem.add_development_dependency "coffee-script"
  gem.add_development_dependency "ejs"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
matcha-0.9.0 matcha.gemspec