Changeset 1043

Show
Ignore:
Timestamp:
11/24/07 14:31:56 (1 year ago)
Author:
e.@brainspl.at
Message:

add proper dependencies to built gem and readme

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/README

    r1038 r1043  
    2727 
    2828* mongrel 
    29 * json 
    3029* json_pure 
    3130* erubis 
    3231* mime-types 
    3332* rspec 
    34 * hpricot 
    35 * mocha 
    36 * rubigen 
    37 * haml 
    38 * markaby 
    39 * mailfactory 
    40 * Ruby2Ruby 
     33* rubigen  
     34* ruby2ruby  
     35* rake  
     36  
     37** If you are on windows see this blog post oj how to get up and running: 
     38http://www.ghostonthird.com/2007/11/17/merb-on-windows-it-works/ 
     39  
     40You must also have either the json or json_pure gem installed. Note that the json gem  
     41provides a faster library but will not work with jRuby.  
     42  
     43Optionally, merb can take advantage of the following gems:  
     44  
     45* mailfactory (if you wish to use merb's mailers)  
     46* haml (if you wish to use HAML templates, i.e. .haml files)  
     47* markaby (if you wish to use Markaby template, i.e. .mab files)  
     48* builder (if you wish to use Builder templates, i.e. .rxml, .rerb or .builder files)  
     49* memcache-client (for use with Danga Interactive's memcached)  
     50* swiftiply  
     51* eventmachine  
     52* rcov 
    4153 
    4254You will also probably need to install your ORM of choice as well as any gem plugins you want to use (see below). 
  • trunk/Rakefile

    r1039 r1043  
    6363  s.add_dependency('mime-types') 
    6464  s.add_dependency('rubigen') 
     65  s.add_dependency('rake')  
     66  s.add_dependency('ruby2ruby')  
     67  s.add_dependency('json_pure')  
     68  s.requirements << 'install the json gem to get faster json parsing' 
    6569  s.required_ruby_version = '>= 1.8.4' 
    6670