├── .document ├── .gitignore ├── .rspec ├── .rubocop.yml ├── .travis.yml ├── ChangeLog.markdown ├── Gemfile ├── Guardfile ├── LICENSE ├── README.markdown ├── Rakefile ├── bin └── homesick ├── homesick.gemspec ├── lib ├── homesick.rb └── homesick │ ├── actions │ ├── file_actions.rb │ └── git_actions.rb │ ├── cli.rb │ ├── utils.rb │ └── version.rb └── spec ├── homesick_cli_spec.rb ├── spec.opts └── spec_helper.rb /.document: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicalpickles/homesick/HEAD/.document -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicalpickles/homesick/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicalpickles/homesick/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicalpickles/homesick/HEAD/.travis.yml -------------------------------------------------------------------------------- /ChangeLog.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicalpickles/homesick/HEAD/ChangeLog.markdown -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicalpickles/homesick/HEAD/Gemfile -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicalpickles/homesick/HEAD/Guardfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicalpickles/homesick/HEAD/LICENSE -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicalpickles/homesick/HEAD/README.markdown -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicalpickles/homesick/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/homesick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicalpickles/homesick/HEAD/bin/homesick -------------------------------------------------------------------------------- /homesick.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicalpickles/homesick/HEAD/homesick.gemspec -------------------------------------------------------------------------------- /lib/homesick.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicalpickles/homesick/HEAD/lib/homesick.rb -------------------------------------------------------------------------------- /lib/homesick/actions/file_actions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicalpickles/homesick/HEAD/lib/homesick/actions/file_actions.rb -------------------------------------------------------------------------------- /lib/homesick/actions/git_actions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicalpickles/homesick/HEAD/lib/homesick/actions/git_actions.rb -------------------------------------------------------------------------------- /lib/homesick/cli.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicalpickles/homesick/HEAD/lib/homesick/cli.rb -------------------------------------------------------------------------------- /lib/homesick/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicalpickles/homesick/HEAD/lib/homesick/utils.rb -------------------------------------------------------------------------------- /lib/homesick/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicalpickles/homesick/HEAD/lib/homesick/version.rb -------------------------------------------------------------------------------- /spec/homesick_cli_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicalpickles/homesick/HEAD/spec/homesick_cli_spec.rb -------------------------------------------------------------------------------- /spec/spec.opts: -------------------------------------------------------------------------------- 1 | --color 2 | -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicalpickles/homesick/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------