diff options
| author | mo khan <mo@mokhan.ca> | 2015-09-20 13:38:58 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2015-09-20 13:38:58 -0600 |
| commit | e24f55d27afe1f987d0d2252536c538e4fc8bc95 (patch) | |
| tree | c6f5d28ee27fac58868b4b2eabd44bd71284c380 | |
| parent | 60eada70fb33f545e22501a50eabb657dd4353d0 (diff) | |
add travis build.
| -rw-r--r-- | .travis.yml | 5 | ||||
| -rw-r--r-- | Rakefile | 8 |
2 files changed, 13 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..6b23851 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,5 @@ +language: ruby +cache: bundler +sudo: false +rvm: + - 2.2.3 diff --git a/Rakefile b/Rakefile new file mode 100644 index 0000000..235b6d8 --- /dev/null +++ b/Rakefile @@ -0,0 +1,8 @@ +require 'rspec/core/rake_task' +require 'kitchen/rake_tasks' + +RSpec::Core::RakeTask.new(:spec) +Kitchen::RakeTasks.new + +task default: [:spec] +task all: [:default, 'kitchen:all'] |
