Sha256: 7b36a8e946d016b8edfda41b47152f180094e0a370a9db3bfc27acfb139dd8e8

Contents?: true

Size: 1.14 KB

Versions: 1

Compression:

Stored size: 1.14 KB

Contents

# desc "Explaining what the task does"
# task :jackpot do
#   # Task goes here
# end
#
namespace :jackpot do
  task :environment do
    require './spec/dummy/config/environment'
  end

  task :routes => :environment do
    all_routes = Jackpot::Engine.routes.routes

    if ENV['CONTROLLER']
      all_routes = all_routes.select{ |route| route.defaults[:controller] == ENV['CONTROLLER'] }
    end

    routes = all_routes.collect do |route|

      reqs = route.requirements.dup
      reqs[:to] = route.app unless route.app.class.name.to_s =~ /^ActionDispatch::Routing/
      reqs = reqs.empty? ? "" : reqs.inspect

      {:name => route.name.to_s, :verb => route.verb.to_s, :path => route.path, :reqs => reqs}
    end

     # Skip the route if it's internal info route
    routes.reject! { |r| r[:path] =~ %r{/rails/info/properties|^/assets} }

    name_width = routes.map{ |r| r[:name].length }.max
    verb_width = routes.map{ |r| r[:verb].length }.max
    path_width = routes.map{ |r| r[:path].length }.max

    routes.each do |r|
      puts "#{r[:name].rjust(name_width)} #{r[:verb].ljust(verb_width)} #{r[:path].ljust(path_width)} #{r[:reqs]}"
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
jackpot-0.0.3 lib/tasks/jackpot_tasks.rake