This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Mysql2::Error: Unknown column 'subscriptions.user_id' in 'where clause': SELECT `user`.* FROM `user` INNER JOIN `subscriptions` ON `user`.userid = `subscriptions`.subscriber_id WHERE ((`subscriptions`.user_id = 1)) | |
| ActiveRecord::StatementInvalid: Mysql2::Error: Unknown column 'subscriptions.user_id' in 'where clause': SELECT `user`.* FROM `user` INNER JOIN `subscriptions` ON `user`.userid = `subscriptions`.subscriber_id WHERE ((`subscriptions`.user_id = 1)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| I'm wanting this to return all user records with the number of posts associated to each. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| NoMethodError in Home#index | |
| Showing /Volumes/Projects/dev/escalate/app/views/partials/layout/_sidebar.html.haml where line #1 raised: | |
| undefined method `formats' for nil:NilClass | |
| Extracted source (around line #1): | |
| 1: = render :action => 'widgets/new_members' | |
| Trace of template inclusion: app/views/layouts/application.html.haml |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <p></p> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| gem "meta_where", :git => "git://github.com/ernie/meta_where.git" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| source 'http://rubygems.org' | |
| source 'http://gems.github.com' | |
| gem 'sinatra' | |
| gem 'haml' | |
| gem 'fleakr' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| unless existing_product.productcategorynames.nil? | |
| existing_product.productcategorynames.split(',').each do |cn| | |
| unless category_table[cn].nil? | |
| category_name = category_table[cn] | |
| tool.category = category_name unless tool.archived == 1 | |
| end | |
| end | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html> | |
| <html lang=en> | |
| <head> | |
| <title>Just a title</title> | |
| </head> | |
| <body> | |
| <p>I can has HTML5?</p> | |
| </body> | |
| </html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html> | |
| <title>Just a title</title> | |
| <p>I can has HTML5?</p> |