archer-rails 1.3.0 → 1.3.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5d623c36f6d7f69aa2b901fdae7f720efe2f38ac56fca8a53898a5ef8bb75609
4
- data.tar.gz: 5bf8c2b43ae59ed997682d3bc81350b358e8196875f50eef6e67392583e85b63
3
+ metadata.gz: dacd01065ed50cdda02500fd57256234eea7aa5fcbd8b23dfbe2135b541fdf0b
4
+ data.tar.gz: 68d856097137e54b0376cb05f4db4f979b79dfc922d9b227d44ad49845a716df
5
5
  SHA512:
6
- metadata.gz: b2a945c3e2cf7bdf716ab6689e956567cf4cb24d2052f49c392597259c86eee9d1323392fc3497ba1b6c4c85af2b5c46562b790c31d59cb54efade9b1f0fb68d
7
- data.tar.gz: 84af04eebcd32b6081f100d5972e1cc8827cd5e0364ef03f48ccbacd22309566650311b4602697cc4083595aa54bfa1726bc9c919f77d70458ffdb37f3b06325
6
+ metadata.gz: deeb1fa0a3376f8d267a5c1211c057ddca46fcd8245b31e4b65926bdc01daf7cb51e4818983c42d8a4f4725e37a99a3709d10c3d6c4aa3880e10ae2205732eff
7
+ data.tar.gz: 2aa7cf8a088e8857065b6954cb302cd1238d488921768161fcafb848445b553413cab37a25dbae3eb9317f495eccab9575fd4b988e06d34eb54f374708d28efe
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 1.3.1 (2026-09-09)
2
+
3
+ - Added support for json 3
4
+
1
5
  ## 1.3.0 (2026-04-04)
2
6
 
3
7
  - Dropped support for Ruby < 3.3 and Rails < 7.2
data/LICENSE.txt CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2018-2025 Andrew Kane
3
+ Copyright (c) 2018-2026 Andrew Kane
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
data/README.md CHANGED
@@ -101,7 +101,17 @@ alias hc="heroku run USER=andrew rails console"
101
101
 
102
102
  ### Dokku
103
103
 
104
- There’s no way to specify a user at the moment.
104
+ For user-specific history, the command should follow this format:
105
+
106
+ ```sh
107
+ dokku run env USER=andrew rails console
108
+ ```
109
+
110
+ Set up an [alias](https://shapeshed.com/unix-alias/) to save yourself some typing
111
+
112
+ ```sh
113
+ alias dc="dokku run env USER=andrew rails console"
114
+ ```
105
115
 
106
116
  ## History
107
117
 
data/lib/archer/coder.rb CHANGED
@@ -7,7 +7,7 @@ module Archer
7
7
  end
8
8
 
9
9
  def self.load(value)
10
- JSON.parse(value, {max_nesting: 1}) unless value.nil?
10
+ JSON.parse(value, max_nesting: 1) unless value.nil?
11
11
  rescue JSON::ParserError
12
12
  # previous format
13
13
  value.split("\n")
@@ -1,3 +1,3 @@
1
1
  module Archer
2
- VERSION = "1.3.0"
2
+ VERSION = "1.3.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: archer-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.0
4
+ version: 1.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Kane
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
73
73
  - !ruby/object:Gem::Version
74
74
  version: '0'
75
75
  requirements: []
76
- rubygems_version: 4.0.6
76
+ rubygems_version: 4.0.16
77
77
  specification_version: 4
78
78
  summary: Rails console history for Heroku, Docker, and more
79
79
  test_files: []