Skip to content

Commit

Permalink
Merge pull request #1 from jheimark/master
Browse files Browse the repository at this point in the history
Add Travis CI Integration
  • Loading branch information
Robb Shecter committed Feb 15, 2013
2 parents 743004b + ae5d258 commit cfe303b
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .travis.yml
@@ -0,0 +1,5 @@
language: ruby
rvm:
- "1.8.7"
- "1.9.2"
- "1.9.3"
5 changes: 5 additions & 0 deletions Gemfile
@@ -1,4 +1,9 @@
source 'https://rubygems.org'

group :test do
gem 'rspec', '~> 2.0'
gem 'rake', '~> 10.0'
end

# Specify your gem's dependencies in naturally.gemspec
gemspec
3 changes: 2 additions & 1 deletion README.md
@@ -1,6 +1,7 @@
# Naturally
[![Build Status](https://travis-ci.org/dogweather/naturally.png)](https://travis-ci.org/dogweather/naturally)

Natural sorting with added support for legal document numbering.
Natural sorting with added support for legal document numbering.
See [Sorting for Humans : Natural Sort Order](http://www.codinghorror.com/blog/2007/12/sorting-for-humans-natural-sort-order.html) and [Counting to 10 in Californian](http://www.weblaws.org/blog/2012/08/counting-from-1-to-10-in-californian/)
for the motivations to make this library. This is also the kind of ordering you want if you're sorting version numbers.

Expand Down
6 changes: 6 additions & 0 deletions Rakefile
@@ -1 +1,7 @@
require "bundler/gem_tasks"

require 'rspec/core/rake_task'

RSpec::Core::RakeTask.new('spec')

task :default => :spec

0 comments on commit cfe303b

Please sign in to comment.