Displaying 14 results from an estimated 14 matches for "sisnero".
Did you mean:
sisneros
2008 Mar 19
3
svn externals and git submodules
This is a request to split up the repository into at least two repositories
rspec
rspec_core (loaded as svn_external or git submodule)
rspec_on_rails (loaded as svn_external or git submodule)
We could load the plugins the same way as before
ruby script/plugin install http://rspec.rubyforge.org/svn/trunk/rspec_core
ruby script/plugin install
2007 Jan 04
5
Help accessing http headers?
Hi,
I''m using Mechanize, and I''ve developed a lot of code around it. I''d like
to be able to check the Etag header during a get to see if the page has
changed, as well as some other http header information. Can I do that
without hacking Mechanize myself?
Does anyone have any examples of how to do this?
William
2006 Aug 14
6
Testing fails with fixtures not when invoked directly
I have three files organization.rb, company.rb, and department.rb. I want
to ensure the department always has a company
require File.dirname(__FILE__) + ''/../test_helper''
class OrganizationTest < Test::Unit::TestCase
fixtures :organizations
def setup
@smo = organizations(:smo)
end
def test_department_company_defaults_to_parent
org = Department.new(:name =>
2005 Feb 11
1
adding attachment to ActionMailer
Is it possible to add an attachment and send it with ActionMailer?
2011 Jul 09
0
Auto Reply: asterisk-users Digest, Vol 84, Issue 15
I am out of the office on vacation through July 20th, 2011.
I am checking email, and will get back to you as soon as I can.
For urgent matters, contact:
Angie Besse for Oracle Labs, M&A, and Corporate Security Architecture issues.
Tami Sisneros regarding Corporate Architecture Approvals.
Craig
2006 May 11
1
Yahoo Container Library
Just a note that Yahoo came out with some more widgets Check out
http://com1.devnet.scd.yahoo.com/yui/container/index.html.
Maybe we can adopt some of their ideas.
* I like the Module library and its subclasses
* you can do unobtrusive html and use this when you instantiate the
javascript objects
dom
_______________________________________________
Rails-spinoffs mailing list
2006 Aug 14
1
Rest, routes, path_prefix and default params
I am trying to use routes with default params to have routes
''/mycompany/departments''
and
''/companies/1/departments''
mean the same thing (both restful routes).
When I set up the files as below, I get an error of
''Couldn''t find Company without an ID''
and my log file shows the following ..
Processing DepartmentsController#index (for
2006 Jan 27
4
plugin install behind corporate firewall?
Hi all,
Anybody has a clue on how to install a plugin behind a corporate firewall? I
know the "-p" option works for installing a ruby gem thru a proxy, but it
doesn''t seem to work for script/plugin install
Thanks
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2006 May 26
3
capistrano on windows (again)
Hi all
I didn''t get a response to my first post so I thought I''d try again. is
anyone successfully using capistrano to deploy their app from a windows box?
I''m trying to deploy a test app to my dreamhost account but all i get is
"rake aborted!" with no further information. Can someone please confirm if
capistrano even works under windows?
many thanks
al
2006 May 09
9
Tooltips v1.1 Released
All --
Thanks to those who sent me input! I'm proud to release my tooltips
version 1.1 into the wild; it can be downloaded here:
https://boygeni.us/svn/tooltips/tags/release-1.1.0/
Changes include:
* Rendering constrained to viewport
* User-defined effects options
* MIT License
Tested under Safari 2, IE 6 (strict) and Firefox 1.5
You can demo the sample app here:
2006 Feb 05
16
script/plugin install fails
Running script/plugin install
svn://rubyforge.org/var/svn/laszlo-plugin/tags/openlaszlo fails,
returning the help information for the "export" command:
export: Create an unversioned copy of a tree.
usage: 1. export [-r REV] URL [PATH]
2. export [-r REV] PATH1 [PATH2]
etc...
Has anyone encountered this before?
System info:
Mac OS 10.4.4.
ruby 1.8.2 (2004-12-25)
svn, version
2005 Feb 09
85
Introduce yourself and your project -- Round 2
On December 14th, 2004 David Heinemeier Hansson sent this to the mailing
list:
I''m seeing a lot of new names on the list. Could
we perhaps do a round of introductions? That would
also be a great first post, if you haven''t had a
chance to contribute yet. The basics should include
your name, your organization, your country and city,
and the project you''re
2006 Aug 14
0
problem updating and installing
My work has a firewall that blocks svn traffic. Is there any way that you
can put a public websvn like the other plugins so that I and others have the
option of installing by the http install method
Thanks
Dominic
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://rubyforge.org/pipermail/backgroundrb-devel/attachments/20060814/c9c18fcf/attachment.html
2010 Aug 30
0
rails new --builder
When invoking rails new with the --builder option, I see that you have
to call the class ::AppBuilder. How can you
change the source_root for just a few of the methods?
I want to generate the gemfile from my own template
AppBuilder < Rails::AppBuilder
def gemfile
template ''Gemfile''
end
end
How can I change the Gemfile template from the AppBuilder and if I