Sha256: 2edd72855fe8c2f33aa788ccb68ea60326381bcdfca51ca5aea139dedb41942d

Contents?: true

Size: 936 Bytes

Versions: 1

Compression:

Stored size: 936 Bytes

Contents

$:.unshift(File.dirname(__FILE__)) unless $:.include?(File.dirname(__FILE__)) || $:.include?(File.expand_path(File.dirname(__FILE__)))

require "google/api_client"
require "active_support"

module BigBroda

  autoload  :VERSION,  'bigbroda/version.rb'
  autoload  :Config,   'bigbroda/config.rb'
  autoload  :Auth,     'bigbroda/auth.rb'
  autoload  :Client,   'bigbroda/client.rb'
  autoload  :Project,  'bigbroda/project.rb'
  autoload  :Dataset,  'bigbroda/dataset.rb'
  autoload  :Table,    'bigbroda/table.rb'
  autoload  :TableData,'bigbroda/table_data.rb'
  autoload  :Jobs,     'bigbroda/jobs.rb'

  if defined?(::Rails::Railtie)
    autoload  :Rails,   'bigbroda/engine.rb' if ::Rails.version >= '3.1'
  end

  if defined?(::Rails::Railtie)
    autoload  :Rails,   'bigbroda/engine.rb' if ::Rails.version >= '3.1'
    require File.join(File.dirname(__FILE__), *%w[bigbroda railtie]) if ::Rails.version.to_s >= '3.1'
  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
bigbroda-0.1.0.pre lib/bigbroda.rb