forked from rails/web-console
-
Notifications
You must be signed in to change notification settings - Fork 0
/
web-console.gemspec
26 lines (19 loc) · 930 Bytes
/
web-console.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
# frozen_string_literal: true
$:.push File.expand_path("../lib", __FILE__)
require "web_console/version"
Gem::Specification.new do |s|
s.name = "web-console"
s.version = WebConsole::VERSION
s.authors = ["Charlie Somerville", "Genadi Samokovarov", "Guillermo Iguaran", "Ryan Dao"]
s.homepage = "https://github.com/rails/web-console"
s.summary = "A debugging tool for your Ruby on Rails applications."
s.license = "MIT"
s.files = Dir["lib/**/*", "MIT-LICENSE", "Rakefile", "README.markdown", "CHANGELOG.markdown"]
s.required_ruby_version = ">= 2.5"
rails_version = ">= 6.0.0"
s.add_dependency "railties", rails_version
s.add_dependency "activemodel", rails_version
s.add_dependency "actionview", rails_version
s.add_dependency "bindex", ">= 0.4.0"
end