forked from gma/tconsole
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtconsole.gemspec
28 lines (24 loc) · 1.11 KB
/
tconsole.gemspec
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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "tconsole/version"
Gem::Specification.new do |s|
s.name = "tconsole"
s.version = TConsole::VERSION
s.authors = ["Alan Johnson"]
s.email = ["[email protected]"]
s.homepage = ""
s.summary = %q{tconsole is a helpful console for running Rails tests}
s.description = <<-EOF
tconsole allows Rails developers to easily and quickly run their tests as a whole or in subsets. It forks the testing processes from
a preloaded test environment to ensure that developers don't have to reload their entire Rails environment between test runs.
EOF
s.rubyforge_project = "tconsole"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
# specify any dependencies here; for example:
# s.add_development_dependency "rspec"
s.add_runtime_dependency "chattyproc", "~> 1.0.0"
s.add_runtime_dependency "term-ansicolor", "~> 1.0.7"
end