Results 14 comments of Andrew Smith

Looks like this is working as expected. When inside the `list` loop, `self` becomes each element of the array `list`, i.e. a string. So the `fn` is being sent to...

Very good point! I guess you **do** want access to higher level scopes otherwise writing templates would be tortuous. Does seem like it's inconsistent.

When setting up for `ActiveStorage` the instructions from Pablo above worked well but I had to scope the routes as follows: ```ruby namespace :admin do scope module: :active_storage do resources...

@jeffdeville My solution probably only works because I'm not allowing the creation of new attachments or blobs, so I don't encounter the code that's causing an error in your case....

Hi @ashmckenzie! Just tried out your changes and I get the following stack dump when searching movies: ``` /home/andrew/.rvm/gems/ruby-1.9.2-p320@tmdb_party_test/bundler/gems/tmdb_party-33dc04d28709/lib/tmdb_party/extras/httparty_icebox.rb:210:in `dump': no marshal_dump is defined for class Proc (TypeError) from /home/andrew/.rvm/gems/ruby-1.9.2-p320@tmdb_party_test/bundler/gems/tmdb_party-33dc04d28709/lib/tmdb_party/extras/httparty_icebox.rb:210:in...

Forgot to mention, if I hack TMDb to cache in memory rather than to disk everything is fine. Here are the gem versions I'm using: ``` Gems included by the...

``` ruby #/usr/bin/env ruby require "rubygems" require "bundler/setup" require "tmdb_party" require "pp" tmdb = TMDBParty::Base.new('6acf9a0fd5218efe8859413e8ace0aba') #results = tmdb.search('transformers') results = tmdb.search_person('tom cruise') pp results ``` Ash, I don't think there's...

Nice work @ashmckenzie! I've decided to scratch my own itch, though, and build something new on the v3 API, using faraday and vcr for testing: https://github.com/andrewdsmith/neo-tmdb. Still early days.

Are you suggesting more modes in addition to night vision and hardpoints deployed? So modes for under attack, docked, etc.?

The interesting problem to solve here is the precedence order. So if you have hardpoints out, night vision on, and you're being attacked, which setting wins? I guess I could...