├── .document ├── .gitignore ├── LICENSE ├── README.md ├── Rakefile ├── VERSION.yml ├── generators └── truck │ ├── USAGE │ ├── lib │ └── insert_commands.rb │ ├── templates │ ├── legacy_base.rb │ ├── legacy_model.erb │ └── legacy_task.erb │ └── truck_generator.rb ├── lib └── trucker.rb ├── rails └── init.rb ├── spec ├── spec.opts ├── spec_helper.rb └── trucker_spec.rb └── trucker.gemspec /.document: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokolabs/trucker/HEAD/.document -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokolabs/trucker/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokolabs/trucker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokolabs/trucker/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokolabs/trucker/HEAD/Rakefile -------------------------------------------------------------------------------- /VERSION.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokolabs/trucker/HEAD/VERSION.yml -------------------------------------------------------------------------------- /generators/truck/USAGE: -------------------------------------------------------------------------------- 1 | script/generate truck -------------------------------------------------------------------------------- /generators/truck/lib/insert_commands.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokolabs/trucker/HEAD/generators/truck/lib/insert_commands.rb -------------------------------------------------------------------------------- /generators/truck/templates/legacy_base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokolabs/trucker/HEAD/generators/truck/templates/legacy_base.rb -------------------------------------------------------------------------------- /generators/truck/templates/legacy_model.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokolabs/trucker/HEAD/generators/truck/templates/legacy_model.erb -------------------------------------------------------------------------------- /generators/truck/templates/legacy_task.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokolabs/trucker/HEAD/generators/truck/templates/legacy_task.erb -------------------------------------------------------------------------------- /generators/truck/truck_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokolabs/trucker/HEAD/generators/truck/truck_generator.rb -------------------------------------------------------------------------------- /lib/trucker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokolabs/trucker/HEAD/lib/trucker.rb -------------------------------------------------------------------------------- /rails/init.rb: -------------------------------------------------------------------------------- 1 | require 'trucker' -------------------------------------------------------------------------------- /spec/spec.opts: -------------------------------------------------------------------------------- 1 | --color 2 | -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokolabs/trucker/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/trucker_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokolabs/trucker/HEAD/spec/trucker_spec.rb -------------------------------------------------------------------------------- /trucker.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokolabs/trucker/HEAD/trucker.gemspec --------------------------------------------------------------------------------