Skip to content

Commit

Permalink
release 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zuazo committed Dec 11, 2015
1 parent 2c11c08 commit 4dd3798
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 6 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,25 @@

This file is used to list changes made in each version of `dockerspec` Ruby Gem.

## 0.2.0 (2015-12-11)

### New Features on 0.2.0

* Set some opinionated RSpec configurations.
* Print Docker errors in a more readable format.

### Fixes on 0.2.0

* Fix *undefined method* error in the outermost examples.

### Documentation Changes on 0.2.0

* Add examples for `#have_cmd` using string format.
* README:
* Improve Ruby documentation.
* Change gem badge to point to RubyGems.
* Add Real-world examples section.

## 0.1.0 (2015-12-09)

* Initial release of `dockerspec`.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
[![Gem Version](https://badge.fury.io/rb/dockerspec.svg)](https://rubygems.org/gems/dockerspec)
[![Dependency Status](http://img.shields.io/gemnasium/zuazo/dockerspec.svg?style=flat)](https://gemnasium.com/zuazo/dockerspec)
[![Code Climate](http://img.shields.io/codeclimate/github/zuazo/dockerspec.svg?style=flat)](https://codeclimate.com/github/zuazo/dockerspec)
[![Travis CI Build Status](http://img.shields.io/travis/zuazo/dockerspec.svg?style=flat)](https://travis-ci.org/zuazo/dockerspec)
[![Travis CI Build Status](http://img.shields.io/travis/zuazo/dockerspec/0.2.0.svg?style=flat)](https://travis-ci.org/zuazo/dockerspec)
[![Circle CI Build Status](https://circleci.com/gh/zuazo/dockerspec/tree/master.svg?style=shield)](https://circleci.com/gh/zuazo/dockerspec/tree/master)
[![Coverage Status](http://img.shields.io/coveralls/zuazo/dockerspec.svg?style=flat)](https://coveralls.io/r/zuazo/dockerspec?branch=master)
[![Coverage Status](http://img.shields.io/coveralls/zuazo/dockerspec/0.2.0.svg?style=flat)](https://coveralls.io/r/zuazo/dockerspec?branch=0.2.0)
[![Inline docs](http://inch-ci.org/github/zuazo/dockerspec.svg?branch=master&style=flat)](http://inch-ci.org/github/zuazo/dockerspec)

## Description
Expand All @@ -33,7 +33,7 @@ $ gem install dockerspec
Or you can add this line to the *Gemfile* of your application:

```ruby
gem 'dockerspec', '~> 0.1.0'
gem 'dockerspec', '~> 0.2.0'
```

And then execute:
Expand Down Expand Up @@ -99,7 +99,7 @@ If you are new to Ruby, you can follow these steps:

source 'https://rubygems.org'

gem 'dockerspec', '~> 0.1.0'
gem 'dockerspec', '~> 0.2.0'
```

#### 2. Create the *spec/* directory:
Expand Down
2 changes: 1 addition & 1 deletion dockerspec.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ require 'dockerspec/version'
Gem::Specification.new do |s|
s.name = 'dockerspec'
s.version = ::Dockerspec::VERSION
s.date = '2015-12-09'
s.date = '2015-12-11'
s.platform = Gem::Platform::RUBY
s.summary = 'Dockerspec'
s.description =
Expand Down
2 changes: 1 addition & 1 deletion lib/dockerspec/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ module Dockerspec
#
# Dockerspec Ruby Gem version.
#
VERSION = '0.2.0.dev'
VERSION = '0.2.0'
end

0 comments on commit 4dd3798

Please sign in to comment.