Move dependencies to gemspec file.

This commit is contained in:
@@@No user configured@@@ 2015-11-25 08:11:37 +01:00
parent 9f5e800008
commit b68cd3360a
2 changed files with 8 additions and 16 deletions

16
Gemfile
View File

@ -1,20 +1,4 @@
source "https://rubygems.org"
## TODO: move to epafh.gemspect
gem 'mail', '~> 2.6.3'
gem 'json'
gem 'thor'
gem 'pry'
gem 'pry-rescue'
# manage remote API/web page
gem 'mechanize'
# terminal colors
gem 'colorize'
# for hash validation
gem 'hash_validator'
# Specify your gem's dependencies in epafh.gemspec
gemspec

View File

@ -29,4 +29,12 @@ Gem::Specification.new do |spec|
spec.add_development_dependency "bundler", "~> 1.10"
spec.add_development_dependency "rake", "~> 10.0"
spec.add_runtime_dependency "mail", "~> 2.6.3"
spec.add_runtime_dependency "json"
spec.add_runtime_dependency "thor"
spec.add_runtime_dependency "mechanize"
spec.add_runtime_dependency "colorize"
spec.add_runtime_dependency "hash_validator"
spec.add_runtime_dependency "pry"
spec.add_runtime_dependency "pry-rescue"
end