forked from jejacks0n/teaspoon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathteaspoon.gemspec
22 lines (18 loc) · 892 Bytes
/
teaspoon.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 "teaspoon/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "teaspoon"
s.version = Teaspoon::VERSION
s.authors = ["jejacks0n", "jayzes", "jedschneider"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/bigtunacan/teaspoon"
s.summary = "Teaspoon: A Javascript test runner built on top of Rails"
s.description = "Run Javascript tests using Jasmine, Mocha or QUnit in the browser or headlessly using PhantomJS or with Selenium Webdriver"
s.files = Dir["{app,config,lib,vendor,bin}/**/*"] + ["MIT.LICENSE", "README.md"]
s.test_files = Dir["{spec,test}/**/*"]
s.executables = ["teaspoon", "teabag"]
s.add_dependency "railties", [">= 3.2.5","< 5"]
s.add_dependency "phantomjs", ">= 1.8.1.1"
end