Changeset 931
- Timestamp:
- 11/10/07 19:54:09 (1 year ago)
- Files:
-
- apps/merki/trunk/Rakefile (modified) (1 diff)
- apps/merki/trunk/app/mailers/views/layout/application.html.erb (added)
- apps/merki/trunk/app/mailers/views/layout/application.text.erb (added)
- apps/merki/trunk/app/parts/helpers (added)
- apps/merki/trunk/app/parts/views (added)
- apps/merki/trunk/app/parts/views/layout (added)
- apps/merki/trunk/app/parts/views/layout/application.html.erb (added)
- apps/merki/trunk/app/views/layout/application.html.erb (modified) (1 diff)
- apps/merki/trunk/config/dependencies.rb (modified) (1 diff)
- apps/merki/trunk/config/merb.yml (modified) (1 diff)
- apps/merki/trunk/spec/spec_helper.rb (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
apps/merki/trunk/Rakefile
r930 r931 8 8 MERB_ENV = ENV['MERB_ENV'] if ENV['MERB_ENV'] 9 9 10 if File.directory?( File.join(File.dirname(__FILE__), "framework")) 11 $:.unshift('framework') 12 require File.join(File.dirname(__FILE__), "framework/merb") 13 else 14 require 'merb' 15 end 10 require File.dirname(__FILE__)+'/config/boot.rb' 16 11 require MERB_FRAMEWORK_ROOT+'/tasks' 17 12 MERB_ROOT = File.dirname(__FILE__) apps/merki/trunk/app/views/layout/application.html.erb
r930 r931 1 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 2 <html xmlns="http://www.w3.org/1999/xhtml" >2 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-us" lang="en-us"> 3 3 <head> 4 4 <title>Fresh Merb App</title> 5 <meta http-equiv="content-type" content="text/html; charset= iso-8859-1" />5 <meta http-equiv="content-type" content="text/html; charset=utf-8" /> 6 6 <link rel="stylesheet" href="/stylesheets/master.css" type="text/css" media="screen" charset="utf-8"> 7 7 </head> apps/merki/trunk/config/dependencies.rb
r930 r931 29 29 # These are some examples of how you might specify dependencies. 30 30 # 31 # dependencies "RedCloth", "merb -form-helpers"31 # dependencies "RedCloth", "merb_helpers" 32 32 # OR 33 33 # dependency "RedCloth", "> 3.0" apps/merki/trunk/config/merb.yml
r930 r931 22 22 # A secret key is required when using the 'cookie' session store (default), 23 23 # change this value to something unique to your application and keep it private 24 :session_secret_key: /USERS/IVEY/CODE/MERKI925524 :session_secret_key: MERKI4711 25 25 26 26 # Uncomment to use the merb upload progress. The 'path match' will be treated as apps/merki/trunk/spec/spec_helper.rb
r930 r931 1 1 require File.join(File.dirname(__FILE__), "..", 'config', 'boot') 2 2 MERB_ENV="test" 3 3 $TESTING=true 4 4 … … 8 8 require 'merb/test/rspec' 9 9 10 11 DataMapper::Base.auto_migrate! 10 12 ### METHODS BELOW THIS LINE SHOULD BE EXTRACTED TO MERB ITSELF
