-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcode-ruby.gemspec
More file actions
33 lines (29 loc) · 948 Bytes
/
code-ruby.gemspec
File metadata and controls
33 lines (29 loc) · 948 Bytes
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
# frozen_string_literal: true
Gem::Specification.new do |s|
s.name = "code-ruby"
s.version = File.read("VERSION").strip
s.summary = "a programming language for the internet"
s.description = s.summary
s.authors = ["Dorian Marié"]
s.email = "dorian@dorianmarie.com"
s.files = `git ls-files`.lines.map(&:strip)
s.require_paths = ["lib"]
s.homepage = "https://github.com/dorianmariecom/code-ruby"
s.license = "MIT"
s.executables = "code"
s.add_dependency "activesupport"
s.add_dependency "base64"
s.add_dependency "bigdecimal"
s.add_dependency "did-you-mean"
s.add_dependency "dorian-arguments"
s.add_dependency "json"
s.add_dependency "language-ruby"
s.add_dependency "mail"
s.add_dependency "net-http"
s.add_dependency "net-smtp"
s.add_dependency "nokogiri"
s.add_dependency "uri"
s.add_dependency "zeitwerk"
s.metadata["rubygems_mfa_required"] = "true"
s.required_ruby_version = ">= 3.0"
end