We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea9debd commit 82f501fCopy full SHA for 82f501f
.travis.yml
@@ -0,0 +1,15 @@
1
+services: mongodb
2
+language: ruby
3
+script: "bundle exec rake spec"
4
+rvm:
5
+ - 1.9.3
6
+ - 2.0.0
7
+ - 2.1.0
8
+ - 2.1.1
9
+env:
10
+ - CODECLIMATE_REPO_TOKEN=f506e465f1ed0571aeaa5e1cb9c14214c9f7567a92d1af70903f3d0bc8015ed6
11
+notifications:
12
+ email: false
13
+addons:
14
+ code_climate:
15
+ repo_token: f506e465f1ed0571aeaa5e1cb9c14214c9f7567a92d1af70903f3d0bc8015ed6
Rakefile
@@ -1 +1,10 @@
require "bundler/gem_tasks"
+
+require "rspec/core"
+require "rspec/core/rake_task"
+RSpec::Core::RakeTask.new(:spec) do |spec|
+ spec.pattern = FileList["spec/**/*_spec.rb"]
+end
+task :default => "spec"
0 commit comments