Sha256: 795aef723604c4196cae5be0398dc562a6d148e7174fd6a72c7cfd330eea94ad
Contents?: true
Size: 1.34 KB
Versions: 3
Compression:
Stored size: 1.34 KB
Contents
module BowerRails require 'bower-rails/railtie' if defined?(Rails) require 'bower-rails/dsl' extend self class << self # The root path of the project attr_accessor :root_path # An array of tasks to enhance `rake assets:precompile` attr_reader :tasks # If set to true then rake bower:install task is invoked before assets precompilation attr_accessor :install_before_precompile # If set to true then rake bower:install && rake bower:resolve tasks # are invoked before assets precompilation attr_accessor :resolve_before_precompile # If set to true then rake bower:install && rake bower:clean && rake bower:resolve tasks # are invoked before assets precompilation attr_accessor :clean_before_precompile def configure &block yield self if block_given? collect_tasks end private def collect_tasks @tasks << ['bower:install'] if @install_before_precompile @tasks << ['bower:install', 'bower:resolve'] if @resolve_before_precompile @tasks << ['bower:install', 'bower:clean'] if @clean_before_precompile @tasks.flatten! @tasks.uniq! end end # Set default values for options @root_path = Dir.pwd @tasks = [] @install_before_precompile = false @resolve_before_precompile = false @clean_before_precompile = false end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
bower-rails-0.8.2 | lib/bower-rails.rb |
bower-rails-0.8.1 | lib/bower-rails.rb |
bower-rails-0.8.0 | lib/bower-rails.rb |