Sha256: 2d3e7491bf3ba23b1f694f63ab0b0759fe008a4989201df040165a828e96ed2f

Contents?: true

Size: 1.35 KB

Versions: 4

Compression:

Stored size: 1.35 KB

Contents

# encoding: utf-8

# Make the app's "gems" directory a place where gems are loaded from
Gem.clear_paths
Gem.path.unshift(Rango.root / "gems")

# Make the app's "lib" directory a place where ruby files get "require"d from
$LOAD_PATH.unshift(Rango.root / "lib")

Rango::Config.use { |c|
  c[:session_store]      = 'cookie'
  c[:session_secret_key] = "2c24532b38b8c46d8acf1b5ed71bdd5426dadd9b"
}

### Rango doesn't come with database support by default.  You need
### an ORM plugin.  Install one, and uncomment one of the following lines,
### if you need a database.

### Uncomment for DataMapper ORM
# use_orm :datamapper

### Uncomment for ActiveRecord ORM
# use_orm :activerecord

### Uncomment for Sequel ORM
# use_orm :sequel

### This defines which test framework the generators will use
### rspec is turned on by default
# use_test :test_unit
# use_test :rspec

### Add your other dependencies here

# These are some examples of how you might specify dependencies.
#
# dependencies "RedCloth", "merb_helpers"
# OR
# dependency "RedCloth", "> 3.0"
# OR
# dependencies "RedCloth" => "> 3.0", "ruby-aes-cext" => "= 1.0"
dependency File.join(File.dirname(__FILE__),'..','..','..','lib','merb-helpers')

Rango::BootLoader.after_app_loads do
  ### Add dependencies here that must load after the application loads:

  # dependency "magic_admin" # this gem uses the app's model classes
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
rango-0.1.0 spec/rango/helpers/merb-helpers/fixture/config/init.rb
rango-0.0.6 spec/rango/helpers/merb-helpers/fixture/config/init.rb
rango-0.1.pre spec/rango/helpers/merb-helpers/fixture/config/init.rb
rango-0.0.4 spec/rango/helpers/merb-helpers/fixture/config/init.rb