Displaying 20 results from an estimated 5000 matches similar to: "Rails security update"
2010 Jan 19
5
Rubyzip gem installed but not recognised
Hi,
I have installed rubyzip successfully(see output below)
Successfully installed rubyzip-0.9.1
1 gem installed
Installing ri documentation for rubyzip-0.9.1...
Installing RDoc documentation for rubyzip-0.9.1...
if I put config.gem ''rubyzip'' in environment.rb and then run rails it
fails to load rubyzip .. see below
george@geolaptop:~/Dropbox/git/paua$ ruby script/server
=>
2006 Mar 17
0
Installed Gems on godaddy.com
Hi, is there a core list of gems that one needs to install in a production
environment? Anyways, here''s a current list of installed gems on
godaddy.com:
Gems *actionmailer 1.0.1* [www] <http://www.rubyonrails.org/> - depends on
actionpack <http://www.situationman.com/_h_admin_/gems.html#actionpack>.
Service
layer for easy email delivery and testing.
*actionmailer 1.1.5*
2006 Aug 04
8
Capistrano /usr/bin/env: ruby: no such file or directory
Hi,
I''m deploying to a prod linux server via Capistrano, but the last step,
running the reaper, won''t complete.
Ruby is stored in /usr/local/bin on the server, and I''m deploying from
winxp.
$ ssh mcalogin@lx07
Password:
mcalogin@LX07:~> env | grep "^PATH"
PATH=/usr/local/bin:/usr/bin:/usr/X11R6/bin:/bin:/usr/games:/opt/gnome/b
in:/opt/
2006 Aug 09
10
Is there QA on Rails gem releases?
The ActionMailer/ActionPack gem release is still screwed up.
Does someone test the gem releases to ensure that they work?
Just an idea.
Wes
--
Posted via http://www.ruby-forum.com/.
2006 Jul 13
8
Acts As Authenticated - smarter login box
Hi,
I''ve got AAA loaded and working. I now want to put a smarter login form
on the sidebar of my site.
If the user is not logged in, I''d like to display a typical form in the
sidebar that collects the user ID/password and allows the user to login.
If the user is logged in, the box should display something like ''Logged
in user: FirstName Lastname'' and a
2010 Oct 27
0
RubyZip Exceptions
Hi,
I am wondering if there is a way of catching exceptions that are
thrown within rubyzip.rb.
For example:
in rubyzip line 583,
private
def set_time(binaryDosDate, binaryDosTime)
@time = Time.parse_binary_dos_format(binaryDosDate,
binaryDosTime)
rescue ArgumentError
puts "Invalid date/time in zip entry"
end
I need to be able to ''catch'' the
2005 Dec 16
1
Gem update error (Zlib::BufError)
Hi,
I''ve just run the usual gem update --include-dependencies in order to
update to 1.0 and I get the following error:
Upgrading installed gems...
Attempting remote upgrade of actionwebservice
Attempting remote installation of ''actionwebservice''
ERROR: While executing gem ... (Zlib::BufError)
buffer error
Subsequent attempts gives me the same error. Can anyone
2005 Dec 15
0
Zlib::BufError on gem update
Hi,
I''ve just run the usual gem update --include-dependencies in order to
update to 1.0 and I get the following error:
Upgrading installed gems...
Attempting remote upgrade of actionwebservice
Attempting remote installation of ''actionwebservice''
ERROR: While executing gem ... (Zlib::BufError)
buffer error
Subsequent attempts gives me the same error. Can anyone
2007 Jan 20
0
actionrecord gem update produces Zlib::BufError
OS = MS-WinXPproSP2 with hotfixes up to date
Dialogue:
--->
C:\>gem update
Updating installed gems...
Bulk updating Gem source index for: http://gems.rubyforge.org
Attempting remote update of actionmailer
Install required dependency actionpack? [Yn] y
Successfully installed actionmailer-1.3.1
Successfully installed actionpack-1.13.1
Installing ri documentation for actionmailer-1.3.1...
2011 Sep 21
4
rubyzip with Ruby 1.9.2 and Rails 3.1 - require 'zip/zip' fails
I''m trying to move my application from Rails 2.3.5 to Rails 3.1 which is
a challenge.
In my application,
require ''zip/zip''
fails with ''no such file to load -- zip/zip
gem list --local
shows
rubyzip (0.9.4)
I see zip.rb in
d:\ruby192\lib\ruby\gems\1.9.1\gems\rubyzip-0.9.4\lib\zip\
--
Posted via http://www.ruby-forum.com/.
--
You received this message
2006 Aug 16
6
modeling ''phony'' fields.
Hi,
I have a user model with an e-mail field. When a user registers for the
site, I want them to confirm their email address by typing it in again.
If they change their email address, I want them to confirm their email
address by typing it in again. However, the user might change things on
their account not related to their email address, such as their phone
number, and they should not have
2009 May 05
3
Oracle-JRuby error
I am trying to migrate from RoR/MYSql to JRoR/Oracle. I am using Active
Record JDBC to talk to the database. The Migration process to create and
populate the database tables has been painful. My latest issue is the
method new_date is undefined in the JDBC adapter. I have the following
gems installed:
*** LOCAL GEMS ***
actionmailer (2.2.2)
actionpack (2.2.2)
activerecord (2.2.2)
2010 Aug 08
0
[LLVMdev] MmapAllocator
Hi Steven-
Nice, but will this not break Windows? From an initial glance over your patch, it seems to assume the existence of mmap() in some form or other.
Alistair
On 8 Aug 2010, at 03:05, Steven Noonan wrote:
> Hi folks,
>
> I've been doing work on memory reduction in Unladen Swallow, and
> during testing, LiveRanges seemed to be consuming one of the largest
> chunks of
2007 May 19
3
Capistrano installation error--Zlib buffer error
I''m trying to install Capistrano. When I run gem install Capistrano
--include-dependencies, I get the following error:
ERROR: While executing gem ... (Zlib::BufError)
buffer error
Anyone got any ideas what''s causing this and how I can fix it? I''d
really like to use Capistrano to deploy my rails app, but I need to
install it first....
Thanks,
Myron
--
Posted
2012 Jul 18
0
Zipping files contained in a dir (rubyzip)
hey so I''m trying to zip all the files contained in a directory
(RubyZip). heres what I have:
def bundle
#create the ZIPfile with the title of (:id).zip
bundle_filename = "public/attachments/#{self.id}/#{self.id}.zip"
#open the ZIPfile in order to add items in
Zip::ZipFile.open(bundle_filename, Zip::ZipFile::CREATE) {
|zipfile|
2010 Aug 08
4
[LLVMdev] MmapAllocator
Hi folks,
I've been doing work on memory reduction in Unladen Swallow, and
during testing, LiveRanges seemed to be consuming one of the largest
chunks of memory. I wrote a replacement allocator for use by
BumpPtrAllocator which uses mmap()/munmap() in place of
malloc()/free(). It has worked flawlessly in testing, and reduces
memory usage quite nicely in Unladen Swallow.
The code is available
2009 May 01
1
Last month on the Revolutions blog
I write about R every weekday at?http://blog.revolution-computing.com
. In case you missed them, here are some articles from the month of
April of particular interest to r-help subscribers. Thanks to everyone
who has been following the blog and sending me messages and/or leaving
comments -- it always brightens my day to hear from readers!
http://tinyurl.com/cy7x9a?(from April 1) announced the new
2006 Jul 13
3
Capistrano / developing on win32 / deplyoying on Linux
Hi,
I''m new at rails and am in the midst of deploying my first app to a test
server. The app was developed on windows. I used Capistrano to deploy,
and found a few issues:
1) I must chmod 755 dispatch.cgi each time I deploy
2) script/parse/reaper also doesn''t have the executable attributes so
the deployment fails.
3) database.yml as checked out from svn isn''t
2007 Sep 03
1
Problem installing RMagick gem
Hi,
I have problems installing problem installing the RMagick gem.
My environment:
- winXP
- instantrails 1.4
- installed ImageMagick-6.3.0-7-Q8-windows-dll.exe
I have problems installing the gem:
cmd I''m running:
gem install rmagick --local --debug
Error:
Exception `Errno::ENOENT'' at F:/InstantRails/ruby/lib/ruby/site_ruby/
1.8/rubygems/config_file.rb:50 -
No such file or
2009 Mar 31
0
Last month on the Revolutions blog
I write about R every weekday at http://blog.revolution-computing.com
. In case you missed them, here are some articles from the past month
that may be of particular interest to r-help:
* http://tinyurl.com/cz3jmk REvolution Computing is hiring! We are
looking for enthusiastic and talented people with a strong academic
and industry track record in statistical computing for technical
sales,