Skip to content
This repository has been archived by the owner on Jul 1, 2024. It is now read-only.

Commit

Permalink
Use optimist gem
Browse files Browse the repository at this point in the history
  • Loading branch information
mooreryan committed Oct 23, 2018
1 parent 7a5f321 commit 63d9d4f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion aai.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@ Gem::Specification.new do |spec|
spec.add_runtime_dependency "parallel", "~> 1.6", ">= 1.6.1"
spec.add_runtime_dependency "parse_fasta", "~> 2.2"
spec.add_runtime_dependency "systemu", "~> 2.6", ">= 2.6.5"
spec.add_runtime_dependency "trollop", "~> 2.1", ">= 2.1.2"
spec.add_runtime_dependency "optimist", "~> 3.0"
end
4 changes: 2 additions & 2 deletions exe/aai
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Signal.trap("PIPE", "EXIT")
require "aai"
require "abort_if"
require "fileutils"
require "trollop"
require "optimist"

include AbortIf
include AbortIf::Assert
Expand All @@ -20,7 +20,7 @@ def move_files fnames, dest
end
end

opts = Trollop.options do
opts = Optimist.options do
version Aai::VERSION_BANNER

banner <<-EOS
Expand Down
2 changes: 1 addition & 1 deletion lib/aai/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Aai
VERSION = "0.5.4"
VERSION = "0.5.5"
COPYRIGHT = "2017 Ryan Moore"
CONTACT = "moorer@udel.edu"
WEBSITE = "https://github.com/mooreryan/aai"
Expand Down

0 comments on commit 63d9d4f

Please sign in to comment.