module ApiBlueprint::Compile::Storage

Public Class Methods

index_html() click to toggle source
# File lib/api_blueprint/compile/storage.rb, line 6
def self.index_html
  root_join('assets', 'index.html')
end
javascripts() click to toggle source
# File lib/api_blueprint/compile/storage.rb, line 10
def self.javascripts
  Dir[root_join('assets', '*.js').to_s]
end
root_join(*parts) click to toggle source
# File lib/api_blueprint/compile/storage.rb, line 2
def self.root_join(*parts)
  File.join(File.dirname(__FILE__), *parts)
end
stylesheets() click to toggle source
# File lib/api_blueprint/compile/storage.rb, line 14
def self.stylesheets
  Dir[root_join('assets', '*.scss').to_s]
end