Sha256: 6f5363e72c61f8fa0ba95181e3b6d3b59eed3e7360fa1132f45959fc91b0dd23

Contents?: true

Size: 1.12 KB

Versions: 11

Compression:

Stored size: 1.12 KB

Contents

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

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

### Merb 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"

Merb::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

11 entries across 11 versions & 3 rubygems

Version Path
derailed-mole-1.0.10 samples/merbapp/config/dependencies.rb
merb-0.5.0 app_generators/merb/templates/config/dependencies.rb
merb-0.5.1 app_generators/merb/templates/config/dependencies.rb
merb-0.5.2 app_generators/merb/templates/config/dependencies.rb
merb-0.5.3 app_generators/merb/templates/config/dependencies.rb
mole-1.0.7 samples/merbapp/config/dependencies.rb
mole-1.0.8 samples/merbapp/config/dependencies.rb
mole-1.0.11 samples/merbapp/config/dependencies.rb
mole-1.0.12 samples/merbapp/config/dependencies.rb
mole-1.0.6 samples/merbapp/config/dependencies.rb
mole-1.0.9 samples/merbapp/config/dependencies.rb