-
Notifications
You must be signed in to change notification settings - Fork 112
Expand file tree
/
Copy pathkonacha.gemspec
More file actions
39 lines (34 loc) · 1.68 KB
/
Copy pathkonacha.gemspec
File metadata and controls
39 lines (34 loc) · 1.68 KB
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
# -*- encoding: utf-8 -*-
Gem::Specification.new do |gem|
gem.authors = ["John Firebaugh"]
gem.email = ["john.firebaugh@gmail.com"]
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", "< 5"
gem.add_dependency "actionpack", ">= 4.1", "< 5"
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.1"
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"
end