File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,6 +3,12 @@ Bashly - Bash CLI Generator
33
44Create beautiful bash scripts from simple YAML configuration.
55
6+ [ ![ Gem Version] ( https://badge.fury.io/rb/bashly.svg )] ( https://badge.fury.io/rb/bashly )
7+ [ ![ Build Status] ( https://travis-ci.com/DannyBen/bashly.svg?branch=master )] ( https://travis-ci.com/DannyBen/bashly )
8+ [ ![ Maintainability] ( https://api.codeclimate.com/v1/badges/8cf89047e50ca601e431/maintainability )] ( https://codeclimate.com/github/DannyBen/bashly/maintainability )
9+
10+ ---
11+
612![ demo] ( demo/cast.svg )
713
814---
@@ -46,3 +52,6 @@ Contributing / Support
4652
4753If you experience any issue, have a question or a suggestion, or if you wish
4854to contribute, feel free to [ open an issue] [ issues ] .
55+
56+ [ issues ] : https://github.com/DannyBen/bashly/issues
57+
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ Gem::Specification.new do |s|
1717 s . license = 'MIT'
1818 s . required_ruby_version = ">= 2.3.0"
1919
20- s . add_runtime_dependency 'colsole' , '~> 0.5 '
21- s . add_runtime_dependency 'mister_bin' , '~> 0.6 '
20+ s . add_runtime_dependency 'colsole' , '~> 0.6 '
21+ s . add_runtime_dependency 'mister_bin' , '~> 0.7 '
2222 s . add_runtime_dependency 'requires' , '~> 0.1'
2323end
Original file line number Diff line number Diff line change 55 require 'lp'
66end
77
8+ requires 'bashly/polyfills'
89requires 'bashly/settings'
910requires 'bashly/exceptions'
1011requires 'bashly/concerns'
Original file line number Diff line number Diff line change 1+ # :nocov:
2+
3+ # Required for Ruby < 2.4
4+ if !Dir . respond_to? :empty?
5+ class Dir
6+ def self . empty? ( path_name )
7+ exist? ( path_name ) && ( entries ( path_name ) - [ '.' , '..' ] ) . empty?
8+ end
9+ end
10+ end
Original file line number Diff line number Diff line change 1- Errno ::ENOENT
1+ [4;31mErrno ::ENOENT[0m
22No such file or directory @ rb_sysopen - src/bashly.yml
3- creating user files in src
3+ creating user files in [0;32msrc
4+ [0m
You can’t perform that action at this time.
0 commit comments