Initial commit

This commit is contained in:
Vicent Llongo
2012-09-24 15:33:16 +03:00
parent aa3f4993ad
commit aa92666555
8 changed files with 220 additions and 1 deletions

13
Gemfile Normal file
View File

@@ -0,0 +1,13 @@
source 'https://rubygems.org'
gemspec
group :development do
gem "mocha", :require => false
# Use local copy of simplecov in development when checked out or fetch from git
if File.directory?(File.dirname(__FILE__) + '/../simplecov')
gem 'simplecov', :path => File.dirname(__FILE__) + '/../simplecov'
else
gem 'simplecov', :git => 'https://github.com/colszowka/simplecov'
end
end