forked from testdouble/jasmine-rails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jasmine-rails.gemspec
22 lines (18 loc) · 938 Bytes
/
jasmine-rails.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "jasmine_rails/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "jasmine-rails"
s.version = JasmineRails::VERSION
s.authors = ["Justin Searls", "Mark Van Holstyn", "Cory Flanigan"]
s.homepage = "http://github.com/searls/jasmine-rails"
s.summary = "Makes Jasmine easier on Rails 3.2 & up"
s.description = "Provides a Jasmine Spec Runner that plays nicely with Rails 3.2 assets and sets up jasmine-headless-webkit"
s.files = Dir["{app,config,db,lib}/**/*"] + ["MIT-LICENSE", "Rakefile", "README.md"]
s.add_dependency "railties", ">= 3.2.0"
s.add_dependency "sprockets-rails"
s.add_dependency "jasmine-core", [">= 1.3", "< 3.0"]
s.add_dependency "phantomjs", ">= 1.9"
end