Skip to content

Commit

Permalink
Version bump to 1.0.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
AlphaHydrae committed Oct 4, 2013
1 parent 942a92d commit 34139c3
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 9 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.1
1.0.2
2 changes: 1 addition & 1 deletion lib/which_works.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# The {Which} module can locate program files in the user's path.
# See {Which.which}.
module Which
VERSION = '1.0.1'
VERSION = '1.0.2'

# Locates a program file in the user's path.
#
Expand Down
21 changes: 14 additions & 7 deletions which_works.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-
# stub: which_works 1.0.2 ruby lib

Gem::Specification.new do |s|
s.name = "which_works"
s.version = "1.0.1"
s.version = "1.0.2"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["AlphaHydrae"]
s.date = "2013-09-10"
s.date = "2013-10-04"
s.description = "Locates a program file in the user's path. The which method takes a list of command names and searches the path for each executable file that would be run had these commands actually been invoked."
s.email = "hydrae.alpha@gmail.com"
s.extra_rdoc_files = [
Expand All @@ -26,34 +27,40 @@ Gem::Specification.new do |s|
s.homepage = "https://github.com/AlphaHydrae/which_works"
s.licenses = ["MIT"]
s.require_paths = ["lib"]
s.rubygems_version = "1.8.25"
s.rubygems_version = "2.1.5"
s.summary = "Ruby UNIX-like which."

if s.respond_to? :specification_version then
s.specification_version = 3
s.specification_version = 4

if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_development_dependency(%q<rake>, [">= 0"])
s.add_development_dependency(%q<rspec>, [">= 0"])
s.add_development_dependency(%q<jeweler>, [">= 0"])
s.add_development_dependency(%q<gem-release>, [">= 0"])
s.add_development_dependency(%q<rake-version>, [">= 0"])
s.add_development_dependency(%q<simplecov>, [">= 0"])
s.add_development_dependency(%q<travis-lint>, [">= 0"])
s.add_development_dependency(%q<rake-version>, [">= 0"])
s.add_development_dependency(%q<coveralls>, [">= 0"])
else
s.add_dependency(%q<rake>, [">= 0"])
s.add_dependency(%q<rspec>, [">= 0"])
s.add_dependency(%q<jeweler>, [">= 0"])
s.add_dependency(%q<gem-release>, [">= 0"])
s.add_dependency(%q<rake-version>, [">= 0"])
s.add_dependency(%q<simplecov>, [">= 0"])
s.add_dependency(%q<travis-lint>, [">= 0"])
s.add_dependency(%q<rake-version>, [">= 0"])
s.add_dependency(%q<coveralls>, [">= 0"])
end
else
s.add_dependency(%q<rake>, [">= 0"])
s.add_dependency(%q<rspec>, [">= 0"])
s.add_dependency(%q<jeweler>, [">= 0"])
s.add_dependency(%q<gem-release>, [">= 0"])
s.add_dependency(%q<rake-version>, [">= 0"])
s.add_dependency(%q<simplecov>, [">= 0"])
s.add_dependency(%q<travis-lint>, [">= 0"])
s.add_dependency(%q<rake-version>, [">= 0"])
s.add_dependency(%q<coveralls>, [">= 0"])
end
end

0 comments on commit 34139c3

Please sign in to comment.