similar to: rails generate session_migration -e production

Displaying 20 results from an estimated 20000 matches similar to: "rails generate session_migration -e production"

2013 Sep 26
0
Production quality Rails 4 chat demo?
Hi Everyone, I''m trying to use Rails 4''s ActionController::Live functionality to do a chat-like interface in my app. I''ve found a number of blog posts, all of which seem to be based on Aaron Patterson''s original one here: http://tenderlovemaking.com/2012/07/30/is-it-live.html Has anyone here successfully gotten this to work well enough for production? I assume
2013 Nov 05
3
rails 4 logging during development, surpress asset messages?
Is it possible to surpress all those asset related messages? I have a terminal open where I run ''rails s'' and it gets hard to read. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to
2012 Oct 17
1
generate 10 UUID records and save it it database in rails
I need to create certain number of UUId records(based on the selection of drop down) and save it in the database. Now I am generating only one unique id. Can this be done in the model in this way. Or do I need to write a helper file for that?? def generate_unique_token=(value) self.secret = Base64.encode64(UUIDTools::UUID.random_create)[0..8] end In my controller........... def create
2013 Oct 23
9
rails generate scaffold - ERROR
Hi, I just installed ROR using the rvm using these instructions: http://ryanbigg.com/2010/12/ubuntu-ruby-rvm-rails-and-you/ Using Ubuntu 12 on VirtualBox I''m trying to create a demo_app rails generate scaffold User name:string email:string gives me this error: -- /home/natmanu/.rvm/gems/ruby-2.0.0-p247/gems/execjs-2.0.2/lib/execjs/runtimes.rb:51:in `autodetect'': Could not
2013 Jun 14
1
Setting up a rails app in a relative path (using Apache and Passenger)
Hi, This seems like it should be a common problem, but I haven''t been able to google for the right terms, evidently... I''m trying to set up my rails app, not to the base domain name, but to a relative path. That is, the server already hosts an app at the domain, and I want to add a rails app. So, mydomain.com already exists and is a PHP app. I want mydomain.com/railsto point
2013 Jun 18
1
Rails 3 in action book: some files are not generated as written in the book
I''m reading "Rails 3 in action", chapter 3, p. 56. It is said that the Cucumber skeleton generator > rails generate cucumber:install has to also generate the definition for the first step of the Scenario "Given I am on the homepage" in the file "features/step_definitions/web_steps.rb" # file: features/step_definitions/web_steps.rb Given /^(?:|I )am on
2013 Sep 04
0
Rapidfire 1.2.0 - Dynamic surveys in your rails app
hi, A new version of rapidfire gem (v1.2.0) is released Rapidfire gem makes adding dynamic surveys very easy in your rails application. source: https://github.com/code-mancers/rapidfire docs: http://rdoc.info/gems/rapidfire/frames demo: https://rapidfire.herokuapp.com Changes (v1.2.0) * Rails 4 is now supported * A new api is exposed to fetch survey results. It also
2014 Feb 20
0
Background worker dynos on Rails using Heroku
Hi, I have a rails application that requires data from an API to run. Since the API is slow I am looking to have a background process run continuously and scrape the API for new messages and add it to the application database From some reading , a worker dyno seems to be the best way to achieve this. Any links on how to go about scheduling a continuous running worker process in the background
2013 May 21
0
Respect for Rails 0.1.0 is out!
Hi, Just to let you know that I have just released a new Rails plug-in called: Respect for Rails. Never feel the need to document your REST API while still developing it because a colleague of yours is making a mobile app client at the same time? If yes, then this gem is for you. You: - describe the structure of your server requests/responses using the compact DSL provided. - mount the engine
2013 Oct 12
3
Assets not loading in production
Hello, (Rails 4, Ruby 2) I am trying to deploy my first rails app in a production environment, but cannot get the assets to load. The site is hosted on Webfaction, they advise to create a "static app" to serve the assets which I have done. But I don''t understand how my rails app then knows about the static app. At the moment, in production inside the head it prints out...
2013 Sep 05
1
hw to create binary tree structure in rails
hello friends, i want to create a binary tree structure in railsapps.it there any gem or any other technique. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to
2013 Jun 26
2
having isues with creating a ajax call in my simple rails application ,
hi all , having isues with creating a ajax call in my simple rails application , can any body be available for some time to help on mail or chat ?? -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to
2013 Aug 26
2
[JOBS] Ruby on Rails - Freelancing
Hi, Looking an expert in Ruby on Rails for maintaining & implementing new concepts and optimization of our website. For more details write back. Regards, Arun M Thrillophilia.com <http://www.thrillophilia.com> -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving
2013 Oct 18
1
Rails 4 + AngularJs (unembedded client) integration sample
Hi everybody, I''m experimenting with Rails and AngularJs (as unembedded client) and decided to upload to a public github repository my efforts. Of course, everything is just a toy application I use to experiment and test on various stuff (there''s absolutely no production ready nor TDD/BDD backed code). As of now a very basic login/signup feature is implemented and
2012 Oct 02
4
Rails Default ETag Generation
How does Rails generate ETags by default? I''ve got config.action_controller. perform_caching set to true in production so that I can use page-level caching in a few specific places, but it seems that Rails is automatically setting ETags on *all* responses even though I''m not using fresh_when or the stale? helpers in any of my actions. How is Rails deciding to do this and how
2013 Aug 06
2
Invalid auth token on production site
I get this error > Invalid auth token > > on my production website (Rails 4) deployed using capistrano and puma. Just that error on a white screen and nothing else. How do I debug this? I googled for similar error but all of them are dated and deal with browser specfic issue with Safari but for me opening the website in any browser gives this error. config.secret_key_base has value
2013 May 29
2
Why can't get remote javascript libraries on Rails 4
In rails 3, I included this line: *<%= javascript_include_tag "http://cdn.leafletjs.com/leaflet-0.5.1/leaflet.js" %>* But when migrate to rails 4, its not posible and I get the next error: *Invalid argument - C:/Ruby193/findiner/app/assets/javascripts/http://cdn.leafletjs.com/leaflet-0.5.1 * So far, I won''t be able to get remote libraries. Thanks for help! -- You
2013 Oct 02
2
Rails 4 ujs button only works after second click
Here''s the code https://gist.github.com/dasibre/6786245 *new.js.erb file has the following js code* $(''a.pinbutton'').on(''click'', function() { $(this).parent().append(''<%= escape_javascript(render("select")) %>'') }); *here''s the player index with the new link* <%= link_to "Pin",
2012 Nov 05
3
DragonFly Object not found in Production
could please anyone help me with this issue? http://stackoverflow.com/questions/13237954/object-not-found-in-production thanks, enrico -- · Enrico Stano · · twitter @enricostano · skype ocirneonats -- 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
2013 Jun 07
4
how to add gdal with rails application , now working with gdal 1.8 in ubuntu 10.10
I need to downgrade the gdal version , i am working in remote system so have only command prompt so if anybudy know how to either downgrade gdal version from 1.8 to 1.7 or any other way to use gdal in rails app which have version 2.3.5 and ruby 1.8.7 and ubuntu 10.10 Thanks -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To