diff options
-rw-r--r-- | Gemfile | 9 | ||||
-rw-r--r-- | Gemfile.lock | 6 | ||||
-rw-r--r-- | README.rdoc | 2 | ||||
-rw-r--r-- | shippable.yml | 14 |
4 files changed, 30 insertions, 1 deletions
@@ -4,4 +4,11 @@ gem 'prawn', '~> 1.3.0' gem 'prawn-table', '~> 0.2.1' gem 'rake', '~> 10.4.2' gem 'activesupport', '~> 4.2.0' -gem 'rspec', '~> 3.1.0' + +group :development, :test do + gem 'rspec', '~> 3.1.0' +end + +group :test do + gem 'rspec_junit_formatter', '~> 0.2.0' +end
\ No newline at end of file diff --git a/Gemfile.lock b/Gemfile.lock index c92cb67..08a20b7 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -7,6 +7,7 @@ GEM minitest (~> 5.1) thread_safe (~> 0.3, >= 0.3.4) tzinfo (~> 1.1) + builder (3.2.2) diff-lcs (1.2.5) i18n (0.7.0) json (1.8.1) @@ -29,6 +30,10 @@ GEM rspec-mocks (3.1.3) rspec-support (~> 3.1.0) rspec-support (3.1.2) + rspec_junit_formatter (0.2.0) + builder (< 4) + rspec (>= 2, < 4) + rspec-core (!= 2.12.0) thread_safe (0.3.4) ttfunk (1.4.0) tzinfo (1.2.2) @@ -43,3 +48,4 @@ DEPENDENCIES prawn-table (~> 0.2.1) rake (~> 10.4.2) rspec (~> 3.1.0) + rspec_junit_formatter (~> 0.2.0) diff --git a/README.rdoc b/README.rdoc index 0dc2878..8c0eed7 100644 --- a/README.rdoc +++ b/README.rdoc @@ -6,6 +6,8 @@ with different formats, localized text, custom colors, etc. and be able to create beautiful pdfs to use on Ilustrator, Coreldraw, Photoshop or where you need it ----------------------------------------------------------- +[![Build Status](https://api.shippable.com/projects/54fedaf45ab6cc135296cb36/badge?branchName=develop)](https://app.shippable.com/projects/54fedaf45ab6cc135296cb36/builds/latest) + == Installation bundle install diff --git a/shippable.yml b/shippable.yml new file mode 100644 index 0000000..1454e3f --- /dev/null +++ b/shippable.yml @@ -0,0 +1,14 @@ +language: ruby + +rvm: + - 1.9.3 + - 2.1.2 + +env: + - CI_REPORTS=shippable/testresults COVERAGE_REPORTS=shippable/codecoverage + +before_script: + - mkdir -p shippable/testresults + +script: + - rspec --format RspecJunitFormatter --out shippable/testresults/results.xml |