rubyshell 1.1.1 → 1.2.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3dc52bfe0cf67de6392904a19c61eecd1ba03d309ed0b71fe7c9f62c43a99389
4
- data.tar.gz: 99ec7930b2fb5223efe6533fee5357ea1a18ee8501267479157d533e9be687e5
3
+ metadata.gz: 4e1bbca227330e09a8b8421875dc96c6049c23a1046d87a1a2c754569aaf7216
4
+ data.tar.gz: 6c4ee7e7b32ee568415ee62301029f407eeccb549265d3980fd961e6876860a8
5
5
  SHA512:
6
- metadata.gz: f44145f622774e54812697bb03a16e06f5b1a5f4dedbe3832879af9f500144a1b81a67424a0567b0a738efa713c5d849321f58ba6281fe8c2d573e53d04343b3
7
- data.tar.gz: 6b213e46dd112c32449cfab374cafefaa41265dfdc4b32152bfeac6757757266bdb56e81dc975f9c816c8818edc1d5533e28bebacdda510310f2fb43c7a2b83b
6
+ metadata.gz: 842cb4f6b522f1f91ec7e399f2378f0da3c44a362b41336a26c216dfbe706f4b7815bcabdb82e2ba60bc4a867fce90ad6dc0d407daa3b69088ee759c76276f7b
7
+ data.tar.gz: ab43aa943d08855ab501ed9c61f7114d427516aeb36db2d10236a05b7c45d4f54c64e58c3751a3eea97b5d8b3f67c736323d7f8c5e60c34c9fce9f24c8a8254b
data/exe/rubyshell ADDED
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ require "rubyshell"
5
+
6
+ require "irb"
7
+ IRB.start(__FILE__)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RubyShell
4
- VERSION = "1.1.1"
4
+ VERSION = "1.2.0"
5
5
  end
metadata CHANGED
@@ -1,24 +1,26 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubyshell
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.1
4
+ version: 1.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - albertalef
8
- bindir: bin
8
+ bindir: exe
9
9
  cert_chain: []
10
10
  date: 1980-01-02 00:00:00.000000000 Z
11
11
  dependencies: []
12
12
  description: A rubist way to run shell commands
13
13
  email:
14
14
  - albertalef@protonmail.com
15
- executables: []
15
+ executables:
16
+ - rubyshell
16
17
  extensions: []
17
18
  extra_rdoc_files: []
18
19
  files:
19
20
  - CHANGELOG.md
20
21
  - README.md
21
22
  - Rakefile
23
+ - exe/rubyshell
22
24
  - lib/rubyshell.rb
23
25
  - lib/rubyshell/chain_context.rb
24
26
  - lib/rubyshell/chainer.rb