Sha256: 75b063c785b2b19f6fb92fd138add452d533b198418c6f64dcd65d95bc978876

Contents?: true

Size: 1.25 KB

Versions: 4

Compression:

Stored size: 1.25 KB

Contents

require "fullcalendar/version"

module Fullcalendar
  #thanks to bootstrap-rubygem
  class << self
    # Inspired by Kaminari
    def load!
      if rails?
        register_rails_engine
      elsif hanami?
        register_hanami
      elsif sprockets?
        register_sprockets
      end

      configure_sass
    end

    # Paths
    def gem_path
      @gem_path ||= File.expand_path '..', File.dirname(__FILE__)
    end

    def stylesheets_path
      File.join assets_path, 'stylesheets'
    end

    def javascripts_path
      File.join assets_path, 'javascripts'
    end

    def assets_path
      @assets_path ||= File.join gem_path, 'vendor/assets'
    end

    # Environment detection helpers
    def sprockets?
      defined?(::Sprockets)
    end

    def rails?
      defined?(::Rails)
    end

    def hanami?
      defined?(::Hanami)
    end

    private

    def configure_sass
      require 'sass'

      ::Sass.load_paths << stylesheets_path
    end

    def register_rails_engine
      require 'fullcalendar/engine'
    end

    def register_sprockets
      Sprockets.append_path(stylesheets_path)
      Sprockets.append_path(javascripts_path)
    end

    def register_hanami
      Hanami::Assets.sources << assets_path
    end
  end

end

Fullcalendar.load!

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
fullcalendar-3.9.0 lib/fullcalendar.rb
fullcalendar-3.8.2 lib/fullcalendar.rb
fullcalendar-3.8.1 lib/fullcalendar.rb
fullcalendar-3.8.0 lib/fullcalendar.rb