pushtype/push_type

View on GitHub
admin/lib/push_type/admin/assets.rb

Summary

Maintainability
A
0 mins
Test Coverage
module PushType
  module Admin
    class Assets

      attr_accessor :javascripts, :stylesheets

      def initialize
        @javascripts = []
        @stylesheets = []
      end

      def register(lib)
        @javascripts << lib
        @stylesheets << lib
      end

    end
  end
end