This file contains 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
You have a non-brew 'pkg-config' in your PATH: | |
/usr/bin/pkg-config | |
`./configure` may have problems finding brew-installed packages using | |
this other pkg-config. | |
Your pkg-config is not checking "/usr/X11/lib/pkgconfig" for packages. | |
Earlier versions of the pkg-config formula did not add this path | |
to the search path, which means that other formula may not be able | |
to find certain dependencies. |
This file contains 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
package com.jlebrech; | |
import java.util.ArrayList; | |
import java.util.HashMap; | |
import java.util.List; | |
import android.app.Activity; | |
import android.os.Bundle; | |
import android.widget.TextView; | |
import android.widget.ListView; | |
import android.widget.ArrayAdapter; |
This file contains 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
Unknown action | |
The action 'show' could not be found for FriendshipsController |
This file contains 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
= simple_form_for(@memo) do |f| | |
- if @memo.errors.any? | |
#error_explanation | |
%h2 | |
= pluralize(@memo.errors.count, "error") | |
prohibited this memo from being saved: | |
%ul | |
- @memo.errors.full_messages.each do |msg| | |
%li= msg |
This file contains 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
.friends-in | |
%h1 Friends In | |
- @friends_in.each do |friendship| | |
%p | |
=friendship.friend.login | |
=link_to "remove", friendship, :method => :delete | |
=link_to "accept", friendship, :method => :put |
This file contains 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
@friends_out = Friendship.where(:user_id=>current_user.id) #users "i" want to be friends with | |
@friends_in = Friendship.where(:friend_id=>current_user.id) #users who want to be friend with "me" | |
# users who haven't added "my" id to Friendship and vice versa | |
# user who are my friend and i'm their friends. |
This file contains 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
.friends | |
- @user.friendships.each do |friendship| | |
%p | |
=friendship.friend.login | |
=link_to "remove", friendship, :method => :delete |
This file contains 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
.friends | |
- @user.friendships.each do |friendship| | |
%p=friendship.friend.login | |
-link_to "remove", friendship, :method => :delete |
This file contains 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
@import <Foundation/CPObject.j> | |
@implementation AppController : CPObject | |
{ | |
CPWindow theWindow; //this "outlet" is connected automatically by the Cib | |
IBOutlet CPButtonBar buttonBar; | |
IBOutlet CPToolbar toolBar; | |
} |
This file contains 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
@import "attributeEditController.j" | |
... | |
attribController = [[AttributeEditController alloc] initWithCibName:"attributeEditController" bundle:nil]; | |
[verticalSplitter addSubview:[attribController view]]; |