I have been looking for a fully functional WSDL client generator for ruby. I tried the one called wsdl2ruby and it didn't work. I think it has problems with detecting complex types correctly.
Can someone point me to the right library if there is one? I am specifically looking to generate a full functional client for SOAP API provided by...
Curious, what are you folks doing in as far as automating your unit tests with ruby on rails? Do you create a script that run a rake job in cron and have it mail you results? a pre-commit hook in git? just manual invokation? I understand tests completely, but wondering what are best practices to catch errors before they happen. Let's tak...
What's the best way to create a model in Ruby on Rails that doesn't have an underlying implementation in as far as a database table goes? It's very common to write classes that perform behavior on a particular problem domain, yet can use some of the benefits that ActiveRecord has such as validation.
Is it best to just create it as a mo...
Simple task: given that an article has many comments, be able to display in a long list of articles how many comments each article has. I'm trying to work out how to preload this data with Arel.
The "Complex Aggregations" section of the README file seems to discuss that type of situation, but it doesn't exactly offer sample code, nor do...
I'm following the Railscasts tutorial on using OpenID with AuthLogic.
This command:
$ script/plugin install git://github.com/rails/open_id_authentication.git
installs the plugin, but I don't see any OpenID Rake tasks (rake -T). In particular, I can no longer run the task:
$ rake open_id_authentication:db:create
With previous appli...
In my app, I need to set a variable for a start time to be 9:00 a.m. local, wherever the user is located.
I have a timezone variable for each user and the save and retrieve are all working. But I need to set a variable when I create a new event to be 9:00 am in the user's local time zone.
My current method uses the local time of the s...
Greetings! I’m an old Delphi programmer making the leap to the Mac, Ruby, Rails, and web programming in general. I’m signed up for the Advanced Rails workshop at the end of the month. In the meantime, I’ve been working on porting a mission-critical (of course) app from Delphi to RAILS. It feels like I’ve spent most of the past year with ...
I have four models that are related to one another, the way I have it setup at the moment is I have to select a county, region and country when entering a new city.
class Country < ActiveRecord::Base
has_many :regions
has_many :counties
has_many :cities
end
class Region < ActiveRecord::Base
has_one :country
ha...
I'm storing JSON formatted data into a var adds with the following methods:
var adds = <%= raw @add.to_a.to_json %>;
var adds = <%= raw @add.nearbys(1).to_json %>;
The first line of code stores the location of an individual in JSON format, the second line of code searches for that person's neighbors, within a 1 mile range. How do I c...
Hi,
From what I understand, 'super' keyword invokes a method with the same name as the current method in the superclass of the current class. Below in the autoload method, there is a call to 'super'. I would like to know in which superclass I would find a method with the same name or what does the call to 'super' do here
module ActiveS...
When I try rake db:migrate, I get the following error:
!!! The bundled mysql.rb driver has been removed from Rails 2.2. Please install the mysql gem and try again: gem install mysql.
rake aborted!
no such file to load -- mysql
And when I try to "gem install mysql"
Building native extensions. This could take a while...
ERROR: Error in...
I use Aloha theme in NetBeans 6.8, everything looks cool except these blue tags in HAML files, which are unreadable. How to find a place where this blue color could be changed?
P.S. I use that HAML plugin which seems to be unsupported and lacks features
Screenshot: http://img.leprosorium.com/846904 (sorry, new users can't embed images)...
Hey there!
I'm wondering how to stub/mock a helper method in functional tests?
Thanks!
(And Yes, I already googled & used the search - but couldn't find any working solution, strange!?)
...
Given the code below ...
Net::HTTP.start('localhost', 4000) do |http|
#
# usual stuff omitted for clarity
#
@response = http.request(req)
end
... if a (well behaved) server returns a 401 (Unauthorized) response, how do I get at the WWW_Authenticate header?
The best solution I've got isn't at all good ...
class Net:...
I get this error message from Passenger:
Permission denied -
/root/.bundle/ruby/1.8/specifications/activeresource-3.0.0.beta2.gemspec
Does anyone recognize it and can tell me how I can find a solution? I'm really stuck…
The server runs Ubuntu 9.
ps. The problem occured after I ran a deploy in which I'd added to the Gemfil gem "...
I use hpricot gem in ruby on rails to parse a webpage and extract the meta-tag contents. But if the website has a <noscrpit> tag just after the <head> tag it throws an exception
Exception: undefined method `[]' for nil:NilClass
I even tried to update the gem to the latest version. but still the same.
this is the sample code i use.
r...
Is it possible to have a single Ruby on Rails installations have multiple applications, that share a common model?
For example, I want to have a frontend application, as well as backend administration console, but both share the same model.
This is similar to the way Symfony works in PHP.
Thanks in advance!
...
Hey. In my rails application each client has a file. This file must not be accessible to public, only to the user (authenticated user). How would you implement this functionality?
...
In my application, there is a resource, machine, and a nested resource from machine: ip.
I want to be able to access the URI of an Ip typing the ip address.
The URI should be something like this:
/machines/m123/ips/192.168.0.1.xml
Where "m123" is the name of the machine and "192.168.0.1" is one of the ips of that machine.
The probl...
I've built an API using actionwebservice and when a client calls a method to pass in an empty string (""), it's to_s value is # instead of "". But when the client passes in "hello", it's to_s value is "hello".
class UsersApiController < ApiController
web_service_api UserApi
def create_or_update(arg1)
Rails.logger.info arg1.to_...