similar to: Foundation & Authlogic

Displaying 20 results from an estimated 300 matches similar to: "Foundation & Authlogic"

2014 Apr 23
0
Something went wrong
http://secret-brushlands-1375.herokuapp.com/users/sign_up Not sure why all of a sudden I am getting this error message when I try to save a new user - Here is the log file: C:\rails_projects\store4>heroku logs 2014-04-23T21:35:54.918695+00:00 app[web.1]: vendor/bundle/ruby/2.0.0/gems/act ivesupport-4.1.0/lib/active_support/callbacks.rb:113:in `call' 2014-04-23T21:35:54.918698+00:00
1999 Jan 20
1
JBuilder Reload buffers? confusion (any update?)
Hi, We've got some Java projects that are being developed on both Unix and NT and we're struggling with JBuilder 2.0 and its "File has been externally updated, reload buffers?" messages. Has anyone found a fix? Is it a bug in JBuilder? i.e should I save my hair and not spend any more time investigating/trying to fix this problem? More info: Our NT machines access files from
2014 Feb 23
0
ExecJS::RuntimeError in Say#hello
Showing *D:/RailsInstaller/blog/app/views/layouts/application.html.erb* where line *#6* raised: module.js:340 throw err; ^ Error: Cannot find module 'C:\Windows\system32\config\SYSTEM~1\AppData\Local\Temp\execjs20140223-5592-h2cx72.js' at Function.Module._resolveFilename (module.js:338:15) at Function.Module._load (module.js:280:25) at Function.Module.runMain
2013 Apr 15
4
Rails' scaffold controller generator - should it test json format also?
(Forgive me if this is incorrect, because I recognized this initially as something in Rails 4.0.0.beta1 and have just done a cursory look over the latest generator code.) Noticed in Rails 4 that the test generated for a scaffold controller only tests the html format instead of both html and json:
1999 Jan 20
1
JBuilder Reload buffers? confusion (any update?) (PR#12876)
aideen@persimmon.co.uk wrote: > > Hi, > > We've got some Java projects that are being developed on both Unix and > NT and we're struggling with JBuilder 2.0 and its "File has been > externally updated, reload buffers?" messages. Has anyone found a fix? > Is it a bug in JBuilder? i.e should I save my hair and not spend any > more time investigating/trying
2013 Mar 14
0
Display custom links above top level arrays using Jbuilder
I have a custom JSON response in which I display a collection of 15 posts along with related data like comments etc., as part of an API call. I am displaying the entire collection using Jbuilder . json.array!(@posts) do |post| .. .. end I want to display pagination links above the response of the 15 posts, in order to get the next set of posts with the appropriate next set of next page and
2004 Dec 18
0
Still the big Icecast problem!
Easy... when I made this java applet : http://rbg.online.stalig.net/jplayer/radio-bro-gwened.html I used a signed lib from jorbis without modifying it. I just made a subclass of JOrbisPlayer which change the behaviour for what I wanted. I can provide my wall JBuilder project for those interested to use it. Easy way: - just change the html file to feed it with your ogg stream url - do what you
2004 Sep 21
1
windows program over a samba share
Hi, I don't know if this is possible, but I'd like to install a window program (in the specific JBuilder Personal) over a samba share, and then to mount a network share as a disk from windows clients, so they can use the program. Is it possible? Any idea on how to share windows programs from a linux server? Thanks, Luca -- Luca Ferrari, fluca1978@infinito.it
2012 Sep 15
10
Versioning of Views; Our Approach
My friend Ben Willis and I have developed a gem for the versioning of Rails views. https://github.com/bwillis/versioncake The versioning is done by the naming convention. Image the following series of files : show.v3.json.jbuilder show.v2.json.jbuilder show.v1.json.jbuilder create.v2.json.jbuilder create.v1.json.jbuilder The developer pre-defines all view versions in their config. When a
2012 Sep 18
2
NoMethodError with rake db:migrate
Hi! First of all, this is my first application on Rails, and i''m stuck at a migration. i created a demo app (the demo_app from michael hartl''s tutorial) as usual: rails new demo_app, rails generate scaffold User name:string email:string, and when i do rake db:migrate, this stack appears: rake db:migrate --trace ** Invoke db:migrate (first_time) ** Invoke environment
2013 Oct 30
0
2013 Rails Rumble Gem Teardown
Hi guys. I just finished writing up my analysis of the gems used in the 2013 Rails Rumble: http://www.dwellable.com/blog/Rails-Rumble-Gem-Teardown The Rails Rumble organizers were kind enough to let me look at the Gemfiles submitted by 221 teams. I spent a couple of days digging into the data. I was able to answer questions like: - Are people turning off turbolinks? - Haml vs. Slim - fight!
2008 Sep 11
0
Help on executing R from java
Hello, I've installed Rserve and I've run it. I've installed the JRclient-RF503.jar. I've installed JDK 1.4.2 and R language version 2.7.1. Now when I compile the Jrclient exeamples from JBUILDER 9? an error appreas: package org.rosuda.JRclient does not exist ... could you please help me? Thank you in advance [[alternative HTML version deleted]]
2014 Mar 09
0
rails with mongodb
Hello viewers .. I'm Doing a project on rails with mongoDB as a backend database. When we learn a new programming language we start with writing a helloworld program . In the same way if we want to work with a web application we usually do a simple database connection .. We just create a page with a single text box and a simple button . When we click the button the data should be fetched from
2003 Oct 07
0
Software-Programmierer sucht neue Herausforderung ...
Sehr geehrte Damen und Herren, ich habe ein Interesse an eine Mitarbeit mit Ihrer Firma. Meine wichtigste Fachrichtung ist die Entwicklung von Individualsoftware und die Beratung im Hardware- und Softwarebereich. Ich besorge jegliche Entwicklung eines kompletten Programms in den Programmiersprachen JAVA, .NET, VB ... Ich kann reibungslos eine Internetapplikation in den Programmiersprachen
2014 Apr 26
0
jquery_ujs.js 404
I am getting this annoying error which relates to jquery_ujs.js not being served. Any clues? This is the site link: http://test.kopy.com.br/home/index GET http://test.kopy.com.br/assets/jquery_ujs.js?body=1 404 (Not Found) index:11 GET http://ads.panoramtech.net/loader.js?client=tac net::ERR_BLOCKED_BY_CLIENT rev.js:4 Error in event handler for (unknown): Cannot read property 'state' of
2013 May 04
21
Getting started w/ Rails 4
Hi. I''m trying to run Getting started tutorial under Rails 4.0.0.beta1 although it assumes it runs on Rails 3. I was able to get rid of all errors by wrapping post_params here and there, and installing protected_attributes Gem for attr_accessible to make sense. Post/ comment CRUD works just fine, but I don''t seem to be able to add Tags (the final part of the tutorial). Post saved
2011 Aug 22
0
Authlogic and Authlogic-OID Question
Hello,I was wondering if anyone was using these and if so, hopefully you could explain something to me. When User::create is called when using an open_id, User::create gets called twice and the second call clears out the session. The first call to User::create deletes a row from open_id_authentication_associations and then inserts a new row into the same table. It then sets up the request to
2011 Jun 16
2
Authlogic: Trying to login in my Cucumber test - Authlogic::Session::Activation::NotActivatedError
In a Cucumber step definition, I''m trying to login, but I keep getting this error: You must activate the Authlogic::Session::Base.controller with a controller object before creating objects (Authlogic::Session::Activation::NotActivatedError) My code: Given /^I am the logged in (.+) "(.+)"$/ do |role, login| user = User.create!( :login => login, :password =>
2009 Aug 24
1
Authlogic Forgot Password
Hi, Has anyone implemented the Authlogic forgot password stuff? Please let us know how to, if anyone has or has the code for it. Thanks, Pratik
2010 May 29
1
Authlogic & Perishable token
Hi I''m setting up authlogic and have an error: Column ''perishable_token'' cannot be null ..... ..... Does anyone know what should generate value for this column? Thanks in advance! -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send