public
Rubygem
Description: Merb Core: All you need. None you don't.
Homepage: http://www.merbivore.com
Clone URL: git://github.com/wycats/merb-core.git
Search Repo:
Prep 0.9.2
ivey (author)
Mon Mar 24 20:36:55 -0700 2008
commit  cf52650f9241b94c28665fc9b56e0337adbd950d
tree    8a0a0b1e92fbb6b56ab040841967eaa651d3ab09
parent  81f348c40971437c1ed1edaff6fe5fae6951e16a
...
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
0
@@ -1,3 +1,60 @@
0
+== 0.9.2 "appropriate response to reality" 2008-03-24
0
+* removed Merb.logger calls due to the fact the bootloader did not ran by now and it is not initialized.
0
+* use __send__ rather than send
0
+* Fixed exception setting route when route_index is nil
0
+* memoize the raw_post body after its called once
0
+* fix Request#raw_post to respect bodies with no rewind method
0
+* remove Kernel#requires it wasn't being used.
0
+* Move fixation to post initialize
0
+* add specs for does_not_provide
0
+* Add specs for action-level only_provides
0
+* Make controller.route work
0
+* Update Ebb adapter to work with latest Ebb 0.1.0 [Ry Dahl]
0
+* fix PATH_INFO bug for fcgi
0
+* Rename url_with_host to absolute_url
0
+* Add url_with_host() and allow params to be pushed into FCGI adapter
0
+* More correct to_json of dictionary.
0
+* Modify dispatcher to be sane to XHRs; add to_json to dictionaries.
0
+* Added html_escape around the exception.message in the show details section.
0
+* Fixed bug not allowing have_tag to be called without a attribute hash, even when one is not desired
0
+* refactor and clean up Merb::BootLoader::Dependencies [James Herdman]
0
+* Merb::BootLoader::LoadClasses should keep unique list of classes
0
+* Logger now works as expected, fixed ReloadClasses bootloader
0
+* Fixes cookie sessions when the session is blanked out.
0
+* catch_content should default to :for_layout
0
+* Added --sandbox (-S) option for IRB console
0
+* Added Merb.testing? method
0
+* Fixes the dispatch_to request helper to conver the action name to a string.
0
+* Added Merb.testing? method
0
+* Fixed critical bug in LoadClasses BootLoader concerning reloading
0
+* Important changes to the BootLoader process
0
+* Added Kernel.load_dependencies method; better docs/comments.
0
+* Bugfixes concerning BootLoader and load order in general
0
+* fully qualify fcgi rack handler
0
+* Set mongrel as default adapter unless other alternative options are specified
0
+* Fix configuring session_id_key so that it works
0
+* url(:foo, 3) should notice 3 is a Fixnum, and use it instead of 3.id
0
+* make load order of core_ext explicit
0
+* Modifies before/after in BootLoader to actually work.
0
+* ix not-available vs. not-provided bug in content negotiation
0
+* Fixed display bug which caused default error exception pages to improperly display drop-down twirly if the path name exceeded the line length.
0
+* remove symbolize_keys! as we don't use it anywhere. by now..
0
+* Rework bootloader to make more sense for flat apps (specifically framework load)
0
+* More fixes to the flat autoloader
0
+* remove custom_* resource route, use :member or :collection instead
0
+* fix logger specs
0
+* Fixes bug with framework not being defined.
0
+* make sure logger bang! methods do not flush unless the proper log level is used.
0
+* Updates the request spec to account for the new from_xml behaviour
0
+* Adds specs and changes for compatibility with ActiveSupport. There is one caveat. It will not change YAML generated Hash keys to strings if they are defined as symbols as is currently the behaviour of ActiveSupport.
0
+* update the logger. no longer accept an optional block to call.
0
+* remove some vestigal config defaults
0
+* Add rack adapter for Ebb, damn it's fast!
0
+* coerce the port to an integer when starting mongrel (jruby compat)
0
+* remove specs for dependency as they were broittle and not testing the right thing.
0
+* Fixes #155 (_perform_content_negotiation doesn't find */* if it comes last in the accept header order, and nothing else matches)
0
+* Changes use_test to wrap only the call to dependencies in the check for Merb.environment == "test"
0
+
0
 == 0.9.1 "Some are half-wild, and some are just outlaws." 2008-02-29
0
 
0
 * As a last resort, look for */* in the formats before throwing NotAcceptable (TODO: Clean this up)
...
1
2
 
3
4
5
...
1
 
2
3
4
5
0
@@ -1,5 +1,5 @@
0
 module Merb
0
- VERSION = '0.9.1' unless defined?(Merb::VERSION)
0
+ VERSION = '0.9.2' unless defined?(Merb::VERSION)
0
 
0
   # Merb::RELEASE meanings:
0
   # 'dev' : unreleased

Comments

    No one has commented yet.