Skip to content

Commit

Permalink
Prepare for 2.2.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
citizen428 committed May 2, 2018
1 parent 1ca87e2 commit 3f79167
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
7 changes: 5 additions & 2 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# frozen_string_literal: true

require 'rake/testtask'
require 'rdoc/task'
require 'fileutils'

GEMSPEC = 'methodfinder.gemspec'

Rake::TestTask.new do |t|
Expand All @@ -9,8 +12,8 @@ end

Rake::RDocTask.new do |rd|
rd.rdoc_dir = 'doc/'
rd.main = "README.rdoc"
rd.rdoc_files.include("README.rdoc", "lib/**/*.rb")
rd.main = "README.md"
rd.rdoc_files.include("README.md", "lib/**/*.rb")
rd.title = 'MethodFinder'

rd.options << '--line-numbers'
Expand Down
4 changes: 2 additions & 2 deletions methodfinder.gemspec
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
Gem::Specification.new do |gem|
gem.name = 'methodfinder'
gem.version = '2.1.1'
gem.version = '2.2.0'
gem.author = 'Michael Kohl'
gem.email = '[email protected]'
gem.summary = 'A Smalltalk-like Method Finder for Ruby'
gem.description = 'A Smalltalk-like Method Finder for Ruby with some extra features'
gem.homepage = 'http://citizen428.github.com/methodfinder/'
gem.require_paths = %w[lib]
gem.files = %w[lib/methodfinder.rb ./LICENSE ./README.rdoc]
gem.files = %w[lib/methodfinder.rb ./LICENSE ./README.md]
gem.license = 'MIT'
end

0 comments on commit 3f79167

Please sign in to comment.