Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
steps:
- label: ":rspec: Run rspec"
command:
- "bundle install"
- "bundle exec rspec"
plugins:
- docker#v3.3.0:
image: ruby:2.7

- label: ":rubocop: Run the cop"
command:
- "bundle install"
- "echo 'running rubocop'"
- "bundle exec rubocop"
plugins:
- docker#v3.3.0:
image: ruby:2.7
- wait

- label: ":pick: Build and Push"
command:
- "bundle install"
- "bundle exec rake release"
branches: master
plugins:
- docker#v3.3.0:
image: ruby:2.7
agents:
queue: aws
Environment: test
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Ruby API Library for Fat Zebra

[![Build Status](https://travis-ci.org/fatzebra/Ruby-Library.svg?branch=master)](https://travis-ci.org/fatzebra/Ruby-Library)

Release 3.2.3 for API version 1.0
Release 3.2.6 for API version 1.0

A Ruby client for the [Fat Zebra](https://www.fatzebra.com) Online Payment Gateway

Expand Down
2 changes: 1 addition & 1 deletion lib/fat_zebra/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module FatZebra
VERSION = '3.2.5'
VERSION = '3.2.6'
end