search for: tellinkltd

Displaying 18 results from an estimated 18 matches for "tellinkltd".

2006 Feb 14
6
Mongrel 0.3.3 -- Bug Fix
Hey Folks, This is a quick release that fixes a major bug. I forgot to require the timeout library properly in mongrel.rb so people using Mongrel outside of Rails would see pauses. 0.3.3 fixes this all up. The 0.3.3 release also has a small change to the examples/simpletest.rb file with some gzip response using Ruby''s zlib support. Curious what people think about this and whether it
2006 Jul 17
6
Has markaby been abandoned?
Recently discovered Markaby. Before I use it on a production system, I''d like to know if it is still being maintained? According to the change log, the last change was in February of 2006. Does this mean that the project has been abandoned? Or, at version 0.3 it was considered production stable and complete? -- Best Regards, -Larry "Work, work, work...there is no satisfactory
2006 Feb 03
6
Rails from the command line
I have controller that processes data in one table and puts results in another. Now that its'' working, I would like to be able to run it from the command line ( read: windows batch file). How can this be done? It will be installed on a Windows box with InstantRails1.0, (if that matters). I will be doing more processes like this, so this is a good opportunity to get it right. -- Best
2006 Mar 09
3
How to copy between databases?
I want to copy data from one database to another using rails. But, it seems that rails only will talk to one database at a time. Is there a way around this? Any help would be greatly appreciated. -- Best Regards, -Larry "Work, work, work...there is no satisfactory alternative." --- E.Taft Benson -------------- next part -------------- An HTML attachment was scrubbed...
2006 Jul 13
10
Book Question on RoR
Hi there, I am a newbie and interested in learning Ruby on Rails. I see there are 2 books out there: Ruby for Rails Ruby techniques for Rails developers David A. Black and Agile Web Development with Rails : A Pragmatic Guide (Pragmatic Programmers) Dave Thomas, David Heinemeier Hansson, Andreas Schwarz, and Thomas Fuchs Which one should I get? "Agile Web Development with Rails"
2005 Dec 30
5
Rails using DB2
Hello, I have been trying to connect a Rails application to DB2 database. Based on information found on the web it doesn''t seem to be possible. Can some confirm the state of DB2 support with Rails? Thanks for you help, David _______________________________________________ Rails mailing list Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org
2006 Jul 10
7
Code suggestions with Radrails .rhtml view files
anyone been successful with implementing code hints in the Views folder with radrails in eclipses? There is a tutorial out there that suggests you edit the jsp folder (http://www.napcs.com/howto/railsonwindows.html#_Toc111133462) but i think when you add rails, that jsp folder somehow disappears or something. i don''t like that idea anyway, cause i don''t like jsp hints
2006 Feb 16
9
Mongrel 0.3.4 -- Win32 Gems/Better CGIWrapper
Hello Everyone, Today''s Mongrel is the first release to sport spiffy pre-built win32 gems. This comes thanks to Wilson Bilkovich donating some Rakefile magic that does the stuff for me. Everyone who uses win32 should send Wilson a thank-you since without him you''d be a victim of my laziness for at least a few more weeks. People who are testing and trying Mongrel out should
2006 Mar 10
7
ODBC adapter connection help please.
Does anyone have any experience getting ODBC to work? I could really use some help here. I''m having trouble accessing a db2 database via odbc using rails. It''s an external database, that I import data from. I have placed the connection code in my model : unless connected? establish_connection( :adapter => "odbc", :dsn => "<dsn
2006 Apr 04
13
Myowndb: a web database built with rails
Hi all, I wanted to announce on this list that I have launched http://myowndb.com which is a web database built with Ruby on Rails. The application lets the administrator users define the data structure through a web interface like in a normal database, with: - tables - enhanced datatypes like emaili, web URL, and a choice in list - relations (one to many, one to one) between tables Once the
2006 Feb 23
20
ActiveRbac 0.3 release - We''re now on Engines
Hi I have just released the 0.3 revision of ActiveRecord - make sure to get the fresh, hot packages from https://activerbac.turingstudio.com/releases What is ActiveRBAC? ------------------- ActiveRBAC is a Ruby on Rails library that provides a full stack RBAC (Role Based Authorization) system with user, group, role and permission management. It provides models and controllers to edit
2006 Mar 03
68
Agile Web Development with Rails 1.1
Dave, on another topic, might I recommend that you and DHH publish an updated version of the Agile guide right away when 1.1 comes out? You could reuse much of your material and it would do a lot of good to help make sure there is still a good centralized source of reference for Rails. Without that book, there really is not a good one-stop source of information for people to learn how to use
2006 Aug 13
0
how to work with has_many :through
I''m trying to understand how to use the has_many :through construct. I have two tables: customers and vendors associated through "assignments" table. Class Customer has_many :assignments has_ many :vendors, :through => :assignments . . . # other fields end Class Vendor has_many :assignments has_many :customers, :through => :assignments . . . # other fields end
2006 Aug 14
0
Converting scaffold to a plugin ??
I''ve modified the standard Rails scaffold code to make it more usefull to me. How can I convert that scaffold to a plugin so that it is more portable? As it is, I have to re-configure scaffold everytime a new Rails version is released. Not very DRY. Could someone point me to a tutorial on the subject? -- Best Regards, -Larry "Work, work, work...there is no satisfactory
2006 Jul 29
0
rails cannot find new scaffold.
I''ve created a new scaffold ( ''table_scaffold'') and placed it in the ''../generators/components folder'' next to the scaffold folder. Yet, when I run : ./script/generate table_scaffold Rails says that it cannot find table_scaffold generator. What am I doing wrong? -- Best Regards, -Larry "Work, work, work...there is no satisfactory
2006 Mar 17
0
Unable to find rdoc for mepis.
I''ve just setup mepis. It comes with 1.8.4. I though it would be easy to install Rails on it. So, I downloaded the ruby gems. But when I try to install it using ruby setup.rb. It cannot find Rdoc. I''ve tried apt-get install rdoc. This gives an ''rdoc not found in repository'' I''m now to Debian, and could us some help. Where can I get a copy of Rdoc?
2006 Feb 16
2
How do I use ODBC with rails.
I have an app that needs to retreive data through an ODBC connection on a windows platform. Has anyone done this? Would someone be able to walk me through it? or point me to the relavant docs. My searches haven''t turned up any usefull information so far. -- Best Regards, -Larry "Work, work, work...there is no satisfactory alternative." --- E.Taft Benson
2006 Aug 05
5
rake migrate error: nil.first
My migrations were working fine until today. I dropped and re-created the database.But, when I go to apply my migrations, rake migrate aborts with this error. You have a nil object when you didn''t expect it! You might have expected an instance of Array. The error occured while evaluating nil.first Any idea what might be wrong? The migrations look right. It''s talking to the