-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdaigaku.gemspec
35 lines (31 loc) · 1.62 KB
/
daigaku.gemspec
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
31
32
33
34
35
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'daigaku/version'
Gem::Specification.new do |spec|
spec.name = 'daigaku'
spec.version = Daigaku::VERSION
spec.authors = ['Paul Götze']
spec.email = ['[email protected]']
spec.summary = 'Learning Ruby on the command line.'
spec.description = 'Daigaku is the Japanese word for university. With Daigaku you can interactively learn the Ruby programming language using the command line.'
spec.homepage = 'https://github.com/daigaku-ruby/daigaku'
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 2.5'
spec.add_runtime_dependency 'curses', '~> 1.3'
spec.add_runtime_dependency 'rspec', '~> 3.0'
spec.add_runtime_dependency 'thor', '~> 1.0'
spec.add_runtime_dependency 'os', '~> 1.0'
spec.add_runtime_dependency 'colorize', '~> 0.8'
spec.add_runtime_dependency 'rubyzip', '~> 2.0'
spec.add_runtime_dependency 'wisper', '~> 2.0'
spec.add_runtime_dependency 'quick_store', '~> 1.0'
spec.add_runtime_dependency 'code_breaker', '~> 1.0'
spec.add_development_dependency 'bundler', '~> 2.0'
spec.add_development_dependency 'rake', '~> 13.0'
spec.add_development_dependency 'webmock', '~> 3.0'
spec.add_development_dependency 'guard-rspec', '~> 4.7'
end