-
Notifications
You must be signed in to change notification settings - Fork 0
/
stroop.gemspec
27 lines (21 loc) · 1.02 KB
/
stroop.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
# -*- encoding: utf-8 -*-
require File.dirname(__FILE__) + "/lib/stroop/version"
Gem::Specification.new do |gem|
gem.name = "stroop"
gem.version = Stroop::VERSION
gem.summary = "Stroop effect"
gem.description = "The Stroop effect - demonstrating the interference in the reaction time of a task."
gem.authors = ["Paul Götze"]
gem.email = "[email protected]"
gem.homepage = "https://github.com/paulgoetze/stroop"
gem.license = "MIT"
gem.files = Dir['{**/}{.*,*}'].select{ |path| File.file?(path) && path !~ /^pkg/ }
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']
gem.required_ruby_version = '>= 2.6', '< 4'
gem.add_runtime_dependency 'colorize', '~> 1.0'
gem.add_runtime_dependency 'thor', '~> 1.0'
gem.add_development_dependency 'rspec', '~> 3.0'
gem.add_development_dependency 'rake', '~> 13.0'
end