console1984 0.2.1 → 0.2.3
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 +4 -4
- data/README.md +28 -5
- data/Rakefile +0 -2
- data/app/jobs/console1984/incineration_job.rb +2 -0
- data/config/protections.yml +1 -0
- data/lib/console1984/command_validator/.command_parser.rb +1 -1
- data/lib/console1984/ext/irb/context.rb +1 -1
- data/lib/console1984/input_output.rb +8 -2
- data/lib/console1984/version.rb +1 -1
- metadata +17 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3bcb1c5436456f551d695a6b3ffdf284959846303adf6afaaee8fe0ff66ecb6e
|
|
4
|
+
data.tar.gz: 317f00e5e0c25b8f2e18876782872cc7288df2038c25139538c98c1e77dbeb85
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0a9fc5c6bb7c6c36580dfae29f4cfaadbc18930d11061a77609bbec85c9a3b44131e873bc347e04f7db2b8ce7dc2d239c9d18a74cedcde14dcb28858697e7c86
|
|
7
|
+
data.tar.gz: fb53e1d21f930e80b4d05a77a2e3b2eeed5eb7af22fd242874452cce10b141e65e4f4b7eda3a22a2d52335d7aeed923d22c6732905587f0890d1cfcb630cd78d
|
data/README.md
CHANGED
|
@@ -152,7 +152,7 @@ These config options are namespaced in `config.console1984`:
|
|
|
152
152
|
| `ask_for_username_if_empty` | If `true`, the console will ask for a username if it is empty. If `false`, it will raise an error if no username is set. Defaults to `false`. |
|
|
153
153
|
| `production_data_warning` | The text to show when a console session starts. |
|
|
154
154
|
| `enter_unprotected_encryption_mode_warning` | The text to show when user enters into unprotected mode. |
|
|
155
|
-
| `enter_protected_mode_warning` | The text to show when user
|
|
155
|
+
| `enter_protected_mode_warning` | The text to show when user goes back to protected mode. |
|
|
156
156
|
| `incinerate` | Whether incinerate sessions automatically after a period of time or not. Default to `true`. |
|
|
157
157
|
| `incinerate_after` | The period to keep sessions around before incinerate them. Default `30.days`. |
|
|
158
158
|
| `incineration_queue` | The name of the queue for session incineration jobs. Default `console1984_incineration`. |
|
|
@@ -192,8 +192,31 @@ The test suite runs against SQLite by default, but can be run against Postgres a
|
|
|
192
192
|
To run the suite in your computer, first, run `bin/setup` to create the docker containers for MySQL/PostgreSQL and create the databases. Then run:
|
|
193
193
|
|
|
194
194
|
```bash
|
|
195
|
-
bin/rails test # against SQLite (default)
|
|
196
|
-
bin/rails test TARGET_DB=mysql
|
|
197
|
-
bin/rails test TARGET_DB=postgres
|
|
198
|
-
bin/rails test TARGET_DB=sqlite
|
|
195
|
+
bin/rails test # against SQLite (default)
|
|
196
|
+
bin/rails test TARGET_DB=mysql
|
|
197
|
+
bin/rails test TARGET_DB=postgres
|
|
198
|
+
bin/rails test TARGET_DB=sqlite
|
|
199
|
+
```
|
|
200
|
+
|
|
201
|
+
### Testing against different Rails versions
|
|
202
|
+
|
|
203
|
+
This project uses [Appraisal](https://github.com/thoughtbot/appraisal) to test against multiple Rails versions. The `Appraisals` file defines the matrix and the generated gemfiles live in `gemfiles/`.
|
|
204
|
+
|
|
205
|
+
To run tests against a specific Rails version:
|
|
206
|
+
|
|
207
|
+
```bash
|
|
208
|
+
bundle exec appraisal rails-8-0 bin/rails test
|
|
209
|
+
bundle exec appraisal rails-8-1 bin/rails test
|
|
210
|
+
```
|
|
211
|
+
|
|
212
|
+
To run tests against all Rails versions:
|
|
213
|
+
|
|
214
|
+
```bash
|
|
215
|
+
bundle exec appraisal bin/rails test
|
|
216
|
+
```
|
|
217
|
+
|
|
218
|
+
To regenerate the appraisal gemfiles after changing the `Appraisals` file:
|
|
219
|
+
|
|
220
|
+
```bash
|
|
221
|
+
bundle exec appraisal install
|
|
199
222
|
```
|
data/Rakefile
CHANGED
data/config/protections.yml
CHANGED
|
@@ -40,7 +40,7 @@ class Console1984::CommandValidator::CommandParser < ::Parser::AST::Processor
|
|
|
40
40
|
def on_const(node)
|
|
41
41
|
super
|
|
42
42
|
name, const_name = *node
|
|
43
|
-
const_name = const_name.to_s
|
|
43
|
+
const_name = const_name.to_s.dup
|
|
44
44
|
last_constant = @constants.last
|
|
45
45
|
|
|
46
46
|
if name.nil? || (name && name.type == :cbase) # cbase = leading ::
|
|
@@ -5,7 +5,7 @@ module Console1984::Ext::Irb::Context
|
|
|
5
5
|
|
|
6
6
|
# This method is invoked for showing returned objects in the console
|
|
7
7
|
# Overridden to make sure their evaluation is supervised.
|
|
8
|
-
def inspect_last_value
|
|
8
|
+
def inspect_last_value(...)
|
|
9
9
|
Console1984.command_executor.execute_in_protected_mode do
|
|
10
10
|
super
|
|
11
11
|
end
|
|
@@ -31,7 +31,13 @@ module Console1984::InputOutput
|
|
|
31
31
|
|
|
32
32
|
def ask_for_value(message)
|
|
33
33
|
puts Rainbow("#{message}").green
|
|
34
|
-
|
|
35
|
-
|
|
34
|
+
original_output_modifier_proc = Reline.output_modifier_proc
|
|
35
|
+
begin
|
|
36
|
+
Reline.output_modifier_proc = nil
|
|
37
|
+
reason = Reline.readline.strip until reason.present?
|
|
38
|
+
reason
|
|
39
|
+
ensure
|
|
40
|
+
Reline.output_modifier_proc = original_output_modifier_proc
|
|
41
|
+
end
|
|
36
42
|
end
|
|
37
43
|
end
|
data/lib/console1984/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: console1984
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jorge Manrubia
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: bin
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
14
13
|
name: rainbow
|
|
@@ -220,7 +219,20 @@ dependencies:
|
|
|
220
219
|
- - ">="
|
|
221
220
|
- !ruby/object:Gem::Version
|
|
222
221
|
version: '0'
|
|
223
|
-
|
|
222
|
+
- !ruby/object:Gem::Dependency
|
|
223
|
+
name: ostruct
|
|
224
|
+
requirement: !ruby/object:Gem::Requirement
|
|
225
|
+
requirements:
|
|
226
|
+
- - ">="
|
|
227
|
+
- !ruby/object:Gem::Version
|
|
228
|
+
version: '0'
|
|
229
|
+
type: :development
|
|
230
|
+
prerelease: false
|
|
231
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
232
|
+
requirements:
|
|
233
|
+
- - ">="
|
|
234
|
+
- !ruby/object:Gem::Version
|
|
235
|
+
version: '0'
|
|
224
236
|
email:
|
|
225
237
|
- jorge@basecamp.com
|
|
226
238
|
executables: []
|
|
@@ -283,7 +295,6 @@ licenses:
|
|
|
283
295
|
- MIT
|
|
284
296
|
metadata:
|
|
285
297
|
allowed_push_host: https://rubygems.org
|
|
286
|
-
post_install_message:
|
|
287
298
|
rdoc_options: []
|
|
288
299
|
require_paths:
|
|
289
300
|
- lib
|
|
@@ -298,8 +309,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
298
309
|
- !ruby/object:Gem::Version
|
|
299
310
|
version: '0'
|
|
300
311
|
requirements: []
|
|
301
|
-
rubygems_version: 3.
|
|
302
|
-
signing_key:
|
|
312
|
+
rubygems_version: 3.6.9
|
|
303
313
|
specification_version: 4
|
|
304
314
|
summary: Your Rails console, 1984 style
|
|
305
315
|
test_files: []
|