forked from ianwhite/wac
-
Notifications
You must be signed in to change notification settings - Fork 10
/
wolfram.gemspec
25 lines (23 loc) · 1.05 KB
/
wolfram.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
# -*- encoding: utf-8 -*-
require_relative "./lib/wolfram/version"
Gem::Specification.new do |s|
s.name = "wolfram"
s.version = Wolfram::VERSION
s.authors = ["Gabriel Horner", "Ian White"]
s.email = "[email protected]"
s.homepage = "https://github.com/cldwalker/wolfram"
s.summary = "Wolfram V2 API client"
s.description = "Explore the vast world of computational knowledge available for free via Wolfram's v2 API."
s.required_ruby_version = ">= 2.7"
s.executables = ['wolfram']
s.add_runtime_dependency "nokogiri", "~> 1", ">= 1.4.3"
s.add_development_dependency 'rr'
s.add_development_dependency 'bacon', '>= 1.1.0'
s.add_development_dependency 'bacon-rr'
s.add_development_dependency 'bacon-bits'
s.files = Dir.glob(%w[{lib,test}/**/*.rb bin/* [A-Z]*.{txt,md} ext/**/*.{rb,c} **/deps.rip]) + %w{Rakefile wolfram.gemspec}
s.files += Dir.glob(['test/fixtures/*.xml']) + %w{.travis.yml}
s.extra_rdoc_files = ["README.md", "LICENSE.txt"]
s.license = 'MIT'
s.metadata["rubygems_mfa_required"] = "true"
end