module Bookshark

Constants

VERSION

Public Class Methods

path_to_storage() click to toggle source
# File lib/bookshark.rb, line 28
def self.path_to_storage
  File.join root, 'lib/bookshark/storage'
end
root() click to toggle source
# File lib/bookshark.rb, line 23
def self.root
  # File.dirname __dir__ # Works only on ruby > 2.0.0
  File.expand_path(File.join(File.dirname(__FILE__), '../'))
end