Displaying 9 results from an estimated 9 matches for "anthonyeden".
2006 Dec 29
2
Rails SQL Views 0.5.0 Released
Rails SQL Views 0.5.0 is now available from
http://rubyforge.org/frs/?group_id=2435&release_id=8685 and shortly as
a Gem (gem install rails_sql_views). More information on Rails SQL
Views can be found at
http://activewarehouse.rubyforge.org/rails_sql_views/
This release finally fixes the SchemaDumper issues, including the
necessary select statement for the view. It also introduces PostgreSQL
2006 Nov 07
1
Two ActiveSupport Tests Failing with Update Today
I just updated to the latest revision (5445) and ran rake for ActiveSupport
and received the following failures:
1) Failure:
test_autoload_doesnt_shadow_name_error(DependenciesTest)
[./test/dependencies_test.rb:662:in
`test_autoload_doesnt_shadow_name_error''
./test/dependencies_test.rb:655:in
`test_autoload_doesnt_shadow_name_error''
2006 Dec 20
0
ActiveWarehouse 0.1.0 Released along With Tutorial
ActiveWarehouse 0.1.0 is now available for use. I have posted a
tutorial at http://anthonyeden.com/2006/12/20/activewarehouse-example-with-rails-svn-logs
which demonstrates how to extract data from the Rails Subversion logs
and turn it into a simple drill down report. The ActiveWarehouse web
site is http://activewarehouse.rubyforge.org/
ActiveWarehouse is a plugin for Rails which provides c...
2008 Aug 28
2
Rails Migrations and database views
I have a DB2 schema with many ''views'' and table partitions defined in
it. As per our new project requirement we have to support multiple
databases (DB2,Oracle and MYSQL to be specific). The frontend
application is implemented using Ruby on Rails. I am interested in
exploring the possibility of using Rails Migrations to abstract out
the schema to a DB independent layer. I could
2006 Nov 05
1
Non-Fatal Anonymous Module Error
I am receiving the following non-fatal error from Rails for a particular
action:
Error calling Dispatcher.dispatch #<ArgumentError: Anonymous modules have no
name to be referenced by>
./script/../config/../vendor/rails/activesupport/lib/active_support/dependencies.rb:313:in
`to_constant_name''
./script/../config/../vendor/rails/activesupport/lib/active_support/dependencies.rb:270:in
2006 Dec 26
15
is there a way to not repeat installing plugins?
i seem to be using the same plugins for all my sites and was wondering
if there is a way to make the process easier and faster?
is this what is called by "packing your own gems"?
--
Posted via http://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk"
2007 Mar 08
0
AdapterExtensions 0.3.0 Released
As part of the ActiveWarehouse project we''ve broken out extensions to
the ActiveRecord adapters into its own subproject called
AdapterExtensions. This project is specifically for extensions to the
adapters themselves versus extensions to ActiveRecord::Base and its
related classes. If you have extensions at the adapter level and do
not yet have a permanent home for them then please feel
2006 Jun 27
3
Capgem 0.1 Released
I''ve put up a first release of Capgem on Rubyforge. It''s available under the
MIT license.
Capgem is an extension to Capistrano which adds a pack task to Capistrano so
you can package up your Rails application as a Gem. This is useful if you
are in an environment where Capistrano''s remote deployment tools aren''t an
option. Capgem currently adds start and stop
2007 Jan 18
4
Defining the expected behavior of DatabaseStatements.execute()
It would be very helpful if the core team could define and document
the expected behavior of DatabaseStatements.execute(). The
implementations appear to vary. Most adapters will return some sort of
native result set, SQL Server returns nil and expects a block, DB2 and
Sybase return the affected row count.
So please, will someone in core explain the expected behavior and can
the execute()