Skip to content

Commit 8209dab

Browse files
committed
add Travis CI
1 parent 749ef2b commit 8209dab

File tree

3 files changed

+28
-1
lines changed

3 files changed

+28
-1
lines changed

.travis.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
language: ruby
2+
rvm:
3+
- 2.3.0
4+
- 2.2.4
5+
- 2.2.3
6+
- 2.2.1
7+
- 2.2.0
8+
- 2.1.8
9+
- 2.1.7
10+
- 2.1.6
11+
- 2.1.5
12+
- 2.1.4
13+
- 2.1.3
14+
- 2.1.2
15+
- 2.1.1
16+
- 2.1.0
17+
- 2.0.0

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# SageoneSdk
22

3+
[![Build Status](https://travis-ci.org/Sage/sageone_api_ruby_sdk.svg?branch=master)](https://travis-ci.org/Sage/sageone_api_ruby_sdk)
4+
35
The `sageone_sdk` gem provides Ruby methods for accessing the Sage One API endpoints.
46

57
## Installation

Rakefile

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,10 @@
1-
require "bundler/gem_tasks"
1+
require 'bundler/gem_tasks'
2+
require 'rspec/core/rake_task'
3+
RSpec::Core::RakeTask.new(:spec)
24

5+
task :default => :fudge
6+
7+
# Test Fudge using Fudge
8+
task :fudge do
9+
exec 'fudge build 2> /dev/null'
10+
end

0 commit comments

Comments
 (0)