forked from jejacks0n/teaspoon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
teaspoon.gemspec
22 lines (18 loc) · 883 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", "mikepack"]
s.email = ["info@modeset.com"]
s.homepage = "https://github.com/modeset/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 headless using PhantomJS, Selenium Webdriver, or Capybara Webkit"].join(" ")
s.license = "MIT"
s.files = Dir["{app,lib,bin}/**/*"] + ["MIT.LICENSE", "README.md", "CHANGELOG.md"]
s.executables = ["teaspoon"]
s.add_dependency "railties", [">= 3.2.5", "< 5"]
end