Skip to content

Commit

Permalink
Update testing infrastructure for Travis.
Browse files Browse the repository at this point in the history
  • Loading branch information
parkr committed Sep 2, 2014
1 parent 483f46c commit c83f388
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 5 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Jekyll::Compose

Streamline your writing in Jekyll with these commands.
Streamline your writing in Jekyll with some commands.

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

## Installation

Expand All @@ -18,7 +20,7 @@ Or install it yourself as:

## Usage

Usage instructions go here.
Install `jekyll-compose` and run `jekyll help`.

## Contributing

Expand Down
8 changes: 8 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -1 +1,9 @@
require "bundler/gem_tasks"
require 'rake/testtask'
Rake::TestTask.new(:test) do |test|
test.libs << 'lib' << 'test'
test.pattern = 'test/**/test_*.rb'
test.verbose = true
end

task :default => :test
7 changes: 4 additions & 3 deletions jekyll-compose.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,12 @@ Gem::Specification.new do |spec|
spec.homepage = "https://github.com/jekyll/jekyll-compose"
spec.license = "MIT"

spec.files = `git ls-files -z`.split("\x0")
spec.files = `git ls-files -z`.split("\x0").grep(%r{(bin|lib)/})
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]

spec.add_development_dependency "bundler", "~> 1.5"
spec.add_development_dependency "rake"
spec.add_development_dependency "rake", "~> 10.0"
spec.add_development_dependency "jekyll", "~> 2.0"
spec.add_development_dependency "shoulda"
end

0 comments on commit c83f388

Please sign in to comment.