Skip to content

Commit

Permalink
Merge pull request maxdemarzi#62 from kfreytag/master
Browse files Browse the repository at this point in the history
Setting up koality
  • Loading branch information
Kurt Freytag committed Nov 13, 2013
2 parents c3f5af7 + 077db36 commit 470dfc5
Show file tree
Hide file tree
Showing 5 changed files with 49 additions and 19 deletions.
23 changes: 13 additions & 10 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
GIT
remote: https://github.com/andreasronge/neo4j-cypher.git
revision: 05e589ca79fb8e5e1abb2e4d2a9192f46d173660
revision: 589afd7de23d08f4c867fa7ab7de837874f9c3ca
specs:
neo4j-cypher (1.0.1)
neo4j-cypher (1.0.2)

PATH
remote: .
Expand All @@ -17,20 +17,22 @@ PATH
GEM
remote: https://rubygems.org/
specs:
activemodel (4.0.0)
activesupport (= 4.0.0)
activemodel (4.0.1)
activesupport (= 4.0.1)
builder (~> 3.1.0)
activesupport (4.0.0)
activesupport (4.0.1)
i18n (~> 0.6, >= 0.6.4)
minitest (~> 4.2)
multi_json (~> 1.3)
thread_safe (~> 0.1)
tzinfo (~> 0.3.37)
atomic (1.1.14)
builder (3.1.4)
coderay (1.0.9)
diff-lcs (1.2.4)
factory_girl (4.2.0)
ci_reporter (1.9.0)
builder (>= 2.1.2)
coderay (1.1.0)
diff-lcs (1.2.5)
factory_girl (4.3.0)
activesupport (>= 3.0.0)
httpclient (2.3.4.1)
i18n (0.6.5)
Expand All @@ -47,8 +49,8 @@ GEM
rubyzip (~> 0.9.7)
oj (2.1.7)
os (0.9.6)
pry (0.9.12.2)
coderay (~> 1.0.5)
pry (0.9.12.3)
coderay (~> 1.0)
method_source (~> 0.8)
slop (~> 3.4)
rake (10.1.0)
Expand All @@ -70,6 +72,7 @@ PLATFORMS
ruby

DEPENDENCIES
ci_reporter
deja!
factory_girl
neo4j-cypher!
Expand Down
19 changes: 19 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
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")

RSpec::Core::RakeTask.new('spec')

desc "Run Tests"
task :spec => 'ci:setup:rspec'
task :default => :spec
9 changes: 0 additions & 9 deletions circle.yml

This file was deleted.

1 change: 1 addition & 0 deletions deja.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ Gem::Specification.new do |s|
s.add_development_dependency "factory_girl"
s.add_development_dependency "pry"
s.add_development_dependency "rspec", "~>2.13.0"
s.add_development_dependency 'ci_reporter'

s.add_dependency "activemodel", "~> 4.0.0"
s.add_dependency "activesupport", "~> 4.0.0"
Expand Down
16 changes: 16 additions & 0 deletions koality.yml
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

0 comments on commit 470dfc5

Please sign in to comment.