mirror of
https://github.com/ms-ati/docile
synced 2023-03-27 23:21:52 -04:00
explicitly require rspec for travis
Signed-off-by: Marc Siegel <marc@usainnov.com>
This commit is contained in:
parent
f136db9fa9
commit
10cf6ed254
2 changed files with 5 additions and 3 deletions
5
Gemfile
5
Gemfile
|
@ -3,7 +3,8 @@ source "https://rubygems.org"
|
||||||
# Specify gem's dependencies in docile.gemspec
|
# Specify gem's dependencies in docile.gemspec
|
||||||
gemspec
|
gemspec
|
||||||
|
|
||||||
# Explicitly require rake for Travis CI, since we're excluding dev deps
|
# Explicitly require test gems for Travis CI, since we're excluding dev dependencies
|
||||||
group :test do
|
group :test do
|
||||||
gem "rake"
|
gem "rake", "~> 0.9.2"
|
||||||
|
gem "rspec", "~> 2.7.0"
|
||||||
end
|
end
|
|
@ -18,8 +18,9 @@ Gem::Specification.new do |s|
|
||||||
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
||||||
s.require_paths = ["lib"]
|
s.require_paths = ["lib"]
|
||||||
|
|
||||||
|
# Running rspec tests from rake
|
||||||
|
s.add_development_dependency "rake", "~> 0.9.2"
|
||||||
s.add_development_dependency "rspec", "~> 2.7.0"
|
s.add_development_dependency "rspec", "~> 2.7.0"
|
||||||
s.add_development_dependency "rake"
|
|
||||||
|
|
||||||
# Github flavored markdown in YARD documentation
|
# Github flavored markdown in YARD documentation
|
||||||
# http://blog.nikosd.com/2011/11/github-flavored-markdown-in-yard.html
|
# http://blog.nikosd.com/2011/11/github-flavored-markdown-in-yard.html
|
||||||
|
|
Loading…
Reference in a new issue