-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathruby_drills.gemspec
More file actions
30 lines (25 loc) · 1.07 KB
/
ruby_drills.gemspec
File metadata and controls
30 lines (25 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'ruby_drills/version'
Gem::Specification.new do |gem|
gem.name = "ruby_drills"
gem.version = RubyDrills::VERSION
gem.authors = ["Bobby Norton"]
gem.email = ["bobby@testedminds.com"]
gem.description = "A deliberate practice tool for the core Ruby API's."
gem.summary = gem.description
gem.homepage = "http://rubydrills.com"
gem.license = "Apache 2.0"
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}) { |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.add_dependency("pry", "0.10.4")
gem.add_dependency("colorize", "0.8.1")
gem.add_dependency("httparty", "0.14.0")
gem.add_dependency("rb-readline", "0.5.3")
gem.add_development_dependency("rake", "11.3.0")
gem.add_development_dependency("rspec", "3.5.0")
gem.add_development_dependency("wrong", "0.7.1")
end