sinatra-rax 1.0 → 1.0.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 +4 -4
- data/README.md +15 -0
- data/sinatra-rax.gemspec +2 -1
- metadata +18 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 199922f88ebf4023eb0a7f8102a12eaad119ef93f46afe0fa888895c3f9b3192
|
4
|
+
data.tar.gz: 5d1da36d9d81aa3e2af03e1b846fdf29b99af1088e5b1f4e98e4cce724fdc46e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 349e0aceb7b40c6ee68068ae446c7bd185a85c69b43a478df650b3a6b1c3fba14aba66f3dcfa72a780b6b9e6a81a3354acade4fe8d45ca81b6142bc4ca4f34e1
|
7
|
+
data.tar.gz: 0d42df4e21ef72b22e3a791685106959b9cfac31224bd1977ce1d1d6cd6fb825f9b832f4a69b9fddcc0e1a4d91c220555da69cb41cb5bfe253381f8796f11ac8
|
data/README.md
CHANGED
@@ -13,6 +13,21 @@
|
|
13
13
|
7. Call `routes` to show list sorted by route
|
14
14
|
8. Call `props` to show application settings
|
15
15
|
|
16
|
+
## Install
|
17
|
+
|
18
|
+
Install via `rubygems` with:
|
19
|
+
|
20
|
+
```
|
21
|
+
gem install sinatra-rax
|
22
|
+
```
|
23
|
+
|
24
|
+
Or, add to your `Gemfile` using `Bundler` with:
|
25
|
+
|
26
|
+
```
|
27
|
+
bundle add sinatra-rax
|
28
|
+
```
|
29
|
+
|
30
|
+
This will add an executable in your path, which you can launch by typing `rax`.
|
16
31
|
|
17
32
|
## Examples
|
18
33
|
|
data/sinatra-rax.gemspec
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = "sinatra-rax"
|
5
|
-
s.version = "1.0"
|
5
|
+
s.version = "1.0.1"
|
6
6
|
s.author = "Steve Shreeve"
|
7
7
|
s.email = "steve.shreeve@gmail.com"
|
8
8
|
s.summary = "A minimal and modern Ruby/IRB console for Sinatra apps"
|
@@ -11,4 +11,5 @@ Gem::Specification.new do |s|
|
|
11
11
|
s.license = "MIT"
|
12
12
|
s.files = `git ls-files`.split("\n") - %w[.gitignore]
|
13
13
|
s.executables = `cd bin && git ls-files .`.split("\n")
|
14
|
+
s.add_runtime_dependency 'rack-test', '~> 2.0'
|
14
15
|
end
|
metadata
CHANGED
@@ -1,15 +1,29 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sinatra-rax
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Steve Shreeve
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
12
|
-
dependencies:
|
11
|
+
date: 2023-02-21 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rack-test
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '2.0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '2.0'
|
13
27
|
description: Provides a simple console to interact with Sinatra apps
|
14
28
|
email: steve.shreeve@gmail.com
|
15
29
|
executables:
|
@@ -41,7 +55,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
41
55
|
- !ruby/object:Gem::Version
|
42
56
|
version: '0'
|
43
57
|
requirements: []
|
44
|
-
rubygems_version: 3.4.
|
58
|
+
rubygems_version: 3.4.6
|
45
59
|
signing_key:
|
46
60
|
specification_version: 4
|
47
61
|
summary: A minimal and modern Ruby/IRB console for Sinatra apps
|