-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsrs.gemspec
26 lines (22 loc) · 1008 Bytes
/
srs.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
require File.expand_path("../lib/srs/version", __FILE__)
Gem::Specification.new do |s|
s.name = 'srs'
s.version = SRS::VERSION
s.date = '2011-07-07'
s.authors = ["Daniel P. Wright"]
s.email = '[email protected]'
s.homepage = 'https://github.com/dpwright/srs'
s.license = 'Simplified BSD'
s.summary = "A highly extensible command-line spaced repetition system"
s.description = <<-EOF
A Spaced Repetition System is a study tool which works by spacing out
exercises so as to learn in the most efficient manner possible.
srs is a command-line based implementation of the spaced repetition system.
It is designed to be highly extensible and to promote the sharing of data
for study by others.
EOF
s.files = `git ls-files`.split("\n").reject {|path| path =~ /\.gitignore$/ }
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.rdoc_options = ["--charset=UTF-8"]
s.require_path = "lib"
end