├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── big_stash.gemspec ├── bin ├── big-stash └── setup ├── lib ├── big_stash.rb └── big_stash │ ├── stash_operator.rb │ └── version.rb ├── resources └── demo.png └── spec └── big_stash_help.rb /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKeeper/bigstash/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKeeper/bigstash/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKeeper/bigstash/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKeeper/bigstash/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKeeper/bigstash/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKeeper/bigstash/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKeeper/bigstash/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKeeper/bigstash/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKeeper/bigstash/HEAD/Rakefile -------------------------------------------------------------------------------- /big_stash.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKeeper/bigstash/HEAD/big_stash.gemspec -------------------------------------------------------------------------------- /bin/big-stash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKeeper/bigstash/HEAD/bin/big-stash -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKeeper/bigstash/HEAD/bin/setup -------------------------------------------------------------------------------- /lib/big_stash.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKeeper/bigstash/HEAD/lib/big_stash.rb -------------------------------------------------------------------------------- /lib/big_stash/stash_operator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKeeper/bigstash/HEAD/lib/big_stash/stash_operator.rb -------------------------------------------------------------------------------- /lib/big_stash/version.rb: -------------------------------------------------------------------------------- 1 | module BigStash 2 | VERSION = '0.6.0'.freeze 3 | end 4 | -------------------------------------------------------------------------------- /resources/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKeeper/bigstash/HEAD/resources/demo.png -------------------------------------------------------------------------------- /spec/big_stash_help.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigKeeper/bigstash/HEAD/spec/big_stash_help.rb --------------------------------------------------------------------------------