diff --git a/.gitignore b/.gitignore index 61d7e6f..876cf1e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,7 @@ +.idea .rvmrc .DS_Store deja_test.rb test.rb neo4j +Gemfile.server.lock \ No newline at end of file diff --git a/Gemfile.server.lock b/Gemfile.server.lock deleted file mode 100644 index d4e5634..0000000 --- a/Gemfile.server.lock +++ /dev/null @@ -1,78 +0,0 @@ -GIT - remote: https://github.com/andreasronge/neo4j-cypher.git - revision: 05e589ca79fb8e5e1abb2e4d2a9192f46d173660 - specs: - neo4j-cypher (1.0.1) - -PATH - remote: . - specs: - deja (0.1) - activemodel (~> 4.0.0) - activesupport (~> 4.0.0) - neo4j-cypher (~> 1.0.1) - neography (~> 1.1.3) - oj (~> 2.1.4) - -GEM - remote: https://rubygems.org/ - specs: - activemodel (4.0.1) - activesupport (= 4.0.1) - builder (~> 3.1.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.3.0) - activesupport (>= 3.0.0) - httpclient (2.3.4.1) - i18n (0.6.5) - json (1.8.1) - method_source (0.8.2) - minitest (4.7.5) - multi_json (1.8.2) - neography (1.1.4) - httpclient (>= 2.3.3) - json (>= 1.7.7) - multi_json (>= 1.3.2) - os (>= 0.9.6) - rake (>= 0.8.7) - rubyzip (~> 0.9.7) - oj (2.1.7) - os (0.9.6) - pry (0.9.12.2) - coderay (~> 1.0.5) - method_source (~> 0.8) - slop (~> 3.4) - rake (10.1.0) - rspec (2.13.0) - rspec-core (~> 2.13.0) - rspec-expectations (~> 2.13.0) - rspec-mocks (~> 2.13.0) - rspec-core (2.13.1) - rspec-expectations (2.13.0) - diff-lcs (>= 1.1.3, < 2.0) - rspec-mocks (2.13.1) - rubyzip (0.9.9) - slop (3.4.6) - thread_safe (0.1.3) - atomic - tzinfo (0.3.38) - -PLATFORMS - ruby - -DEPENDENCIES - deja! - factory_girl - neo4j-cypher! - neography (~> 1.1.3) - pry - rspec (~> 2.13.0) diff --git a/Rakefile b/Rakefile index 7f8a35d..ed4d8b0 100644 --- a/Rakefile +++ b/Rakefile @@ -12,8 +12,15 @@ Bundler::GemHelper.install_tasks $: << File.expand_path("#{File.dirname(__FILE__)}/lib") -RSpec::Core::RakeTask.new('spec') +RSpec::Core::RakeTask.new(:spec) do |t| + t.rspec_opts = "--color --format documentation" + t.pattern = "spec/**/*_spec.rb" +end -desc "Run Tests" -task :spec => 'ci:setup:rspec' +desc 'Run Tests' task :default => :spec + +RSpec::Core::RakeTask.new('ci_spec') + +desc 'Run Koality Tests' +task :ci_spec => 'ci:setup:rspec' diff --git a/koality.yml b/koality.yml index c56e344..f4b5426 100644 --- a/koality.yml +++ b/koality.yml @@ -11,6 +11,6 @@ test: machines: 1 scripts: - tests: - script: BUNDLE_GEMFILE=Gemfile.server rake + script: BUNDLE_GEMFILE=Gemfile.server rake ci_spec timeout: 1800 xunit: spec/reports \ No newline at end of file