├── .gitignore ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin └── matsuya ├── lib ├── matsuya.rb └── matsuya │ └── version.rb └── matsuya.gemspec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshia/matsuya-generator-ruby/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshia/matsuya-generator-ruby/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshia/matsuya-generator-ruby/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshia/matsuya-generator-ruby/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshia/matsuya-generator-ruby/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/matsuya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshia/matsuya-generator-ruby/HEAD/bin/matsuya -------------------------------------------------------------------------------- /lib/matsuya.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshia/matsuya-generator-ruby/HEAD/lib/matsuya.rb -------------------------------------------------------------------------------- /lib/matsuya/version.rb: -------------------------------------------------------------------------------- 1 | module Matsuya 2 | VERSION = "1.0.0" 3 | end 4 | -------------------------------------------------------------------------------- /matsuya.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshia/matsuya-generator-ruby/HEAD/matsuya.gemspec --------------------------------------------------------------------------------