forked from brynary/arel
-
Notifications
You must be signed in to change notification settings - Fork 390
/
arel.gemspec
23 lines (19 loc) · 971 Bytes
/
arel.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# frozen_string_literal: true
Gem::Specification.new do |s|
s.name = "arel"
s.version = "10.0.0.pre"
s.platform = Gem::Platform::RUBY
s.authors = ["Aaron Patterson", "Bryan Helmkamp", "Emilio Tagua", "Nick Kallen"]
s.homepage = "https://github.com/rails/rails"
s.description = "Arel is a SQL AST manager for Ruby, now provided by Active Record. This is a transitional package. It can safely be removed."
s.summary = "Arel is a SQL AST manager for Ruby, now provided by Active Record. This is a transitional package. It can safely be removed."
s.license = %q{MIT}
s.metadata = {
"source_code_uri" => "https://github.com/rails/arel",
"changelog_uri" => "https://github.com/rails/arel/blob/master/History.txt"
}
s.files = []
s.require_paths = ["lib"]
s.add_runtime_dependency("activerecord", ">= 6.a")
end