├── Gemfile ├── Gemfile.lock ├── MIT-LICENSE ├── README.md ├── Rakefile ├── commands.gemspec ├── lib ├── commands.rb └── rails │ └── commands │ ├── commander.rb │ ├── console_delegation.rb │ ├── environment.rb │ ├── generator.rb │ ├── raker.rb │ ├── test_environment.rb │ └── tester.rb └── test └── commands_test.rb /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/commands/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/commands/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/commands/HEAD/MIT-LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/commands/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/commands/HEAD/Rakefile -------------------------------------------------------------------------------- /commands.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/commands/HEAD/commands.gemspec -------------------------------------------------------------------------------- /lib/commands.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/commands/HEAD/lib/commands.rb -------------------------------------------------------------------------------- /lib/rails/commands/commander.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/commands/HEAD/lib/rails/commands/commander.rb -------------------------------------------------------------------------------- /lib/rails/commands/console_delegation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/commands/HEAD/lib/rails/commands/console_delegation.rb -------------------------------------------------------------------------------- /lib/rails/commands/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/commands/HEAD/lib/rails/commands/environment.rb -------------------------------------------------------------------------------- /lib/rails/commands/generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/commands/HEAD/lib/rails/commands/generator.rb -------------------------------------------------------------------------------- /lib/rails/commands/raker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/commands/HEAD/lib/rails/commands/raker.rb -------------------------------------------------------------------------------- /lib/rails/commands/test_environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/commands/HEAD/lib/rails/commands/test_environment.rb -------------------------------------------------------------------------------- /lib/rails/commands/tester.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/commands/HEAD/lib/rails/commands/tester.rb -------------------------------------------------------------------------------- /test/commands_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/commands/HEAD/test/commands_test.rb --------------------------------------------------------------------------------