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

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
And dropped Ruby 1.9.2... :)
  • Loading branch information
kachick committed Jun 9, 2015
1 parent 4736afc commit 818f259
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions optionalargument.gemspec
Original file line number Diff line number Diff line change
@@ -1,27 +1,28 @@
# coding: us-ascii
require './lib/optionalargument/version'

lib_name = 'optionalargument'.freeze
require "./lib/#{lib_name}/version"

Gem::Specification.new do |gem|
# specific

gem.description = %q{Revenge of the Hash options.
Hash will beat `keyword arguments`!!}
gem.description = %q{Revenge of the Hash options}

gem.summary = gem.description.dup
gem.homepage = 'http://kachick.github.com/optionalargument/'
gem.homepage = "http://kachick.github.com/#{lib_name}/"
gem.license = 'MIT'
gem.name = 'optionalargument'
gem.name = lib_name.dup
gem.version = OptionalArgument::VERSION.dup

gem.required_ruby_version = '>= 1.9.2'
gem.required_ruby_version = '>= 1.9.3'

gem.add_runtime_dependency 'keyvalidatable', '~> 0.0.5'
gem.add_runtime_dependency 'validation', '~> 0.0.6'

gem.add_development_dependency 'yard', '>= 0.8.6.1', '< 0.9'
gem.add_development_dependency 'yard', '>= 0.8.7.6', '< 0.9'
gem.add_development_dependency 'rake', '>= 10', '< 20'
gem.add_development_dependency 'bundler', '>= 1.3.5', '< 2'
gem.add_development_dependency 'bundler', '>= 1.10', '< 2'
gem.add_development_dependency 'test-unit', '>= 3.1.1', '< 4'

# common

Expand All @@ -31,4 +32,4 @@ Hash will beat `keyword arguments`!!}
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ['lib']
end
end

0 comments on commit 818f259

Please sign in to comment.