Sha256: d3a508c687ad81132e272ad9f3a929b0b6b68dc42e78ea2c4924fb7021cf4981
Contents?: true
Size: 357 Bytes
Versions: 5
Compression:
Stored size: 357 Bytes
Contents
# frozen_string_literal: true require 'rails' # require 'capistrano/ops' module Capistrano module Ops module Libs class Railtie < ::Rails::Railtie railtie_name :ops rake_tasks do path = File.expand_path(__dir__) Dir.glob("#{path}/tasks/**/*.rake").each { |f| load f } end end end end end
Version data entries
5 entries across 5 versions & 1 rubygems