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
#!/bin/bash | |
echo "*************************************************************************************************" && | |
echo "* ruby 1.8.7 REE build *" && | |
echo "*************************************************************************************************" && | |
echo "" && | |
source /usr/local/rvm/scripts/rvm && | |
rvm use ree@diaspora --create && | |
bundle install && | |
bundle exec rake cruise |
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
Administrator@SARAH-25AAA95F6 ~/Desktop/diaspora (master) | |
$ gem install eventmachine | |
Temporarily enhancing PATH to include DevKit... | |
Successfully installed eventmachine-0.12.10-x86-mswin32-60 | |
1 gem installed | |
Installing ri documentation for eventmachine-0.12.10-x86-mswin32-60... | |
Installing RDoc documentation for eventmachine-0.12.10-x86-mswin32-60... |
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
module HasPersonProxy | |
module ClassMethods | |
def always_has_person | |
self.instance_eval do | |
include InstanceMethods | |
alias_method_chain :person, :proxy | |
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
6405: Fixes #721 when creating a comment (ajax) the link to your own profile is fucked up and instead it linked to the user id | |
-- | |
28584: Specifying bson version to avoid whatever is fucking up in 1.0.6, we can move to it later | |
-- | |
36776: fuck | |
-- | |
38121: in the shit | |
omg/wtf/ohai! (-ohaibbq) |
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
=> Booting Mongrel | |
=> Rails 2.3.2 application starting on http://0.0.0.0:80 | |
cruise data root = '/home/smei/.cruise' | |
./lib/cruise_control/../../vendor/rails/railties/lib/rails/gem_dependency.rb:99: | |
in `requirement': | |
undefined local variable or method `version_requirements' for | |
#<Rails::GemDependency:0x7fd0d5382090> (NameError) |
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
if Gem::VERSION >= "1.3.6" | |
module Rails | |
class GemDependency | |
def requirement | |
r = super | |
(r == Gem::Requirement.default) ? nil : r | |
end | |
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
context "mobile" do | |
it "renders a share button when you don't pass aspect IDs" do | |
get :index, :format => :mobile | |
response.body.should =~ /#{Regexp.escape('id="status_message_submit"')}/ | |
end | |
it "renders a share button when you pass aspect IDs" do | |
get :index, :a_ids => [@alices_aspect_1], :format => :mobile | |
response.body.should =~ /#{Regexp.escape('id="status_message_submit"')}/ | |
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
XVFB=/usr/bin/Xvfb | |
XVFBARGS=":99 -ac -screen 0 1024x768x16" | |
PIDFILE=/tmp/cucumber_xvfb_99.pid | |
case "$1" in | |
start) | |
echo -n "Starting virtual X frame buffer: Xvfb" | |
/sbin/start-stop-daemon --start --quiet --pidfile $PIDFILE --make-pidfile --background --exec $XVFB -- $XVFBARGS | |
echo "." | |
;; | |
stop) |
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
- content_for :page_title do | |
DIASPORA* ALPHA | |
- begin | |
= render :partial => 'home/show' | |
- rescue Exception => e | |
= e.inspect | |
:css | |
header{ | |
display:none; | |
} |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<XRD xmlns="http://docs.oasis-open.org/ns/xri/xrd-1.0"> | |
<Subject>acct:[email protected]</Subject> | |
<Alias>"https://otherpod.com/"</Alias> | |
<Link rel="http://microformats.org/profile/hcard" type="text/html" href="https://otherpod.com/hcard/users/4cec1e372c174347b90000ad"/> | |
<Link rel="http://otherpod.com/seed_location" type = 'text/html' href="https://otherpod.com/"/> | |
<Link rel="http://otherpod.com/guid" type = 'text/html' href="4cec1e372c174347b90000ad"/> | |
<Link rel='http://webfinger.net/rel/profile-page' type='text/html' href='https://otherpod.com/u/sarah'/> | |
<Link rel="http://schemas.google.com/g/2010#updates-from" type="application/atom+xml" href="https://otherpod.com/public/sarah.atom"/> | |
<Link rel="diaspora-public-key" type = 'RSA' href="[public key omitted for length]"/> |