Sha256: 95c666dc190b10132a782ac4ea1fc408eca3a594e3feea73210596580c7c4d60

Contents?: true

Size: 797 Bytes

Versions: 7

Compression:

Stored size: 797 Bytes

Contents

# If you need to require in code in the gem's app folder, keep in mind that
# the app is not on the load path when the gem is required.  Use
# app/{gemname}/config/initializers/boot.rb to require in client or server
# code.
#
# Also, in volt apps, you typically use the lib folder in the
# app/{componentname} folder instead of this lib folder.  This lib folder is
# for setting up gem code when Bundler.require is called. (or the gem is
# required.)
#
# If you need to configure volt in some way, you can add a Volt.configure block
# in this file.


Volt.configure do |config|
  # Set the datastore to sql
  config.public.datastore_name = 'sql'

  # Include the sql component on the client
  config.default_components << 'sql'
end

module Volt
  module Sql
    # Your code goes here...
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
volt-sql-0.0.7 lib/volt/sql.rb
volt-sql-0.0.6 lib/volt/sql.rb
volt-sql-0.0.5 lib/volt/sql.rb
volt-sql-0.0.4 lib/volt/sql.rb
volt-sql-0.0.3 lib/volt/sql.rb
volt-sql-0.0.2 lib/volt/sql.rb
volt-sql-0.0.1 lib/volt/sql.rb