similar to: new installation and migration

Displaying 20 results from an estimated 400 matches similar to: "new installation and migration"

2008 Jan 26
14
Introducing facebooker.yml
If you are using facebooker as a plugin, you can now have all your configuration in one place, namely config/facebooker.yml. You can create this file with rake facebooker:setup. It is also generated when you install it as a plugin. It has a similar setup to database.yml with sections for each environment. You can also configure your ssh reverse tunnels. If you are upgrading, make sure to
2007 May 09
3
engines causing problems with mocks
As I delve further into using engines and rspec together I am noticing more strange issues. describe "Requesting /admin/collections using get" do controller_name :admin_collections before(:each) do Collection.stub!(:paginate) end it "should return a collection of collection objects" do get ''index'' response.should be_success
2005 Apr 23
2
[Tip] Introspection to determine if a column may be null
I still want to get this into Rails for all connection adaptors, but for now I''ve hacked my own addition on for just PostgreSQL. The following code extends every Column object returned by MyModel.columns to support a new #required? method, which indicates if the column may or may not be null. The following is a huge hack - suggestions on a cleaner way to add this functionality
2006 Feb 22
9
acts_as_habtm_list plugin
I''d like to announce acts_as_habtm_list plugin for rails. acts_as_habtm_list is a Ruby on Rails plugin, that can manage ordered lists through a join-table. It is providing almost the same Api as acts_as_list. The position column has to be defined in the join table. You can find additional information at: http://www.inlet-media.de/acts_as_habtm_list/ Install it executing this command
2007 Oct 24
8
validates_confirmation_of not working
Hello to everyone, Well, very frustrated with this one because I am following the example straight from the documentation and it is not working. First when I try: validates_confirmation_of :password, :on => :password_update (password_update is a def in my User model which works fine without this validation in please) I get the following error: TypeError in UsersController#update_password
2011 Apr 04
0
issue installing gem Capybara on Debian5 w ruby 1.9.2 ( Rails 3.0.5) => installing native extension
On this server I already installed it in the gemsets for Ruby 1.8.7 and Rails 2.3.11 without any problem ... but trying (many times .. ) to install in Ruby 1.9.2 (Rails 3.0.5) raises an error ... It''s not related to the gem itself as the gem doesn(t build any native extension .. but to one dependency... I don''t know where to start looking for ... here is the log message :
2009 Jun 17
2
Difference beetwen element in the same column
Hi, i have this file pressure,k,eps,zeta,f,velocity:0,velocity:1,velocity:2,vtkValidPointMask,Point Coordinates:0,Point Coordinates:1,Point Coordinates:2,vtkOriginalIndices 0.150545,0.000575811,0.0231277,0.000339049,-0.0193008,0.00318629,-6.24066e-07,5.39599e-05,^A,7,0,0,0 0.150546,0.000782719,0.0226157,0.000497957,-0.0192084,0.00367781,5.09813e-06,5.90689e-05,^A,7,0.0003035,0.000225,1
2003 Dec 01
0
No subject
- the account is enabled until password expiry and I have no kind of = notification about the expiration of password.... - then a nice day the password really expires and, instead of been = forced to change it, the user is simply LOCKED OUT (account disabled) Note that in UNIX the user is still active as I've set a long Interval = beetwen pwd expiry and account locking ! The only
2007 May 11
1
Memory leak Windows XP SP2 related to search involving 'ä'
Hi there - I have read through the posts here that seem related to this problem and tried all the suggested solutions. None of them seem to fix my problem: I am running Windows XP SP2, MySql 5.2, ruby-1.8.5, ferret-0.11.4 Right now I am still running everything in WEBrick I set up my system according to this:
2006 Nov 04
0
My book is out -- Ruby on Rails: Up and Running
The book that Bruce Tate and I co-authored was released yesterday by O''Reilly --"Ruby on Rails: Up and Running". It is a quick-start guide expressly designed to get you going with Rails quickly. The press release is here: http://press.oreilly.com/pub/pr/1616 and the book page is here: http://www.oreilly.com/catalog/rubyrails/ Curt
2006 Mar 28
2
Rails Oracle connection
I''m using the following configuration in the database.yml to connect to Oracle, however I could not connect while the settings seems to be correct: development_oracle: adapter: oci host: 127.0.0.1:8080/XE username: rubydb password: rubyrails What is wrong here? Can anyonbe help me? -- Posted via http://www.ruby-forum.com/.
2007 Mar 08
1
RubyRails ActiveRecord base64 encode/decode of binary data
Hi, I have binary images stored in a table which I wish to encode/decode with base64 before reading into html object: <object data="data:image/foo;base64, ..base64 data.." />. How can I do this in RubyRails? -- Regards Andrew --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails:
2007 Nov 20
0
Problem while Reading Url in rubyrails application
hi , can anybody help me, while iam running rubyrails application url-> http://localhost:3007/member_account/new iam getting the following error. NoMethodError in Member_account#new Regards, Nagarjun -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on
2006 Aug 25
0
My book is out -- Ruby on Rails: Up and Running
The book that Bruce Tate and I co-authored was released yesterday by O''Reilly --"Ruby on Rails: Up and Running". It is a quick-start guide expressly designed to get you going with Rails quickly. The press release is here: http://press.oreilly.com/pub/pr/1616 and the book page is here: http://www.oreilly.com/catalog/rubyrails/ Curt
2007 Oct 28
0
TreeView Control
I am just learning RubyRails..... I am simply trying to add a tree view control. I want to use the YUI treeview control. Here is my code <% for tax in @taxonomies%> <%=tax.parent-%> <%=tax.description-%> <br> <script type="text/javascript"> addNode(node_id,description) </script> <% end %> I have a javascript that
2005 Dec 27
3
CMS centos3
Anyone using or recomend a content management system that will install without out a lot of mucky muck on a Centos3 system? I looked at Zope but it needs a newer Python, Midgaard looks likes it's geared towards RHEL4. OpenCMS looks like it runs on java so that might work. I have yet to look at Rubyrails and Django.
2008 Jan 31
0
oreilly photos
I''m looking at p81 of http://www.oreilly.com/catalog/rubyrails/ : "assign a category to a photo" where they describe using partials to assign a category to photo. Is there an easier way? thanks, Thufir http://code.google.com/p/oreilly-photos/source/browse --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the
2006 Oct 17
2
how to do scheduling in rubyonrails
can you please tell me how to cerate an automated mail generation in rubyrails in specific time period .My requirement is to check the user last log in and generate an automated mail after 3 months or one year --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Spinoffs" group. To post to this
2005 Dec 06
1
shaping small rates
What traffic shaper must I use to shape small rates (~1kBps) without significant latency? I have experience with htb and i now that htb is not very good solution in this case. With so low rates it generates a few seconds delays beetwen sended packets. Such situation is described on htb homepage, but without solution. Any ideas ? JQu
2004 May 19
1
using iLBC
I want use iLBC and have following in mind, please help me is it possible ? ISDN <-----(ALAW)-----> * <-----(ALAW)-----> SNOM SIP??<-----(iLBC)----->?*?<-----(ALAW)----->?SNOM 1. ISDN incoming codec is ALAW SNOM codec should be ALAW (can't be iLBC because a lack of codec). 2. SIP incoming codec should be iLBC (snom is ALAW). 3. SIP outgoing codec should be iLBC /snom