rack-console 1.3.0 → 1.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/lib/rack/console/methods.rb +2 -2
- data/lib/rack/console/version.rb +1 -1
- data/lib/rack/console.rb +24 -14
- data/spec/rack/console/methods_spec.rb +22 -0
- data/spec/rack/console_spec.rb +20 -0
- data/spec/spec_helper.rb +3 -0
- metadata +8 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 18ab0e88bb1f28b9c6750fe1b3190048a0440f9c7e79fec7d684865cd3d76586
|
4
|
+
data.tar.gz: 6e8ebeecb19f218fcdb9ebfd1531e4aa1fad73b17ea494564d01b53e65a7a4fc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: acc358351b23ad48b9cd631a254686b480901b0be298af28f3186030ea111c304bcc7d68d285e5d6e1a3a9fc80fa3c8ff933cd00675a80c8fb13d4a46aa7e91f
|
7
|
+
data.tar.gz: 185d9b4a63ad66f2879bd291700570d6dbebea0c8e9cb8a22b608fe250916940b1482e78d112913eadce02159e2bbd49bc4022f04806e761bea2b24326dfa283
|
data/lib/rack/console/methods.rb
CHANGED
data/lib/rack/console/version.rb
CHANGED
data/lib/rack/console.rb
CHANGED
@@ -10,24 +10,18 @@ module Rack
|
|
10
10
|
end
|
11
11
|
|
12
12
|
def initialize(options = {})
|
13
|
-
@options =
|
13
|
+
@options = default_options.merge(options)
|
14
14
|
|
15
|
-
ENV['RACK_ENV'] = @options[:environment]
|
16
|
-
|
15
|
+
ENV['RACK_ENV'] = @options[:environment]
|
16
|
+
set_preamble
|
17
17
|
|
18
|
-
if
|
19
|
-
$LOAD_PATH.unshift(*includes)
|
20
|
-
end
|
18
|
+
$LOAD_PATH.unshift(*@options[:include]) if @options[:include]
|
21
19
|
|
22
|
-
|
23
|
-
require library
|
24
|
-
end
|
20
|
+
require @options[:require] if @options[:require]
|
25
21
|
end
|
26
22
|
|
27
23
|
def start
|
28
|
-
|
29
|
-
puts ENV['RACK_CONSOLE_PREAMBLE']
|
30
|
-
end
|
24
|
+
puts ENV['RACK_CONSOLE_INTRO'] unless ENV['IGNORE_RACK_CONSOLE_INTRO']
|
31
25
|
|
32
26
|
app = Rack::Builder.parse_file(@options[:config]).first
|
33
27
|
|
@@ -35,10 +29,10 @@ module Rack
|
|
35
29
|
main.extend(Rack::Console::Methods)
|
36
30
|
main.instance_variable_set(:@app, Rack::Console::Session.new(app))
|
37
31
|
|
38
|
-
|
32
|
+
if Gem::Specification.find_all_by_name('pry').any?
|
39
33
|
require 'pry'
|
40
34
|
Pry.start
|
41
|
-
|
35
|
+
else
|
42
36
|
require 'irb'
|
43
37
|
IRB.start
|
44
38
|
end
|
@@ -49,5 +43,21 @@ module Rack
|
|
49
43
|
def main
|
50
44
|
TOPLEVEL_BINDING.eval('self')
|
51
45
|
end
|
46
|
+
|
47
|
+
def set_preamble
|
48
|
+
return if ENV['RACK_CONSOLE_INTRO']
|
49
|
+
|
50
|
+
loading = "Loading #{ENV['RACK_ENV']} environment"
|
51
|
+
version = "(Rack::Console #{Rack::Console::VERSION})"
|
52
|
+
|
53
|
+
ENV['RACK_CONSOLE_INTRO'] = "#{loading} #{version}"
|
54
|
+
end
|
55
|
+
|
56
|
+
def default_options
|
57
|
+
{
|
58
|
+
config: 'config.ru',
|
59
|
+
environment: ENV['RACK_ENV'] || 'development'
|
60
|
+
}
|
61
|
+
end
|
52
62
|
end
|
53
63
|
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
require 'rack/console/methods'
|
2
|
+
|
3
|
+
describe Rack::Console::Methods do
|
4
|
+
let(:session) { Object.new }
|
5
|
+
|
6
|
+
before { session.send :extend, Rack::Console::Methods }
|
7
|
+
|
8
|
+
describe 'reload!' do
|
9
|
+
it 're-executes the running process' do
|
10
|
+
expect(Kernel).to receive(:exec).with(/bin\/rspec$/)
|
11
|
+
|
12
|
+
session.reload!
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
describe 'app' do
|
17
|
+
before { session.instance_variable_set(:@app, 'app') }
|
18
|
+
subject { session.app }
|
19
|
+
|
20
|
+
it { is_expected.to eq('app') }
|
21
|
+
end
|
22
|
+
end
|
data/spec/rack/console_spec.rb
CHANGED
@@ -42,7 +42,27 @@ describe Rack::Console do
|
|
42
42
|
expect(ENV['RACK_ENV']).to eq('production')
|
43
43
|
end
|
44
44
|
|
45
|
+
describe 'preamble message' do
|
46
|
+
it 'defaults to a loading message' do
|
47
|
+
preamble = "Loading #{ENV['RACK_ENV']} environment (Rack::Console #{Rack::Console::VERSION})"
|
48
|
+
|
49
|
+
Rack::Console.new.start
|
50
|
+
expect(ENV['RACK_CONSOLE_INTRO']).to eq(preamble)
|
51
|
+
end
|
52
|
+
|
53
|
+
it 'does not override a preamble if one has already been set' do
|
54
|
+
ENV['RACK_CONSOLE_INTRO'] = 'Hello, Rack::Console!'
|
55
|
+
|
56
|
+
expect { Rack::Console.new.start }.not_to change { ENV['RACK_CONSOLE_INTRO'] }
|
57
|
+
|
58
|
+
ENV['RACK_CONSOLE_INTRO'] = nil
|
59
|
+
end
|
60
|
+
end
|
61
|
+
|
45
62
|
after do
|
46
63
|
Dir.chdir @old_pwd
|
64
|
+
|
65
|
+
ENV['RACK_ENV'] = 'test'
|
66
|
+
ENV['RACK_CONSOLE_INTRO'] = nil
|
47
67
|
end
|
48
68
|
end
|
data/spec/spec_helper.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rack-console
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.3.
|
4
|
+
version: 1.3.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David Celis
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-05-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rack
|
@@ -71,13 +71,14 @@ files:
|
|
71
71
|
- lib/rack/console/methods.rb
|
72
72
|
- lib/rack/console/session.rb
|
73
73
|
- lib/rack/console/version.rb
|
74
|
+
- spec/rack/console/methods_spec.rb
|
74
75
|
- spec/rack/console_spec.rb
|
75
76
|
- spec/spec_helper.rb
|
76
77
|
homepage: https://github.com/davidcelis/rack-console
|
77
78
|
licenses:
|
78
79
|
- MIT
|
79
80
|
metadata: {}
|
80
|
-
post_install_message:
|
81
|
+
post_install_message:
|
81
82
|
rdoc_options: []
|
82
83
|
require_paths:
|
83
84
|
- lib
|
@@ -92,12 +93,11 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
92
93
|
- !ruby/object:Gem::Version
|
93
94
|
version: '0'
|
94
95
|
requirements: []
|
95
|
-
|
96
|
-
|
97
|
-
signing_key:
|
96
|
+
rubygems_version: 3.5.3
|
97
|
+
signing_key:
|
98
98
|
specification_version: 4
|
99
99
|
summary: "`rails console` for your Rack applications"
|
100
100
|
test_files:
|
101
|
+
- spec/rack/console/methods_spec.rb
|
101
102
|
- spec/rack/console_spec.rb
|
102
103
|
- spec/spec_helper.rb
|
103
|
-
has_rdoc:
|