Sha256: 7c74ab14a4653c109d49a934b3ab9e06e8c3e358ace256f75ba65852e802574e

Contents?: true

Size: 506 Bytes

Versions: 5

Compression:

Stored size: 506 Bytes

Contents

desc "Shortcut for index:generate."
task :index => :application do
  Rake::Task[:'index:generate'].invoke
end

desc "Shortcut for try:both"
task :try, [:text, :type_and_field] => :application do |_, options|
  text, type_and_field = options.text, options.type_and_field
  
  Rake::Task[:'try:both'].invoke text, type_and_field
end

desc "shortcut for server:start"
task :start do
  Rake::Task[:'server:start'].invoke
end
desc "shortcut for server:stop"
task :stop do
  Rake::Task[:'server:stop'].invoke
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
picky-0.9.4 lib/tasks/shortcuts.rake
picky-0.9.3 lib/tasks/shortcuts.rake
picky-0.9.2 lib/tasks/shortcuts.rake
picky-0.9.1 lib/tasks/shortcuts.rake
picky-0.9.0 lib/tasks/shortcuts.rake