Displaying 20 results from an estimated 1000 matches similar to: "Diff tool for OSX"
2006 May 19
37
OS for rails development: Windows vs. Mac?
Caveat: this is not a discussion about *hosting* a rails app on windows.
Anyway...Macs are everywhere you look when researching rails (demo vids,
tutorials, and pictures from rails training classes). I''m interested in
what the pros to using a Mac for rails development are (besides
textmate). Is it more of a cultural thing, a what would 37 signals do
thing, is it a unix thing, or
2016 Jun 02
7
Switching to git (Windows experience) (was re:[cfe-dev] GitHub anyone?)
On Wed, Jun 1, 2016 at 6:31 PM, Renato Golin <renato.golin at linaro.org> wrote:
> I think we should start two other threads: one about git tooling on Windows
> and one about infrastructure problems migrating to git.
Some developers on Windows prefer to use GUI tools like TortoiseSVN to
command line tools for version control. The last time I tried
TortoiseGit on Windows (which was
2006 May 16
8
capistrano can''t find svn
I''m trying to get capistrano to deploy to an osx machine - rake
remote:cold_deploy but it fails on the svn co line with
"bash: line 2: svn: command not found"
I''ve set the proper path to svn (/usr/local/bin) in both .bash_profile
and .bash_login but capistrano seems to be ignoring these.
How does capistrano know where to look for svn?
Thanks
2006 Apr 08
6
Mass mailing best practices
I''m building a feature for my app which allows the admin to compose an
email and send it to a list of registered users (~1000).
What is the best method for doing this?
Should I create one email and BCC all the recipients? Is there a limit
to how many recipients can be included in one email?
or
Should I send the same email to individual users?
In the past I''ve had problems
2006 Mar 14
3
LDAP Authentication
I have to do user authentication for a project i''m working on. The trick
is they want me to use the existing LDAP database for it. Does anyone
know how to authenticate using LDAP in RoR?
~Rahul
2006 Jan 10
14
Not wishing to instigate a DB war, but...
Can I get some opinions on which free DB to use with rails for a virtual
server that will eventually be doing lots of heavy database lifting?
Not a lot of heavy duty querying per se. Think multiple simultaneous
forums and blog sites and the like.
I know each of the different DB possibilities such as MySQL and
PostgreSQL has plus points and minus points. I''m particularly
interested
2006 Feb 07
14
Production Server That Just Works?
Hi,
Love Rails...
I''m looking for a Production Quality Server that brings the same ease of
use as Rails does to web development.
I''ve tried TextDrive, and never got it to work. I''m sure there are good
reasons why it didn''t work but they are beyond me. I''ve contacted tech
support there several times, and it seems that there are so many setups
that
2006 May 03
4
subversion setup for maintaining customizations to base code
To the subversion experts out there:
I''d like to set up svn to maintain customizations to my base app for
each client. A simple example would be to have a base CSS file and a
custom one for each client. What is the best way to set up svn so I
can ''co'' the trunc and then ''co'' customizations for each client on top
of the base code.
I''ve looked
2006 Mar 29
3
Upgrading to Rails 1.1 in InstantRails
Anyone had success at this? Even if I manually download the 1.1 gem
file, the "gem install rails" command gives me "ERROR: Error installing
gem rails[.gem]: rails requires activesupport = 1.3.0"
--
Posted via http://www.ruby-forum.com/.
2006 Mar 15
7
O''Reilly Rails Cookbook on Rough Cuts
Subject says it all. Anybody taken a look yet?
http://www.oreilly.com/catalog/railsckbk/?CMP=ILC-GG7423313304&ATT=railsckbk
After buying the Ruby Cookbook and the other Rails book, I''m pretty
gunshy about another Rough Cuts purchase.
Sean
2006 Aug 06
2
help with method_missing in ActiveRecord
I am serializing a data object (FooData) into an ActiveRecord column (Foo).
I''d like to be able to do delegate methods to the data class if the Foo
class doesn''t have that attribute. So instead of:
f = Foo.new
f.data.item1
I''d like to do:
f = Foo.new
f.item1
I was hoping that I could add a method_missing method to my Foo class and
call methods in the FooData class
2006 Apr 06
6
Flexible data schema in a database?
I figured I pose this to the list and see if any one can build a
better mousetrap.
The problem:
1. Store hierarchical data in a database, but without knowing the
hierarchy beforehand.
2. Allow the user to define there own hierarchy, and allow the system
to support multiple hierarchies.
Call it a cataloging system, we have an object and we want to add data
about that object to the system.
Now
2006 Aug 18
2
Search window
Hi, I''m a rails newbie in need for some help. I''d like to replace a
dropdown on a form with a pop-up window where I can search for a record
and then return the selected id for the original form.
Is there anything like this available in rails? Does anyone have a tip?
Thanks,
Gabriel.
--
Posted via http://www.ruby-forum.com/.
2005 Apr 01
11
I want to blog!
This isn''t Rails or Ruby related, but I just need some advice and
thought I''d ask the bright individuals here. I want to start my own
blog but I''m not sure where to begin. I don''t want to get a blogger
account because I want to have my own domain. Blogger also doesn''t
have many features. My hosting service is 1AND1 so it supports php,
cgi and mysql.
2006 Aug 05
2
Multi-step forms
I need to create a number of multi-step forms for creating models.
Currently i''m looking at http://www.bigbold.com/snippets/posts/show/277
As a solution. Are there any other methods you guys would recommend? Are
there any reusable (dry) methods of creating multiple multi-step forms?
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2005 Sep 20
2
script.aculo.us: pause before effect.appear
I''ve created a simple script (below) which calls the effect.appear script in
order to make a group of items appear at the page load. I would like to have
the images randomly appear at different times; e.g. the 3rd image might
start appearing 2 seconds after load, the 6th image immediately after load,
the first image 1 second after load, etc...
How can I achieve this affect?
---
2006 Feb 14
2
Heads up - Ruby for Rails chapter 2 released
I just checked the Manning website and chapter 2 of David Black''s Ruby for
Rails is now available for download.
Hammed
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060214/d8f88893/attachment.html
2006 Apr 03
7
global variable - @@var
I tried to keep track of the number of access to a specific controller.
I declared ''@@mycount = 0'' in the controller class. The methods in the
controller will increment the @@mycount (@@mycount = @@mycount + 1) and
print the value to the html page and show in the browser. The value is
always 1, no matter how many times I access the controller and its
action(s). Is this
2006 Aug 05
2
plz do favour in active record
hello
I want to do like the below code
name=[''net'',''gross'',''amount'']
avail= Avail.find(1)
return avail.name[0]
but it gets error
I want to give " avail.name[0] " like this, rather than avail.net
directly,
can u guys plz help me, how to do this plz explain with code
advance thx
have a pleasant day
narayana
--
2006 Aug 07
5
Documentation for downloading and reading offline
Is there anywhere that I can download the Ruby/Rails documentation &
APIs so I can peruse it offline at leisure? I only have a dialup
connection at home and going online all the time to access important
documentation like that is a bit of a pain.
--
Posted via http://www.ruby-forum.com/.