-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodular_forms.gemspec
More file actions
31 lines (27 loc) · 1.13 KB
/
modular_forms.gemspec
File metadata and controls
31 lines (27 loc) · 1.13 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
31
# frozen_string_literal: true
require_relative 'lib/modular_forms/version'
Gem::Specification.new do |s|
s.name = 'modular_forms'
s.version = ModularForms::VERSION
s.summary = 'A creative toolkit for exploring modular forms and elliptic curves through Sonic Pi.'
s.description = 'Modular Forms is an accessible interface for experimenting with modular forms and elliptic curves through algorithmic composition and live coding using Sonic Pi.' # rubocop:disable Layout/LineLength
s.authors = ['Edgar Armando Delgado Vega']
s.files = Dir['lib/**/*']
s.require_paths = ['lib']
s.homepage = 'https://github.com/edelveart/modular_forms'
s.license = 'MIT'
s.metadata = {
'homepage_uri' => s.homepage,
'source_code_uri' => 'https://github.com/edelveart/modular_forms/'
# 'documentation_uri' => 'https://github.com/edelveart/modular_forms/',
}
s.required_ruby_version = '>= 3.0.0'
s.extra_rdoc_files = Dir['README.md', 'LICENSE']
s.rdoc_options += [
'--main', 'README.md',
'--line-numbers',
'--inline-source',
'--quiet'
]
end