401 reputation
215
bio website
location
age
visits member for 11 months
seen 3 hours ago
stats profile views 39

May
17
comment Rspec: Test redirects in Devise::OmniauthCallbacksController subclass
The only change I made was pulling a bit more into spec_helper.rb. I didn't try setting the request.env["omniauth.auth"] in a before block. I was happy enough that it was dry and working so I thought it best to quit while I was ahead!
May
16
comment Rspec: Test redirects in Devise::OmniauthCallbacksController subclass
The syntax worked perfectly. The only change I made was pulling a bit into spec_helper.rb following this answer which I found thanks to your answer.
May
16
comment Rspec: Test redirects in Devise::OmniauthCallbacksController subclass
Perfect. Helpful on many levels, not least that I was thinking about this as a controller spec rather than a feature spec. Much appreciated!
May
10
comment How does “select column as” work?
Hmmm. I'm afraid I don't know why that might be.
May
10
comment How does “select column as” work?
It could be that special characters are causing the problem with currency. You could try putting # encoding: UTF-8 at the top of the file. Here is an example of somebody solving what might be a similar problem
Apr
21
comment How to secure user show page alongside user admin functions when using devise
Appreciate your help Jesse. It's true that adding a ProfilesController like you suggest and adapting Ability as Edward suggests works. I was just going to leave it open a little bit to see if any other suggestions come in. It seems to me a convention to have this manage area for admin functions (controllers/manage & views/manage), and I feel like there must be a way to keep non-admins out of it completely.
Apr
19
comment How to secure user show page alongside user admin functions when using devise
You are right! That does work. I'm just going to leave this answer open for a bit to see if anybody comes up with a way of keeping users out of the admin area completely (Manage::UsersController), otherwise I will go ahead and accept your answer.
Apr
19
comment How to secure user show page alongside user admin functions when using devise
Thanks. To be honest I'm not sure I do want to stick with cancan for keeping users out of the admin area. It feels vulnerable for this to be protected as a single method, when really they should be kept out of the whole thing.
Apr
19
comment How to secure user show page alongside user admin functions when using devise
Sorry. That was a mistake when I was cleaning things up. Changing it to can :read, User, :id => user.id does not seem to prohibit access to an index action.
Apr
19
comment How to secure user show page alongside user admin functions when using devise
No, but there is on the Manage::UsersController which allows an admin to see a list of all users.
Apr
19
comment How to secure user show page alongside user admin functions when using devise
Thanks Jesse. The bit I don't get is that I would have to grant some kind of user permission in cancan so people could see their own profile, but how would I do this in a way that didn't also give them access to Manage::UsersController#index?
Apr
18
comment Rails 3.1 not detecting Coffeescript and Javascript changes?
But check this answer first: stackoverflow.com/a/8313952/1450420
Mar
25
comment Rails: Export arbitrary array to Excel using to_xls gem
I'm just wondering if anybody has any totally different takes on the problem. Generating arbitrary TSVs is so easy with CSV.generate(col_sep: "\t") do |csv|... but then I found all sorts of problems with encoding and compatibility with different versions of Excel. Ideally there would be a way of doing .to_xls on one of these arrays.
Mar
24
comment Rails: Export arbitrary array to Excel using to_xls gem
Thanks for this. I'm going to wait a bit before accepting the answer if that's ok just to see if there are any alternative approaches to this problem.
Mar
24
comment Rails: Export arbitrary array to Excel using to_xls gem
Thanks. That last bit didn't work for me though. I got "undefined method `name' for #<Person:0x007fde0bc52d58>"
Mar
24
comment Rails: Export arbitrary array to Excel using to_xls gem
This works perfectly and is very helpful. Do you know how you would incorporate a virtual attribute into the attributes hash on an Active Record object?
Mar
24
comment Rails: Export arbitrary array to Excel using to_xls gem
Thanks. I had a look at it axlsx, and it could be a good option. However I started with to_xls because it seemed simpler and suitable for my needs. A complication here is that my app is on Heroku so you can't create a file that saves to the filesystem. Looking at the examples now they all seem quite involved in terms of formatting etc. What I need to know is how to get a basic array out of Rails on the fly.
Mar
24
comment Rails: Export arbitrary array to Excel using to_xls gem
@Dave I've tried all sorts. This is the simplest form that I feel should work, but I get a blank spreadsheet: [{foo: "1",bar: "2"}].to_xls
Jan
20
comment Ruby: DRY out creation of Active Record Relation object
On second thoughts don't worry about it. I guess it's the idea of iterating across an array of symbols and converting them to strings where needed. Also the use of tap that I have not encountered before. Just need to get my head around that. Very much appreciate your help.
Jan
20
comment Ruby: DRY out creation of Active Record Relation object
Thanks sawa. Do you know what this is called? i.e. what should I have Googled?