forked from jejacks0n/teaspoon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteaspoon.gemspec
More file actions
22 lines (18 loc) · 888 Bytes
/
teaspoon.gemspec
File metadata and controls
22 lines (18 loc) · 888 Bytes
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", "mikepack", "jayzes", "jedschneider"]
s.email = ["jejacks0n@gmail.com"]
s.homepage = "https://github.com/jejacks0n/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", "< 6"]
end