-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathrack-console.gemspec
More file actions
29 lines (24 loc) · 971 Bytes
/
rack-console.gemspec
File metadata and controls
29 lines (24 loc) · 971 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
$LOAD_PATH.unshift File.expand_path("../lib", __FILE__)
require "rack/console/version"
Gem::Specification.new do |s|
s.name = "rack-console"
s.version = Rack::Console::VERSION
s.authors = ["David Celis"]
s.email = ["me@davidcel.is"]
s.summary = "`rails console` for your Rack applications"
s.description = <<-DESCRIPTION.gsub(/^\s{4}/, "")
Find yourself missing a `rails console` analogue in your other Ruby web
applications? This lightweight gem provides a Rack::Console that will load
your Rack application's code and environment into an IRB or Pry session.
Either use `Rack::Console.start` directly, or run the provided `rack-console`
executable.
DESCRIPTION
s.homepage = "https://github.com/davidcelis/rack-console"
s.license = "MIT"
s.executables = ["rack-console"]
s.files = Dir["lib/**/*.rb"]
s.require_paths = ["lib"]
s.add_dependency "rack", "~> 3.0"
s.add_dependency "rack-test"
s.add_dependency "irb"
end