Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Travis CI builds (the specs fail, due to clone --depth=50) #51

Merged
merged 2 commits into from Mar 30, 2013
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions .travis.yml
Expand Up @@ -13,4 +13,6 @@ before_install:
notifications: notifications:
email: false email: false


before_script: git pull -q --depth=1000000

script: bundle exec rspec spec script: bundle exec rspec spec
2 changes: 1 addition & 1 deletion Gemfile
@@ -1,7 +1,7 @@
source 'https://rubygems.org' source 'https://rubygems.org'
gemspec gemspec


gem "charlock_holmes", "0.6.9.1" gem "charlock_holmes"


group :test do group :test do
gem "simplecov" gem "simplecov"
Expand Down
4 changes: 2 additions & 2 deletions git_statistics.gemspec
Expand Up @@ -17,8 +17,8 @@ Gem::Specification.new do |gem|
gem.required_ruby_version = '>= 1.9.1' gem.required_ruby_version = '>= 1.9.1'


gem.add_dependency('json') gem.add_dependency('json')
gem.add_dependency('grit', '2.5.0') gem.add_dependency('grit')
gem.add_dependency('github-linguist', '2.4.0') gem.add_dependency('github-linguist')


gem.add_development_dependency "rspec", "~> 2.12.0" gem.add_development_dependency "rspec", "~> 2.12.0"
gem.add_development_dependency "rake" gem.add_development_dependency "rake"
Expand Down