Displaying 20 results from an estimated 500 matches similar to: "Oh btw..."
2011 Jul 11
4
How to Install ruby 1.9.2/1.9.1 and Rails 3.x on Ubuntu
Hello All,
I have Ubuntu 11-04, I would want to install ruby 1.9.2/1.9.1 and Rails
3.x. I need the least complicated way of doing this.
Rgds,
Janus
--
*Satajanus Nig. Ltd
*
--
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
2011 Aug 05
1
carrierwave tutorial
Is there a tutorial for `carrierwave` other than in RailsCasts that you
recommend?
Thanks.
--
Posted via http://www.ruby-forum.com/.
--
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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To unsubscribe from this group, send email
2011 Jul 19
3
What does "require tree" do in Rails 3.1?
In Rails 3.1....
This is my application.css:
/*
*= require_self
*= require_tree .
*/
This is my application.js:
//= require jquery
//= require jquery_ujs
//= require jquery-ui
//= require_tree .
What does the "require_tree ." do?
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To view this discussion on the web
2012 Jan 17
5
Accessing the ROR Application
hi all,
I successfully deployed the ROR project on Centos server,i have one
question how can i access that application from my machine ?
on starting WEBRick server it is started on this ip http://0.0.0.0:3006,
i want to set my machine ip in place of ''http://0.0.0.0:3006'' and also
how i can access it from my machine ?
Thanks in advanced.
Thanks and Regards
Sachin S.
2011 Dec 06
1
mongodb topic in rails
Hi
I use mongoid for rails application
and I try to do
@users = User.where("first_name = ? OR last_name = ? OR type = ?",
firstname, lastname, usertype)
but I am getting error
but when i put:
@users = User.where(:first_name => firstname, :last_name => lastname,
:type => usertype).all
the program run successfully
but i need OR to execute in mongodb
Also I need sql LIKE to
2010 Jan 29
2
errors.add adds "is invalid" if validation fails
Rails, I have problem.
I am validating fields of a class, if validation fails i use the
method error.add "Say something" , but when I test my form by giving a
invalid entry, I get error output as "Say something is invalid" and
not as "Say something". I really dont know where from this "is
invalid" pops in. Any help?
Thanks in advance
Karthikeyan A K
--
2011 Jun 14
4
How to convert Image To Text in RoR
Hello All
I have too many scanned notes i need to convert them into text and then user
may download that as pdf , How it can be done in RoR
Please help
Thanks in advance :)
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To view this discussion on the web visit
2011 Jan 06
1
Invalid argument - https://graph.facebook.com/19292868552
require ''rubygems''
require ''hpricot''
require ''open-uri''
doc = Hpricot(open("http://graph.facebook.com/226723089703"))
@doc = doc.to_s.gsub(/"id.+?likes":/,"").gsub("{","").gsub("}","")
puts @doc
OR
require ''rubygems''
2010 Sep 04
3
its easy but i forgot all
my models
borrower ----- has_many :loans
loan ----- belongs_to :borrower
my loans _controller
def new
@borrower = Borrower.find(params[:borrower_id])
logger.debug '' @borrower.id''
logger.debug @borrower.id
@loan = Loan.new
respond_to do |format|
format.html # new.html.erb
format.xml { render :xml => @loan }
end
2010 Aug 20
5
country state city drop down list rails
hi every one
please tell me the recommended way to get country
state city drop down list in rails
any gem - plug-in tutorial
thanks in advance.
--
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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To unsubscribe
2009 Nov 04
2
How to glue com32 module in grub2 ?
Hello Erwan and others,
I am running HDT from grub2 with memdisk. I have informed the success of
booting hdt to the grub2 list. Some developers are very much interested
to this issue and they are showing their interest to make a glue
between com32 and grub2 so that hdt can be loaded without memdisk. It
is really very exciting to have hdt as an inbuilt feature of grub2.
Could any one kindly
2010 Aug 09
9
where can I get up to date instantrails ?
Hi, can someone please tell me where can I find up-to-date instantrails
(with rails 2.38, ruby 1.8.7) ... ?
Thanks for any help
Dani
--
Posted via http://www.ruby-forum.com/.
--
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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To
2010 Dec 01
2
Develop Facebook app using rail
hello
please tell me the way to develop facebook app by rails need to which
is good tool available now
facebooker , rfacebook ,mini_fb
and how to do post on users wall, email user , or send message to
user
Any link , notes , tutorials , blog
Thanks in advance :)
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to
2010 Mar 08
3
RoR Developer Needed For Long Term Project [Jobs]
We are currently seeking a very experienced Ruby on Rails developer to
complete our Rails development; a social networking platform for
businesses and their customers. The project is 90%-95% complete, but
we need someone (or some company) to complete it and provide the
ongoing support and long term development that will be needed. The
system currently also includes a product shopping cart system
2008 Mar 27
1
samba automatically delete folders ??????????
Dear list,
I am facing really a mysterious problem with samba.
I am using clarkconnect server where samba-3.0.25b-1.1.cc is installed.
I have created some samba users and windows XP user can share their
samba files and folders without any problem.
But the problem which happened here third time is auto deletion of files
and folders !!!!!!!!!!!!!!!!!!!!!!!!!!
An user ( FROM XP) simply deleted 2
2006 May 09
2
Problem creating new record
Hi
I have two tables
1. devices
2. device_categories
both associated with each other via foreign key device_category_id in
device table. I use scaffold and create a base system. I associate the
two models together via belongs_to declaration in device model, and
has_many declaration in device_categories model. I also add a device
category drop-down box on create page to select
2010 Mar 12
7
"We're sorry, but something went wrong." from RoR app
Hi All,
"We''re sorry, but something went wrong." is the message I got when I
started up an RoR app in the environment:
Rails 2.3.5
Ruby 1.8.6
WinXP-Pro/SP3
Firefox 3.6
MySQL 5.0.37-community-nt
Mongrel
The app under development was working fine until I (stupidly) thought
I needed to upgrade MySQL to 5.1.44.
I took the precaution of MySQL-dumping
the development db before
2009 Oct 22
1
how to automount password less samba share in linux ?
Dear list,
I have a password-less samba shared and it is used successfully from
window PCs. I also like to make an auto-mount for linux pcs so that it
can be used from linux boxes. To achieve this I have made an entry in
/etc/fstab as
```````````````````````
//192.168.1.1/shared /home/test/serverdisk cifs user,rw 0 0
````````````````````
As root I can mount it and see all the contents of
2009 Oct 22
1
anonymous only share asking LANMAN password
Hello list,
I am trying to make a very simple samba share with out any
authentication which will work inside the lan only and accessible from
winxp too.
This is debian lenny box and samba is 2:3.2.5-4lenny7
To achieve this I have written smb.conf ( collected from testparm as )
```````````````````````````````````
Load smb config files from /etc/samba/smb.conf
Processing section
2013 Jun 11
1
Help needed in feature extraction from two input files
Hi,
Try this:
lines1<- readLines(textConnection("gene1 or1|1234 or3|56 or4|793
gene4 or2|347
gene5 or3|23 or7|123456789"))
lines2<-readLines(textConnection(">or1|1234
ATCGGATTCAGG
>or2|347
GAACCTATCGGGGGGGGAATTTATATATTTTA
>or3|56
ATCGGAGATATAACCAATC
>or3|23
AAAATTAACAAGAGAATAGACAAAAAAA
>or4|793
ATCTCTCTCCTCTCTCTCTAAAAA
>or7|123456789