Skip to content

Commit

Permalink
Merge branch 'master' into v0.4.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Genki Sugawara committed Sep 22, 2014
2 parents e05a8af + b20031a commit 17e1d1f
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Expand Up @@ -7,6 +7,7 @@ It defines DB schema using [Rails DSL](http://guides.rubyonrails.org/migrations.

[![Gem Version](https://badge.fury.io/rb/ridgepole.png)](http://badge.fury.io/rb/ridgepole)
[![Build Status](https://travis-ci.org/winebarrel/ridgepole.svg?branch=master)](https://travis-ci.org/winebarrel/ridgepole)
[![Coverage Status](https://coveralls.io/repos/winebarrel/ridgepole/badge.png?branch=master)](https://coveralls.io/r/winebarrel/ridgepole?branch=master)

## Installation

Expand Down
1 change: 1 addition & 0 deletions ridgepole.gemspec
Expand Up @@ -24,4 +24,5 @@ Gem::Specification.new do |spec|
spec.add_development_dependency 'rake'
spec.add_development_dependency 'rspec', '>= 3.0.0'
spec.add_development_dependency 'mysql2'
spec.add_development_dependency 'coveralls'
end
11 changes: 11 additions & 0 deletions spec/spec_helper.rb
@@ -1,4 +1,15 @@
$: << File.expand_path('..', __FILE__)

if ENV['TRAVIS']
require 'simplecov'
require 'coveralls'

SimpleCov.formatter = Coveralls::SimpleCov::Formatter
SimpleCov.start do
add_filter "spec/"
end
end

require 'ridgepole'
require 'ridgepole/cli/config'
require 'active_support/core_ext/string/strip'
Expand Down

0 comments on commit 17e1d1f

Please sign in to comment.