safemode 1.4.0 → 1.5.0
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/safemode.gemspec +2 -2
- metadata +8 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 795ca593ca92570d9d4a54cbad72c18c32574d1190b37d002acb22f0347814e0
|
|
4
|
+
data.tar.gz: 585a9de965e98cc5f7d847357db1db8ce2a52e1200cf17169dc109c4cda231b5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d27b2e9fa7e9893cc43039c37c884e21c1e7945974d3614a907818453e99b88d0cd37ab68d43058e01303f3d6bc6966f51edeee009a712994ad40b754660a4d7
|
|
7
|
+
data.tar.gz: 1b6ddc2ab11f82cc6275d9ea26aa57800ebcfc2a2e7a84612894bb61b17a879e1b83eac20dff722091fab596eeb04912110d4bb70dbcce924771b189c218894f
|
data/safemode.gemspec
CHANGED
|
@@ -4,7 +4,7 @@ require 'date'
|
|
|
4
4
|
|
|
5
5
|
Gem::Specification.new do |s|
|
|
6
6
|
s.name = "safemode".freeze
|
|
7
|
-
s.version = "1.
|
|
7
|
+
s.version = "1.5.0"
|
|
8
8
|
s.date = Date.today
|
|
9
9
|
|
|
10
10
|
s.summary = "A library for safe evaluation of Ruby code based on ParseTree/RubyParser and Ruby2Ruby"
|
|
@@ -52,7 +52,7 @@ Gem::Specification.new do |s|
|
|
|
52
52
|
"test/test_safemode_parser.rb"
|
|
53
53
|
]
|
|
54
54
|
|
|
55
|
-
s.required_ruby_version = ">= 2.7", "< 3.
|
|
55
|
+
s.required_ruby_version = ">= 2.7", "< 3.2"
|
|
56
56
|
|
|
57
57
|
s.add_runtime_dependency "ruby2ruby", ">= 2.4.0"
|
|
58
58
|
s.add_runtime_dependency "ruby_parser", ">= 3.10.1"
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: safemode
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.5.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sven Fuchs
|
|
@@ -10,10 +10,10 @@ authors:
|
|
|
10
10
|
- Kingsley Hendrickse
|
|
11
11
|
- Ohad Levy
|
|
12
12
|
- Dmitri Dolguikh
|
|
13
|
-
autorequire:
|
|
13
|
+
autorequire:
|
|
14
14
|
bindir: bin
|
|
15
15
|
cert_chain: []
|
|
16
|
-
date:
|
|
16
|
+
date: 2024-03-19 00:00:00.000000000 Z
|
|
17
17
|
dependencies:
|
|
18
18
|
- !ruby/object:Gem::Dependency
|
|
19
19
|
name: ruby2ruby
|
|
@@ -115,7 +115,7 @@ dependencies:
|
|
|
115
115
|
version: '0'
|
|
116
116
|
description: A library for safe evaluation of Ruby code based on RubyParser and Ruby2Ruby.
|
|
117
117
|
Provides Rails ActionView template handlers for ERB and Haml.
|
|
118
|
-
email:
|
|
118
|
+
email:
|
|
119
119
|
executables: []
|
|
120
120
|
extensions: []
|
|
121
121
|
extra_rdoc_files:
|
|
@@ -150,7 +150,7 @@ homepage: https://github.com/svenfuchs/safemode
|
|
|
150
150
|
licenses:
|
|
151
151
|
- MIT
|
|
152
152
|
metadata: {}
|
|
153
|
-
post_install_message:
|
|
153
|
+
post_install_message:
|
|
154
154
|
rdoc_options: []
|
|
155
155
|
require_paths:
|
|
156
156
|
- lib
|
|
@@ -161,15 +161,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
161
161
|
version: '2.7'
|
|
162
162
|
- - "<"
|
|
163
163
|
- !ruby/object:Gem::Version
|
|
164
|
-
version: '3.
|
|
164
|
+
version: '3.2'
|
|
165
165
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
166
166
|
requirements:
|
|
167
167
|
- - ">="
|
|
168
168
|
- !ruby/object:Gem::Version
|
|
169
169
|
version: '0'
|
|
170
170
|
requirements: []
|
|
171
|
-
rubygems_version: 3.
|
|
172
|
-
signing_key:
|
|
171
|
+
rubygems_version: 3.4.10
|
|
172
|
+
signing_key:
|
|
173
173
|
specification_version: 4
|
|
174
174
|
summary: A library for safe evaluation of Ruby code based on ParseTree/RubyParser
|
|
175
175
|
and Ruby2Ruby
|