Skip to content

Commit

Permalink
Version 2009.07
Browse files Browse the repository at this point in the history
  • Loading branch information
manveru committed Jul 19, 2009
1 parent 3ed8553 commit 03274f3
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 14 deletions.
2 changes: 1 addition & 1 deletion AUTHORS
@@ -1,7 +1,7 @@
Following persons have contributed to innate.
(Sorted by number of submitted patches, then alphabetically)

715 Michael Fellinger <m.fellinger@gmail.com>
721 Michael Fellinger <m.fellinger@gmail.com>
31 Tadahiko Uehara <kikofx@gmail.com>
8 Pistos <gitsomegrace.5.pistos@geoshell.com>
5 Ryan Grove <ryan@wonko.com>
Expand Down
27 changes: 27 additions & 0 deletions CHANGELOG
@@ -1,3 +1,30 @@
[3ed8553 | 2009-07-19 03:01:48 UTC] Michael Fellinger <m.fellinger@gmail.com>

* Update dependencies

[4e09c15 | 2009-07-06 10:12:43 UTC] Michael Fellinger <m.fellinger@gmail.com>

* Implement an OpenSSL fallback for Session IDs

Comes into play in case SecureRandom cannot be found.
This should cover 99% of all < 1.8.7 installs.

[cf9cdce | 2009-07-02 08:05:45 UTC] Michael Fellinger <m.fellinger@gmail.com>

* More intelligent gem_setup to handle cases where a library can be found via require but ain't a gem

[337f092 | 2009-07-02 08:05:02 UTC] Michael Fellinger <m.fellinger@gmail.com>

* Use absolute paths for spec requires

[7a475b9 | 2009-06-14 14:14:47 UTC] Michael Fellinger <m.fellinger@gmail.com>

* Require rubygems >= 1.3.1

[7f41b89 | 2009-06-12 12:54:32 UTC] Michael Fellinger <m.fellinger@gmail.com>

* Version 2009.06.12

[e92a8b3 | 2009-06-11 15:41:35 UTC] Michael Fellinger <m.fellinger@gmail.com>

* Make sure that instance-variables set in the view template can be used in the layout
Expand Down
23 changes: 11 additions & 12 deletions innate.gemspec
Expand Up @@ -2,40 +2,39 @@

Gem::Specification.new do |s|
s.name = %q{innate}
s.version = "2009.06.12"
s.version = "2009.07"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.required_rubygems_version = Gem::Requirement.new(">= 1.3.1") if s.respond_to? :required_rubygems_version=
s.authors = ["Michael 'manveru' Fellinger"]
s.date = %q{2009-06-12}
s.date = %q{2009-07-19}
s.description = %q{Simple, straight-forward base for web-frameworks.}
s.email = %q{m.fellinger@gmail.com}
s.files = ["AUTHORS", "CHANGELOG", "COPYING", "MANIFEST", "README.md", "Rakefile", "example/app/retro_games.rb", "example/app/todo/layout/default.xhtml", "example/app/todo/spec/todo.rb", "example/app/todo/start.rb", "example/app/todo/view/index.xhtml", "example/app/whywiki_erb/layout/wiki.html.erb", "example/app/whywiki_erb/spec/wiki.rb", "example/app/whywiki_erb/start.rb", "example/app/whywiki_erb/view/edit.erb", "example/app/whywiki_erb/view/index.erb", "example/custom_middleware.rb", "example/hello.rb", "example/howto_spec.rb", "example/link.rb", "example/provides.rb", "example/session.rb", "innate.gemspec", "lib/innate.rb", "lib/innate/action.rb", "lib/innate/adapter.rb", "lib/innate/cache.rb", "lib/innate/cache/api.rb", "lib/innate/cache/drb.rb", "lib/innate/cache/file_based.rb", "lib/innate/cache/marshal.rb", "lib/innate/cache/memory.rb", "lib/innate/cache/yaml.rb", "lib/innate/current.rb", "lib/innate/dynamap.rb", "lib/innate/helper.rb", "lib/innate/helper/aspect.rb", "lib/innate/helper/cgi.rb", "lib/innate/helper/flash.rb", "lib/innate/helper/link.rb", "lib/innate/helper/redirect.rb", "lib/innate/helper/render.rb", "lib/innate/helper/send_file.rb", "lib/innate/log.rb", "lib/innate/log/color_formatter.rb", "lib/innate/log/hub.rb", "lib/innate/middleware_compiler.rb", "lib/innate/mock.rb", "lib/innate/node.rb", "lib/innate/options.rb", "lib/innate/options/dsl.rb", "lib/innate/options/stub.rb", "lib/innate/request.rb", "lib/innate/response.rb", "lib/innate/route.rb", "lib/innate/session.rb", "lib/innate/session/flash.rb", "lib/innate/spec.rb", "lib/innate/spec/bacon.rb", "lib/innate/state.rb", "lib/innate/state/accessor.rb", "lib/innate/traited.rb", "lib/innate/trinity.rb", "lib/innate/version.rb", "lib/innate/view.rb", "lib/innate/view/erb.rb", "lib/innate/view/etanni.rb", "lib/innate/view/none.rb", "spec/example/app/retro_games.rb", "spec/example/hello.rb", "spec/example/link.rb", "spec/example/provides.rb", "spec/example/session.rb", "spec/helper.rb", "spec/innate/action/layout.rb", "spec/innate/action/layout/file_layout.xhtml", "spec/innate/cache/common.rb", "spec/innate/cache/marshal.rb", "spec/innate/cache/memory.rb", "spec/innate/cache/yaml.rb", "spec/innate/dynamap.rb", "spec/innate/helper.rb", "spec/innate/helper/aspect.rb", "spec/innate/helper/cgi.rb", "spec/innate/helper/flash.rb", "spec/innate/helper/link.rb", "spec/innate/helper/redirect.rb", "spec/innate/helper/render.rb", "spec/innate/helper/send_file.rb", "spec/innate/helper/view/aspect_hello.xhtml", "spec/innate/helper/view/locals.xhtml", "spec/innate/helper/view/loop.xhtml", "spec/innate/helper/view/num.xhtml", "spec/innate/helper/view/partial.xhtml", "spec/innate/helper/view/recursive.xhtml", "spec/innate/mock.rb", "spec/innate/modes.rb", "spec/innate/node/mapping.rb", "spec/innate/node/node.rb", "spec/innate/node/resolve.rb", "spec/innate/node/view/another_layout/another_layout.xhtml", "spec/innate/node/view/bar.xhtml", "spec/innate/node/view/foo.html.xhtml", "spec/innate/node/view/only_view.xhtml", "spec/innate/node/view/with_layout.xhtml", "spec/innate/node/wrap_action_call.rb", "spec/innate/options.rb", "spec/innate/parameter.rb", "spec/innate/provides.rb", "spec/innate/provides/list.html.xhtml", "spec/innate/provides/list.txt.xhtml", "spec/innate/request.rb", "spec/innate/route.rb", "spec/innate/session.rb", "spec/innate/traited.rb", "tasks/authors.rake", "tasks/bacon.rake", "tasks/changelog.rake", "tasks/gem.rake", "tasks/gem_setup.rake", "tasks/grancher.rake", "tasks/manifest.rake", "tasks/rcov.rake", "tasks/release.rake", "tasks/reversion.rake", "tasks/setup.rake", "tasks/ycov.rake"]
s.has_rdoc = true
s.homepage = %q{http://github.com/manveru/innate}
s.require_paths = ["lib"]
s.rubyforge_project = %q{innate}
s.rubygems_version = %q{1.3.1}
s.rubygems_version = %q{1.3.4}
s.summary = %q{Powerful web-framework wrapper for Rack.}

if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 2
s.specification_version = 3

if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<rack>, ["~> 1.0.0"])
s.add_development_dependency(%q<bacon>, [">= 1.1.0"])
s.add_development_dependency(%q<json>, ["~> 1.1.6"])
s.add_development_dependency(%q<rack-test>, [">= 0.3.0"])
s.add_development_dependency(%q<json>, ["~> 1.1.7"])
s.add_development_dependency(%q<rack-test>, [">= 0.4.0"])
else
s.add_dependency(%q<rack>, ["~> 1.0.0"])
s.add_dependency(%q<bacon>, [">= 1.1.0"])
s.add_dependency(%q<json>, ["~> 1.1.6"])
s.add_dependency(%q<rack-test>, [">= 0.3.0"])
s.add_dependency(%q<json>, ["~> 1.1.7"])
s.add_dependency(%q<rack-test>, [">= 0.4.0"])
end
else
s.add_dependency(%q<rack>, ["~> 1.0.0"])
s.add_dependency(%q<bacon>, [">= 1.1.0"])
s.add_dependency(%q<json>, ["~> 1.1.6"])
s.add_dependency(%q<rack-test>, [">= 0.3.0"])
s.add_dependency(%q<json>, ["~> 1.1.7"])
s.add_dependency(%q<rack-test>, [">= 0.4.0"])
end
end
2 changes: 1 addition & 1 deletion lib/innate/version.rb
@@ -1,3 +1,3 @@
module Innate
VERSION = "2009.06.12"
VERSION = "2009.07"
end

0 comments on commit 03274f3

Please sign in to comment.