Skip to content

Commit

Permalink
Remove needless dependency management
Browse files Browse the repository at this point in the history
The curses gem was updated to allow for noop requires, meaning when you
require it with ruby < 2.1.0 it doesn't explode anymore.
ruby/curses#1
  • Loading branch information
chrisarcand committed Feb 23, 2015
1 parent 120ce73 commit 68d8926
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 0 additions & 2 deletions Gemfile
Expand Up @@ -3,5 +3,3 @@ source 'https://rubygems.org'
# Specify your gem's dependencies in opsicle.gemspec
gemspec

gem 'curses' if RUBY_VERSION >= '2.1' || RUBY_PLATFORM == 'java'

1 change: 1 addition & 0 deletions opsicle.gemspec
Expand Up @@ -24,6 +24,7 @@ Gem::Specification.new do |spec|
spec.add_dependency "highline", "~> 1.6"
spec.add_dependency "terminal-table", "~> 1.4"
spec.add_dependency "minitar", "~> 0.5"
spec.add_dependency "curses", "~> 1.0"

spec.add_development_dependency "bundler", "~> 1.3"
spec.add_development_dependency "rake", "~> 10.1"
Expand Down

0 comments on commit 68d8926

Please sign in to comment.