Displaying 20 results from an estimated 700 matches similar to: "A Ruby/Rails bibliography"
2008 Apr 03
3
Branchable migrations -- A plugin to let you organize your migrations
I just put a new plugin named branchable_migrations on Github.
Branchable migrations lets you separate your migrations into
"branches" (i.e., a director under db/migrate) that each have their
own version. Using the forthcoming UTC timestamped migrations and
this plugin, you can separate migrations by table or feature. Doing
so should alleviate many of the problems that seem to pike up
2008 Jan 10
14
Keeping Camping going
Hello all,
I''m not sure who Camping''s steward is at this point(zimbatm? _why?),
but I haven''t seen much activity in quite some time. I really like
Camping, and I understand open source projects can fall by the
wayside.
So, I''d be willing to take over maintenance and releasing. I have
experience maintaining my own open source projects, and a history of
2007 Jul 08
0
dcov (the documentation analyzer for Ruby code) v.0.1.0 released!
I pushed version 0.1 of my Google Summer of Code project -- dcov -- to
RubyForge yesterday, and I hope you guys can take advantage of it (and
let me know if it breaks! :)).
dcov is a tool to help you analyze the documentation of your Ruby
code. At the present, it only checks for the presence of
documentation and generates a report based on that, but in the future
it will check for
2008 May 22
4
how to find out autoincrement id ?
Hi
I need to push newly created item id to file. (ie. its autoincrement
value)
I tried this on controller but it wont work, it cant find id value for
the newly created item.
def create
@imitem = Imitem.new(params[:imitem])
system "echo \"@imitem.id\" > /tmp/myid"
any help ?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you
2007 Dec 22
8
Rails 2.0 scaffold
Hey guys,
I posted the other day about scaffold not working and i was told that it
was rails 2.0 doing this. (btw i''m using adgile web development)
I have read on the internet that you need to put extra stuff like title,
description......
So i did this:
C:\ruby\depot>ruby script\generate scaffold Product Admin id:int
title:varchar(1
00) description:text image_url:varchar(200)
2008 Feb 03
4
Extract vowels and consonants using Ruby Regex
Hello,
I am trying to build a regex to extract vowels and consonants from a
string. So far, I am able to extract the basic a-e-i-o-u sequence
using the following extension to the String class:
class String
def vowels
scan(/[aeiou]/i)
end
def consonants
scan(/[^aeiou]/i)
end
end
examples:
>> "Mary had a little lamb".vowels
=> aaaiea
>> "Mary had a
2008 Jan 09
1
SIP Client in Rails App
Hey,
do you think it could be possible to integrate a SIP or IAX client into
a Rails app to use it for VoIP calls directly from the web page by
clicking a link without having to download a 3rd party client?
Is there any other solution than an activeX control to access the
microphone?
Do you have made experience with a free minimalistic applet or activeX
control?
Greets
--
Posted via
2008 Jan 16
1
Firedraw: World's First Ajax based Flow Diagramming Tool
Dear Friends,
I m pleased to present Firedraw www.firedraw.org , World''s First And
Only Ajax based in-browser visual modeling tool. Currently it has
options for drawing Flow Diagrams. Soon we will be incorporating UML
and ERD drawing capabilities.
This is our second Beta Test release dated 16 Jan 08, first Beta Test
release was deployed on 2 Jan 08. Since then, we have incorporated
many
2008 May 09
6
Operator Names.
What is this ''=>'' operator called?
Does it have a name?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
To unsubscribe from this group, send email to
2007 Dec 27
17
2.0 & "Agile Web Dev..." book
Just running through the first little project (depot) in ''Agile Web
Development with Rails''. It isn''t scaffolding like it says it should
in the book.
After running:
>rails -d mysql depot
then SQLing:
drop table if exists products;
create table products (
id int not null auto_increment,
title varchar(100) not null,
description text not null,
image_url varchar(200)
2008 Feb 27
2
problem installing webOrb => Plugin not found: "http://themidnightcoders.net:8089/svn/weborb"
I''m trying to install weborb in my applications but it is not working
as you can see:
C:\RoR\mijnapplication>ruby script/plugin install http://themidnightcoders.net:8
089/svn/weborb --force to reinstall
+ ./README
+ ./Rakefile
+ ./init.rb
+ ./install.rb
+ ./lib/AC_OETags.js
+ ./lib/InfoService.rb
+ ./lib/data-management-config.xml
+ ./lib/example.html
+ ./lib/example.mxml
+
2007 May 04
22
CampingConf?
Campers --
In a few weeks there will be a bunch of people in Portland, OR, for a
conference. A long time ago some campers mentioned that might be a
good time for us to get together and hold a mini CampingConf for a few
hours. Is anyone interested? Does anyone want to organize it?
I''m thinking Wednesday night, May 16.
We could possibly get a spot at FreeGeek (not likely since they are
2008 Jun 22
3
Routing Error No route matches "/employee/list" with {:method=>:get}
hi,
I am very frustrated by this error when I just put together a very
simple project from one of the textbook on RoR:
Routing Error
No route matches "/employee/list" with {:method=>:get}
For your reference,
#The following is EmployeesController.rb
class EmployeesController < ApplicationController
scaffold :employee # create scaffold code for controller
#
2011 Feb 11
1
How do I add a book title to the R bibliography?
R community:
I would like to add a new title to the bibliography on the R website
(http://www.r-project.org/doc/bib/R-books.html), but I cannot find
instructions for doing that.
Can anyone tell me, whom should I contact in order to add a new book?
(I added the title to the wiki's list of books, but the bibliography and the
list don't seem to be connected.)
Thank you!
Paul
Paul
2008 May 02
6
looking for Mod_Ruby and easy Deployment Options? Sign Here
Hi,
http://www.ruby-forum.com/topic/151662#669164
Hi,
Please read more on the above link first, which is available in this
section of Ruby on Rails. It will give you a clear understanding of
Deployment scenario
The Author of that thread and Me too, are frustrated with Lack of Shared
Hosting and Tough Deployment Scenario, since nothing is shaping up.
We do not want to get carried away with
2008 Jun 29
3
Working around/with Restful Authentication
I''m using Restful Authentication, and the code to create a user is
pretty straight forward - there is a before_save action and a
before_create action:
before_save :encrypt_password
before_create :make_activation_code
But for some reason when I try to create a user programmatically in
the controller like this:
User.new(:email =>
2007 Feb 07
2
Would calling 3.am or 1130.pm be a useful way of getting a Time object?
Would "am" and "pm" be convenient and useful methods that Rails should
stick on top of the Numeric class?
So instead of calling Time.parse("23:30") to get a Time object at
11:30 PM, you could do 1130.pm instead.
Just trying to get an opinion before I create a patch, unit tests, etc
and try and convince someone to notice :)
Here are the methods if anyone wants to
2006 Apr 25
3
New Rails book coming down the tube...
Howdy guys and girls,
Most of you don''t know me; I''m mostly a lurker in the Rails community...
Anyhow, I wanted to let you guys know about my upcoming Rails book: Mr.
Neighborly''s Relevant Ramblings, Pointed Pontifications, and Thought
Theories on Ruby & Rails. I just released the first chapter for free today
(it''s a 60 page Ruby tutorial); you can grab it
2008 May 05
14
[poll] What was your primary language before you started coding in Ruby?
This is an informal poll.
If you are primarily a Ruby programmer,
- What was your primary language before you started coding in Ruby?
Else,
- What''s your current programming language of choice?
I''ll start:
Perl
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2007 Dec 12
7
Release Retrospective
First off, congrats to everyone for getting Rails 2 released. A lot
of work went into the release, and it''s good to see us reach this
milestone. And now that the release dust has settled, I think it
might be useful for us to have a retrospective and evaluate how the
release went.
I think the Ruby on Rails project has improved a lot this year, and
this is another opportunity