shellb 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 8f3a0166d547f1e9cadca213c3c4966f958d6deaf424cca3e41c7814fac41cf9
4
+ data.tar.gz: 63230d226d8e24acc56416bd12d737082d140ea0a785ddec4d0994365b7b4e0a
5
+ SHA512:
6
+ metadata.gz: 38be6a731225de410c59815878f1927cade0f3f01af8bc4181930dae66ec352247891c726bef7230f707419e80e3b3d553c0df6986896e42d9d6f8eb5dee14b2
7
+ data.tar.gz: 1e3f462b44ffef6b6340f99c02921429c1449f49ed4a30b0454dddd7cad8b252611bef5d5fec75e66b14dccdf3083bb62a39de990904b206abe8e18073c21930
@@ -0,0 +1,11 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+
10
+ # rspec failure tracking
11
+ .rspec_status
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
@@ -0,0 +1,9 @@
1
+ ---
2
+ sudo: false
3
+ language: ruby
4
+ cache: bundler
5
+ rvm:
6
+ - 2.6.5
7
+ before_install: gem install bundler -v 2.0.2
8
+ install: bundle install
9
+ script: bundle exec rake spec
@@ -0,0 +1,17 @@
1
+ # Changelog
2
+ All notable changes to this project will be documented in this file.
3
+
4
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5
+ and this project **may some day** to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
+
7
+ ## [0.0.2] - 2019-12-03
8
+ ### Added
9
+ - Shell#attempt will execute a script and ignore errors
10
+
11
+ ### Changed
12
+ - Shell#check_point now executes scripts
13
+ - Shell#transact no longer allows chaining with other commands
14
+
15
+ ## [0.0.1] - 2019-12-02
16
+ ### Added
17
+ - Initial version of ShellB
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source "https://rubygems.org"
2
+
3
+ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
+
5
+ # Specify your gem's dependencies in shellb.gemspec
6
+ gemspec
@@ -0,0 +1,45 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ shellb (0.0.2)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ byebug (11.0.1)
10
+ coderay (1.1.2)
11
+ diff-lcs (1.3)
12
+ method_source (0.9.2)
13
+ pry (0.12.2)
14
+ coderay (~> 1.1.0)
15
+ method_source (~> 0.9.0)
16
+ pry-byebug (3.7.0)
17
+ byebug (~> 11.0)
18
+ pry (~> 0.10)
19
+ rake (10.5.0)
20
+ rspec (3.9.0)
21
+ rspec-core (~> 3.9.0)
22
+ rspec-expectations (~> 3.9.0)
23
+ rspec-mocks (~> 3.9.0)
24
+ rspec-core (3.9.0)
25
+ rspec-support (~> 3.9.0)
26
+ rspec-expectations (3.9.0)
27
+ diff-lcs (>= 1.2.0, < 2.0)
28
+ rspec-support (~> 3.9.0)
29
+ rspec-mocks (3.9.0)
30
+ diff-lcs (>= 1.2.0, < 2.0)
31
+ rspec-support (~> 3.9.0)
32
+ rspec-support (3.9.0)
33
+
34
+ PLATFORMS
35
+ ruby
36
+
37
+ DEPENDENCIES
38
+ bundler (~> 2.0)
39
+ pry-byebug (~> 3.0)
40
+ rake (~> 10.0)
41
+ rspec (~> 3.0)
42
+ shellb!
43
+
44
+ BUNDLED WITH
45
+ 2.0.2
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2019 Ryan Duryea
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,156 @@
1
+ # ShellB
2
+
3
+ `ShellB` (pronounced Shelby) is a shell script builder. The goal is to be a (near) drop-in replacement for Ruby's `Shell` class
4
+
5
+
6
+ ## FAQ
7
+
8
+ ### Wha? Why?
9
+
10
+ I've long loved Ruby's `Shell` class, essentially a DSL for building a shell script.
11
+
12
+ Imagine my dismay when I realized that piping information between commands in `Shell` is done _through_ Ruby, making my beautiful shell scripts _slow_ and _hungry_ for memory.
13
+
14
+ I wanted something that would build out my shell scripts like `Shell`, but would _stay_ in the shell where commands and pipes work quickly and smoothly.
15
+
16
+ ### I used `ShellB` in place of `Shell` and it didn't work
17
+
18
+ Yikes. I'm not surprised. The library Works For Me in that the few places I use it and I haven't really developed it beyond my own needs.
19
+
20
+ Also, there are some differences I can't figure out how to avoid.
21
+
22
+ ### Why are there so many \\\\\\\\'s in my script?
23
+
24
+ Ruby's `Shellwords` library does that. If you know of a better library for properly escaping shell-related strings, let me know!
25
+
26
+ ## Installation
27
+
28
+ Add this line to your application's Gemfile:
29
+
30
+ ```ruby
31
+ gem 'shellb'
32
+ ```
33
+
34
+ And then execute:
35
+
36
+ $ bundle
37
+
38
+ Or install it yourself as:
39
+
40
+ $ gem install shellb
41
+
42
+ ## Usage
43
+
44
+ `ShellB` is intended to work similarly to Shell. There are a few differences:
45
+
46
+ 1. All commands you intend to use must be defined via `ShellB.def_system_command`
47
+ 2. Unlike `Shell`, `ShellB` will not run any commands on its own. You must either
48
+ - Call `#run` on a `ShellB::Shell` instance
49
+ - Call `ShellB::Shell#run { <commands here> }` which will immediately execute the script
50
+
51
+ See the examples below.
52
+
53
+ ## Examples
54
+
55
+ ```
56
+ %w[a b c d e f g].each do |cmd|
57
+ ShellB.def_system_command(cmd)
58
+ end
59
+
60
+ # Support Shell's #transact method -- my favorite way to build a script
61
+ shb = ShellB.new
62
+ script = shb.transact do
63
+ a | b | c("--last", "--delimiter", "\t")
64
+ end
65
+ puts script # a | b | c --last --delimiter "\t"
66
+
67
+ # Invoke methods directly on ShellB::Shell instance
68
+ shb = ShellB.new
69
+ shb.a("--help") | shb.e("last")
70
+ puts shb.to_sh # => a --help | e last
71
+
72
+ # Run a script
73
+ shb = ShellB.new
74
+ shb.a("--help") | shb.e("last")
75
+ shb.run # creates a temporary script file and invokes it using Bash
76
+
77
+ # Immediately run a script after building it
78
+ ShellB.new.run do
79
+ a | b
80
+ c
81
+ end
82
+
83
+ # Support `cd` ala Shell
84
+ # NOT YET IMPLEMENTED
85
+ shb.cd("/tmp") do
86
+ pwd
87
+ end # => (cd /tmp ; pwd)
88
+
89
+ # Handle Multiple Inputs into a Command
90
+ # Allow variable names as arguments
91
+ # NOT YET IMPLEMENTED
92
+ file1_csv = "/tmp/file1.csv"
93
+ file2_csv = "/tmp/file2.csv"
94
+ shb.transact do
95
+ diff \
96
+ < transact(do
97
+ xsv("sort", file1_csv) | head
98
+ end) \
99
+ < transact({
100
+ xsv("sort", file2_csv) | tail
101
+ })
102
+ end # => diff <(xsv sort /tmp/file1.csv | head) <(xsv sort /tmp/file2.csv | tail)
103
+ ```
104
+
105
+ ## Future Ideas
106
+
107
+ Some ideas I'm toying with:
108
+
109
+ ### Support for hash => switches
110
+
111
+ It might be handy to feed a hash to a command and have that generate the appropriate switches for a command.
112
+
113
+ Something like:
114
+
115
+ ```
116
+ shb = ShellB.new
117
+ shb.transact do
118
+ e(long_switch: "value", s: true)
119
+ end
120
+ puts shb.to_sh # => e --long-switch value -s
121
+ ```
122
+
123
+ However, how do we handle some of the following?
124
+
125
+ - Underscore vs dash in long names?
126
+ - E.g. does `long_switch_name` become `--long-switch-name` or `--long_switch_name`
127
+ - For long switches, do we include an equals sign if a value is included?
128
+ - E.g. does `long_switch_name: "value"` become `--long-switch-name=value` or `--long-switch-name value`
129
+ - For switches without arguments, do we relegate those to an array only, or allow them in the hash?
130
+ - E.g. does `s: true` become `-s`
131
+
132
+ ## Development
133
+
134
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
135
+
136
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
137
+
138
+ ## Similar Projects
139
+
140
+ As any good programmer, I wrote first and googled later. Here are some other projects that seem very similar to ShellB:
141
+
142
+ - https://github.com/jgoizueta/sys_cmd
143
+ - https://github.com/duncanbeevers/sheller
144
+ - https://github.com/fetlife/scallop
145
+ - https://github.com/quark-zju/easysh
146
+ - https://github.com/eropple/shellator
147
+ - https://github.com/petyosi/shellshot
148
+ - https://github.com/taccon/eksek
149
+
150
+ ## Contributing
151
+
152
+ Bug reports and pull requests are welcome on GitHub at https://github.com/aguynamedryan/shellb.
153
+
154
+ ## License
155
+
156
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "shellb"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,25 @@
1
+ require "shellb/version"
2
+ require "shellb/shell"
3
+ begin
4
+ require "pry-byebug"
5
+ rescue LoadError
6
+ end
7
+
8
+ module ShellB
9
+ class Error < StandardError; end
10
+ class ExecutionError < StandardError; attr_accessor :script ; end
11
+ # Your code goes here...
12
+ class << self
13
+ def new(*args)
14
+ Shell.new(*args)
15
+ end
16
+
17
+ def def_system_command(*args)
18
+ Shell.def_system_command(*args)
19
+ end
20
+
21
+ def alias_command(*args)
22
+ Shell.alias_command(*args)
23
+ end
24
+ end
25
+ end
@@ -0,0 +1,69 @@
1
+ require "shellwords"
2
+
3
+ module ShellB
4
+ class Command
5
+ attr_reader :name, :opts, :shell, :block
6
+ attr_accessor :downstream
7
+
8
+ def initialize(shell, name, *opts)
9
+ @shell = shell
10
+ @name = name
11
+ @opts = opts
12
+ end
13
+
14
+ def |(command)
15
+ shell.drop_command(command)
16
+ self.downstream = command
17
+ end
18
+
19
+ def >(to)
20
+ @output = to
21
+ self
22
+ end
23
+
24
+ def >>(to)
25
+ @append = to
26
+ self
27
+ end
28
+
29
+ def <(from)
30
+ @input = from
31
+ self
32
+ end
33
+
34
+ def redirection_parts
35
+ return [">", @output.to_s] if @output
36
+ return [">>", @append.to_s] if @append
37
+ return ["<", @input.to_s] if @input
38
+ return []
39
+ end
40
+
41
+ def to_s
42
+ "<Command: #{name} #{opts.join(" ")}>"
43
+ end
44
+
45
+ def to_sh
46
+ parts = []
47
+ parts << Shellwords.shelljoin([name, *opts])
48
+
49
+ unless (rd_parts = redirection_parts.join(" ")).empty?
50
+ parts.last << " " + rd_parts
51
+ end
52
+
53
+ parts << downstream.to_sh if downstream
54
+ parts.join(" | ")
55
+ end
56
+
57
+ def pretty_print(pp)
58
+ pp.object_group(self) do
59
+ pp.breakable
60
+ pp.text "@name="
61
+ pp.pp @name
62
+
63
+ pp.breakable
64
+ pp.text "@opts="
65
+ pp.pp @opts
66
+ end
67
+ end
68
+ end
69
+ end
@@ -0,0 +1,32 @@
1
+ require_relative "command"
2
+
3
+ module ShellB
4
+ class Commander
5
+ attr_reader :shell
6
+
7
+ class << self
8
+ def def_system_command(name, path = nil)
9
+ define_method(name) do |*args|
10
+ Command.new(shell, path || name, *args)
11
+ end
12
+ end
13
+
14
+ def alias_command(name, *args)
15
+ define_method(name) do |*opts|
16
+ Command.new(shell, *args, *opts)
17
+ end
18
+ end
19
+ end
20
+
21
+ DEFAULT_COMMANDS = %w[
22
+ cd
23
+ pwd
24
+ ].each do |cmd|
25
+ def_system_command(cmd)
26
+ end
27
+
28
+ def initialize(shell)
29
+ @shell = shell
30
+ end
31
+ end
32
+ end
@@ -0,0 +1,133 @@
1
+ require "tempfile"
2
+ require_relative "commander"
3
+
4
+ module ShellB
5
+ class Shell
6
+ class << self
7
+ def def_system_command(name, path = nil)
8
+ Commander.def_system_command(name, path)
9
+ end
10
+
11
+ def alias_command(name, *args)
12
+ Commander.alias_command(name, *args)
13
+ end
14
+ end
15
+
16
+ attr_reader :opts
17
+ def initialize(opts = {})
18
+ @commands = []
19
+ @opts = opts
20
+ end
21
+
22
+ def transact(opts = {}, &block)
23
+ instance_eval(&block) if block
24
+ check_point(opts) if opts[:execute]
25
+ end
26
+
27
+ def run(opts = {}, &block)
28
+ transact(opts.merge(execute: true), &block)
29
+ end
30
+
31
+ def run!(opts = {}, &block)
32
+ run(opts.merge(exit_on_errors: true), &block)
33
+ end
34
+
35
+ def attempt(opts = {}, &block)
36
+ run(opts.merge(ignore_errors: true), &block)
37
+ end
38
+
39
+ def add_command(command)
40
+ @commands << command
41
+ command
42
+ end
43
+
44
+ def drop_command(command)
45
+ @commands -= [command]
46
+ end
47
+
48
+ def check_point(opts = {})
49
+ script = Tempfile.new("script.sh")
50
+ script.write(to_sh(opts))
51
+ script.close
52
+ output = `bash #{script.path}`
53
+ unless $?.exitstatus.zero?
54
+ ee = ShellB::ExecutionError.new(output)
55
+ ee.script = File.read(script)
56
+ raise ee
57
+ end
58
+ rescue ShellB::ExecutionError => ee
59
+ raise(ee) unless opts[:ignore_errors]
60
+ ensure
61
+ @commands = []
62
+ script.close!
63
+ end
64
+ alias execute check_point
65
+
66
+ def to_sh(opts = {})
67
+ str = make_preamble(opts)
68
+ str += @commands.map do |command|
69
+ decorate_command(command, opts)
70
+ end.join("\n\n")
71
+ str
72
+ end
73
+
74
+ def decorate_command(command, opts)
75
+ cmd_str = command.to_sh
76
+ append = if opts[:exit_on_errors]
77
+ "exit $?"
78
+ elsif opts[:ignore_errors]
79
+ "true"
80
+ else
81
+ nil
82
+ end
83
+ cmd_str = wrap_it(cmd_str, "(") unless command.name == "cd"
84
+ [cmd_str, append].compact.join(" || ")
85
+ end
86
+
87
+ def method_missing(meth, *args)
88
+ return super unless commander.respond_to?(meth)
89
+ add_command(commander.public_send(meth, *args))
90
+ end
91
+
92
+ def make_preamble(opts)
93
+ preamble = []
94
+ if opts[:exit_on_errors]
95
+ preamble << %w[set -x]
96
+ preamble << %w[set -e]
97
+ preamble << []
98
+ end
99
+ preamble = preamble.map { |pream| Shellwords.join(pream) }
100
+ preamble.join("\n")
101
+ end
102
+
103
+ def respond_to?(meth)
104
+ super || commander.respond_to?(meth)
105
+ end
106
+
107
+ def commander
108
+ @commander ||= Commander.new(self)
109
+ end
110
+
111
+ def pretty_print(pp)
112
+ pp.object_group(self) do
113
+ pp.breakable
114
+ pp.text "@commands="
115
+ pp.pp @commands
116
+ end
117
+ end
118
+
119
+ private
120
+
121
+ def wrap_it(str, wrap_char)
122
+ return str if wrap_char.nil?
123
+
124
+ wrap_char = "(" if wrap_char == true
125
+ end_char = {
126
+ "(" => ")",
127
+ "{" => "}",
128
+ "[" => "]"
129
+ }[wrap_char] || raise("No matching character for #{wrap_char}")
130
+ "#{wrap_char} #{str} #{end_char}"
131
+ end
132
+ end
133
+ end
@@ -0,0 +1,3 @@
1
+ module ShellB
2
+ VERSION = "0.0.2"
3
+ end
@@ -0,0 +1,43 @@
1
+
2
+ lib = File.expand_path("../lib", __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "shellb/version"
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "shellb"
8
+ spec.version = ShellB::VERSION
9
+ spec.authors = ["Ryan Duryea"]
10
+ spec.email = ["aguynamedryan@gmail.com"]
11
+
12
+ spec.summary = %q{Light DSL to generate shell scripts}
13
+ spec.description = %q{DSL for shell scripts similar to Ruby's Shell class.}
14
+ spec.homepage = "https://github.com/aguynamedryan/shellb"
15
+ spec.license = "MIT"
16
+
17
+ # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
18
+ # to allow pushing to a single host or delete this section to allow pushing to any host.
19
+ if spec.respond_to?(:metadata)
20
+ spec.metadata["allowed_push_host"] = "https://rubygems.org"
21
+
22
+ spec.metadata["homepage_uri"] = spec.homepage
23
+ spec.metadata["source_code_uri"] = "https://github.com/aguynamedryan/shellb"
24
+ spec.metadata["changelog_uri"] = "https://github.com/aguynamedryan/shellb/CHANGELOG.md"
25
+ else
26
+ raise "RubyGems 2.0 or newer is required to protect against " \
27
+ "public gem pushes."
28
+ end
29
+
30
+ # Specify which files should be added to the gem when it is released.
31
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
32
+ spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
33
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
34
+ end
35
+ spec.bindir = "exe"
36
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
37
+ spec.require_paths = ["lib"]
38
+
39
+ spec.add_development_dependency "bundler", "~> 2.0"
40
+ spec.add_development_dependency "rake", "~> 10.0"
41
+ spec.add_development_dependency "rspec", "~> 3.0"
42
+ spec.add_development_dependency "pry-byebug", "~> 3.0"
43
+ end
metadata ADDED
@@ -0,0 +1,120 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: shellb
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.2
5
+ platform: ruby
6
+ authors:
7
+ - Ryan Duryea
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2019-12-03 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '2.0'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '2.0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: pry-byebug
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '3.0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '3.0'
69
+ description: DSL for shell scripts similar to Ruby's Shell class.
70
+ email:
71
+ - aguynamedryan@gmail.com
72
+ executables: []
73
+ extensions: []
74
+ extra_rdoc_files: []
75
+ files:
76
+ - ".gitignore"
77
+ - ".rspec"
78
+ - ".travis.yml"
79
+ - CHANGELOG.md
80
+ - Gemfile
81
+ - Gemfile.lock
82
+ - LICENSE.txt
83
+ - README.md
84
+ - Rakefile
85
+ - bin/console
86
+ - bin/setup
87
+ - lib/shellb.rb
88
+ - lib/shellb/command.rb
89
+ - lib/shellb/commander.rb
90
+ - lib/shellb/shell.rb
91
+ - lib/shellb/version.rb
92
+ - shellb.gemspec
93
+ homepage: https://github.com/aguynamedryan/shellb
94
+ licenses:
95
+ - MIT
96
+ metadata:
97
+ allowed_push_host: https://rubygems.org
98
+ homepage_uri: https://github.com/aguynamedryan/shellb
99
+ source_code_uri: https://github.com/aguynamedryan/shellb
100
+ changelog_uri: https://github.com/aguynamedryan/shellb/CHANGELOG.md
101
+ post_install_message:
102
+ rdoc_options: []
103
+ require_paths:
104
+ - lib
105
+ required_ruby_version: !ruby/object:Gem::Requirement
106
+ requirements:
107
+ - - ">="
108
+ - !ruby/object:Gem::Version
109
+ version: '0'
110
+ required_rubygems_version: !ruby/object:Gem::Requirement
111
+ requirements:
112
+ - - ">="
113
+ - !ruby/object:Gem::Version
114
+ version: '0'
115
+ requirements: []
116
+ rubygems_version: 3.0.6
117
+ signing_key:
118
+ specification_version: 4
119
+ summary: Light DSL to generate shell scripts
120
+ test_files: []