[f133be7 | Wed Mar 07 18:27:47 UTC 2012] Michael Fellinger <m.fellinger@gmail.com>
* Version 2012.03
[cab2aef | Wed Mar 07 18:27:21 UTC 2012] Michael Fellinger <m.fellinger@gmail.com>
* update dependency to rack 1.4.1
[e474964 | Thu Mar 01 19:22:58 UTC 2012] Yorick Peterse <yorickpeterse@gmail.com>
* Fixed various YARD formatting issues.
Signed-off-by: Yorick Peterse <yorickpeterse@gmail.com>
[d82fd1e | Sun Feb 26 13:22:09 UTC 2012] Michael Fellinger <m.fellinger@gmail.com>
* Enable the render helper to render views without corresponding method if needs_method is enabled
[918974e | Sun Feb 26 12:45:50 UTC 2012] Michael Fellinger <m.fellinger@gmail.com>
* Fix initialize of Rack::Cascade on 1.4.1
[0e298de | Wed Dec 28 17:57:58 UTC 2011] Michael Fellinger <m.fellinger@gmail.com>
* Here comes a better Innate::Cache::register, now with less warnings and more speed
[d8a1da4 | Wed Dec 28 05:06:07 UTC 2011] Michael Fellinger <m.fellinger@gmail.com>
* Version 2011.12
[13f9372 | Wed Dec 28 04:54:29 UTC 2011] Michael Fellinger <m.fellinger@gmail.com>
* less obfuscation ftw
[10cf300 | Wed Dec 28 04:54:09 UTC 2011] Michael Fellinger <m.fellinger@gmail.com>
* minor cleanup around specs
[7f61483 | Wed Dec 28 04:53:40 UTC 2011] Michael Fellinger <m.fellinger@gmail.com>
* Update to Rack 1.4.0
[575e900 | Thu Dec 08 17:05:04 UTC 2011] Michael Fellinger <m.fellinger@gmail.com>
* Update travis config
[037f35a | Sun Nov 06 12:18:30 UTC 2011] Yorick Peterse <yorickpeterse@gmail.com>
* Revert "AOP calls can now be stacked."
This reverts commit 3ceb18dae7b774ab9b21cba6538b217ba35d5e21.
Signed-off-by: Yorick Peterse <yorickpeterse@gmail.com>
[3ceb18d | Sun Nov 06 11:30:51 UTC 2011] Yorick Peterse <yorickpeterse@gmail.com>
* AOP calls can now be stacked.
This means that calling methods such as before_all() or before() multiple times
in the same controller will no longer in these calls overwriting previously
defined ones. A short example of this is the following:
class Posts
Innate.node('/posts')
helper :aspect
NUMBERS = []
before_all do
NUMBERS << 10
end
before_all do
NUMBERS << 20
end
def index
return NUMBERS
end
end
Visiting /posts would result in "[10, 20]" being displayed in the browser.
Signed-off-by: Yorick Peterse <yorickpeterse@gmail.com>
[d05190a | 2011-04-19 02:37:16 UTC] Michael Fellinger <m.fellinger@gmail.com>
* Version 2011.04
[bacc603 | 2011-04-19 02:37:03 UTC] Michael Fellinger <m.fellinger@gmail.com>
* Remove rubyforge release task
[05ccf96 | 2011-04-19 02:31:28 UTC] Michael Fellinger <m.fellinger@gmail.com>
* Node::find_method must accept anything that responds to #to_s as method name
[8d4bfd0 | 2011-02-13 23:07:12 UTC] Michael Fellinger <m.fellinger@gmail.com>
* Don't mention :state, it's gone
[2b3a9ca | 2011-01-26 06:12:26 UTC] Michael Fellinger <m.fellinger@gmail.com>
* Version 2011.01
[6039ffa | 2010-12-11 13:58:04 UTC] Michael Fellinger <m.fellinger@gmail.com>
* Adjust spec for changes in Rack
[5e30254 | 2010-09-17 10:58:10 UTC] Antti Tuomi <antti.tuomi@tkk.fi>
* New method for Innate::Session, #resid!, that can be used to change the session key.
The intent of the method is to allow changing session keys when user logs in
to prevent certain session fixation attack vectors. #resid! moves all
session data under a new session key and thus invalidates the old key.
It is probably a good idea to explicitly reset the session data as well on
login, but the necessity of this depends on the application.
[85d45ea | 2010-09-07 01:14:44 UTC] Lee Jarvis <injekt.me@gmail.com>
* updated git url
[51eac73 | 2010-09-06 23:25:22 UTC] Lee Jarvis <injekt.me@gmail.com>
* added gitignore
[32c943c | 2010-09-06 06:02:25 UTC] Lee Jarvis <injekt.me@gmail.com>
* fixed pointless spec addition
[b180c1c | 2010-09-06 06:00:44 UTC] Lee Jarvis <injekt.me@gmail.com>
* added specs for helper suffix
[c7fccc6 | 2010-09-06 05:50:45 UTC] Lee Jarvis <injekt.me@gmail.com>
* removed send_file helper spec
[49c9963 | 2010-09-06 05:49:54 UTC] Lee Jarvis <injekt.me@gmail.com>
* removed send_file from default helpers
[4ca7b0c | 2010-09-06 05:22:23 UTC] Lee Jarvis <injekt.me@gmail.com>
* allow helper modules to be suffixed with 'helper'
this allows us to create helpers which may have identical names as
Models without having namespace conflicts
[7d8437e | 2010-08-26 15:12:26 UTC] Michael Fellinger <m.fellinger@gmail.com>
* Support HttpOnly
[1183bca | 2010-08-20 14:15:58 UTC] Lee Jarvis <injekt.me@gmail.com>
* moved send_file helper to ramaze
[6412640 | 2010-07-21 04:32:15 UTC] injekt <ljjarvis@gmail.com>
* fixed readme formatting
[1ac3e6f | 2010-07-21 04:31:27 UTC] injekt <ljjarvis@gmail.com>
* updated installation docs
* Use lang/ruby/gem.mk instead of misc/rubygems/rubygem.mk.
* Remove default value of GEM_BUILD.
* Update dependency according to gemspec.
Changes are too may to write here, please refer CHANGELOG for detail.