├── .gitignore ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── bin └── mvmv ├── lib ├── mvmv.rb └── mvmv │ ├── command.rb │ └── version.rb ├── mvmv.gemspec └── test ├── bin_helper.rb └── test_mvmv.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junegunn/mvmv/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junegunn/mvmv/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junegunn/mvmv/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junegunn/mvmv/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junegunn/mvmv/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/mvmv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junegunn/mvmv/HEAD/bin/mvmv -------------------------------------------------------------------------------- /lib/mvmv.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junegunn/mvmv/HEAD/lib/mvmv.rb -------------------------------------------------------------------------------- /lib/mvmv/command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junegunn/mvmv/HEAD/lib/mvmv/command.rb -------------------------------------------------------------------------------- /lib/mvmv/version.rb: -------------------------------------------------------------------------------- 1 | class Mvmv 2 | VERSION = "0.1.2" 3 | end 4 | -------------------------------------------------------------------------------- /mvmv.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junegunn/mvmv/HEAD/mvmv.gemspec -------------------------------------------------------------------------------- /test/bin_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junegunn/mvmv/HEAD/test/bin_helper.rb -------------------------------------------------------------------------------- /test/test_mvmv.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junegunn/mvmv/HEAD/test/test_mvmv.rb --------------------------------------------------------------------------------