Rakefile in ezid-client-0.4.1 vs Rakefile in ezid-client-0.4.2

- old
+ new

@@ -2,6 +2,11 @@ require "rspec/core/rake_task" desc "Run all specs in spec directory" RSpec::Core::RakeTask.new(:spec) +desc "Run the ci build (no integration tests)" +task :ci do + system "rspec ./spec/unit/" +end + task default: :spec