├── .gitignore ├── .rspec ├── .ruby-version ├── .travis.yml ├── Gemfile ├── LICENSE ├── Rakefile ├── Readme.md ├── lib ├── generators │ └── active_record │ │ ├── resort_generator.rb │ │ └── templates │ │ └── migration.rb ├── resort.rb └── resort │ └── version.rb ├── resort.gemspec └── spec ├── generators └── migration_spec.rb ├── resort_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codegram/resort/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --format documentation 3 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.3.1 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codegram/resort/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codegram/resort/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codegram/resort/HEAD/LICENSE -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codegram/resort/HEAD/Rakefile -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codegram/resort/HEAD/Readme.md -------------------------------------------------------------------------------- /lib/generators/active_record/resort_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codegram/resort/HEAD/lib/generators/active_record/resort_generator.rb -------------------------------------------------------------------------------- /lib/generators/active_record/templates/migration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codegram/resort/HEAD/lib/generators/active_record/templates/migration.rb -------------------------------------------------------------------------------- /lib/resort.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codegram/resort/HEAD/lib/resort.rb -------------------------------------------------------------------------------- /lib/resort/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codegram/resort/HEAD/lib/resort/version.rb -------------------------------------------------------------------------------- /resort.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codegram/resort/HEAD/resort.gemspec -------------------------------------------------------------------------------- /spec/generators/migration_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codegram/resort/HEAD/spec/generators/migration_spec.rb -------------------------------------------------------------------------------- /spec/resort_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codegram/resort/HEAD/spec/resort_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codegram/resort/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------