forked from maxdemarzi/neography
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Kurt Freytag
committed
Nov 13, 2013
1 parent
c3f5af7
commit 35a218b
Showing
5 changed files
with
57 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
require 'bundler' | ||
require 'rspec/core/rake_task' | ||
require 'ci/reporter/rake/rspec' | ||
|
||
begin | ||
require 'bundler/setup' | ||
rescue LoadError | ||
puts 'You must `gem install bundler` and `bundle install` to run rake tasks' | ||
end | ||
|
||
Bundler::GemHelper.install_tasks | ||
|
||
$: << File.expand_path("#{File.dirname(__FILE__)}/lib") | ||
|
||
RDoc::Task.new(:rdoc) do |rdoc| | ||
rdoc.rdoc_dir = 'rdoc' | ||
rdoc.title = 'Deja' | ||
rdoc.options << '--line-numbers' | ||
rdoc.rdoc_files.include('README.rdoc') | ||
rdoc.rdoc_files.include('lib/**/*.rb') | ||
end | ||
|
||
RSpec::Core::RakeTask.new('spec') | ||
|
||
desc "Run Tests" | ||
task :spec => 'ci:setup:rspec' | ||
task :default => :spec |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
languages: | ||
ruby: 2.0.0-p247 | ||
setup: | ||
- scripts: | ||
- wget -O - http://debian.neo4j.org/neotechnology.gpg.key | sudo apt-key add - | ||
- echo 'deb http://debian.neo4j.org/repo stable/' > /etc/apt/sources.list.d/neo4j.list | ||
- apt-get update | ||
- apt-get install neo4j=1.9.4 -y --force-yes | ||
- bundle install --gemfile=Gemfile.server | ||
test: | ||
machines: 1 | ||
scripts: | ||
- tests: | ||
script: BUNDLE_GEMFILE=Gemfile.server rake | ||
timeout: 1800 | ||
xunit: spec/reports |