forked from jfirebaugh/konacha
-
Notifications
You must be signed in to change notification settings - Fork 0
/
konacha.gemspec
40 lines (35 loc) · 1.75 KB
/
konacha.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# -*- encoding: utf-8 -*-
Gem::Specification.new do |gem|
gem.authors = ["John Firebaugh"]
gem.email = ["[email protected]"]
gem.summary = %q{Unit-test your Rails JavaScript with the mocha test framework and chai assertion library}
gem.description = %q{Konacha 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, Konacha can take full advantage of features such as
the asset pipeline and engines.}
gem.homepage = "http://github.com/jfirebaugh/konacha"
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 = "konacha"
gem.require_paths = ["lib"]
gem.version = "4.0.0"
gem.license = "MIT"
gem.add_dependency "railties", ">= 4.1", "< 6"
gem.add_dependency "actionpack", ">= 4.1", "< 6"
gem.add_dependency "sprockets", ">= 2", "< 4"
gem.add_dependency "sprockets-rails", ">= 2", "< 4"
gem.add_dependency "capybara"
gem.add_dependency "colorize"
gem.add_dependency "tilt"
gem.add_development_dependency "jquery-rails"
gem.add_development_dependency "rspec-rails", "~> 3.5", ">= 3.5.2"
gem.add_development_dependency "capybara-firebug", "~> 1.1"
gem.add_development_dependency "coffee-script"
gem.add_development_dependency "ejs"
gem.add_development_dependency "tzinfo"
gem.add_development_dependency "selenium-webdriver", "~> 2"
gem.add_development_dependency "poltergeist", "1.9.0"
gem.add_development_dependency "rails-controller-testing"
end