Skip to content

Commit

Permalink
Update Minitest version dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
quirkey committed Dec 8, 2012
1 parent c2e7dd9 commit 332dbe8
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 24 deletions.
7 changes: 4 additions & 3 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
source "http://rubygems.org"

gem "minitest", "~> 4.3"

group :development do
gem "bundler", "~> 1.0.0"
gem "jeweler", "~> 1.5.2"
gem "minitest"
gem "bundler", "~> 1.0"
gem "jeweler", "~> 1.5"
end
18 changes: 11 additions & 7 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,21 @@ GEM
remote: http://rubygems.org/
specs:
git (1.2.5)
jeweler (1.5.2)
bundler (~> 1.0.0)
jeweler (1.8.4)
bundler (~> 1.0)
git (>= 1.2.5)
rake
minitest (2.3.1)
rake (0.9.2)
rdoc
json (1.7.5)
minitest (4.3.3)
rake (10.0.2)
rdoc (3.12)
json (~> 1.4)

PLATFORMS
ruby

DEPENDENCIES
bundler (~> 1.0.0)
jeweler (~> 1.5.2)
minitest
bundler (~> 1.0)
jeweler (~> 1.5)
minitest (~> 4.3)
14 changes: 0 additions & 14 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,6 @@ Jeweler::Tasks.new do |gem|
gem.description = %Q{Patches MiniTest to allow for an easily configurable output. For Ruby 1.9 :Datches MiniTest to allow for an easily configurable output. For Ruby 1.9 :D. Inspired by leftright, redgreen and other test output gems, with an emphasis on configuration and style}
gem.email = "aaron@quirkey.com"
gem.authors = ["Aaron Quint"]
# Include your dependencies below. Runtime dependencies are required when using your gem,
# and development dependencies are only needed for development (ie running rake tasks, tests, etc)
gem.add_runtime_dependency 'minitest', '~> 2.3'
# gem.add_development_dependency 'rspec', '> 1.2.3'
end
Jeweler::RubygemsDotOrgTasks.new

Expand All @@ -36,13 +32,3 @@ Rake::TestTask.new(:test) do |test|
end

task :default => :test

require 'rake/rdoctask'
Rake::RDocTask.new do |rdoc|
version = File.exist?('VERSION') ? File.read('VERSION') : ""

rdoc.rdoc_dir = 'rdoc'
rdoc.title = "minitest-display #{version}"
rdoc.rdoc_files.include('README*')
rdoc.rdoc_files.include('lib/**/*.rb')
end

0 comments on commit 332dbe8

Please sign in to comment.