/etc/network/interfacesでコメントになっている以下を有効にし、既に設定されているものをコメントにする。
auto eth0 iface eth0 inet dhcp
// | |
// PLCDocumentViewManagerTest2.m | |
// ioCoreTest | |
// | |
// Created by Katsuyoshi Ito on 09/06/23. | |
// Copyright 2009 ITO SOFT DESIGN Inc. All rights reserved. | |
// | |
#import "PLCDocumentViewManagerTest2.h" | |
#import "UITableViewControllerTestHelper.h" |
@interface RootTableViewInEditModeTest : RootTableViewTest { | |
} | |
@end | |
/** | |
* このテストはRootViewControllerを編集モードにして、 | |
* EditViewControllerに遷移してからのテストをする。 | |
*/ | |
@implementation RootTableViewInEditModeTest |
#define unless(s) if (!(s)) | |
#define until(s) while (!(s)) |
mkdir tmp | |
cd tmp | |
curl -O ftp://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p358.zip | |
unzip ruby-1.8.7-p358.zip | |
cd ruby-1.8.7-p358 | |
./configure | |
make | |
sudo make install |
・ https://github.com/rubygems/rubygems/tree/1.3.7.1 のZIPとかかれたボタンを押す。 | |
・自動で解凍されない場合ダウンロード先でダブルクリックで解凍する | |
・ターミナルで cd まで入れたら上で解凍して出来たフォルダーをターミナルにドラックする。cdの後にはスペースが必要 | |
・以下ターミナルの操作 | |
sudo ruby setup.rb | |
sudo gem update --system |
./configure --enable-pthread --enable-tcltk-framework --enable-macosx-aqua | |
make | |
sudo make install |
$ sudo motion update | |
Password: | |
Connecting to the server... | |
Downloading software update... | |
######################################################################## 100.0% | |
Installing software update... | |
Software update installed. | |
= RubyMotion 1.11 = |
your_app = ARGV[0] || "your_app" | |
plan = ARGV[1] || "dev" | |
/(HEROKU_POSTGRESQL_\w+)/ =~ `heroku addons:add heroku-postgresql:#{plan} -a #{your_app}` | |
db_url = $1 | |
system("heroku addons:add pgbackups -a #{your_app}") | |
system("heroku maintenance:on -a #{your_app}") | |
system("heroku pgbackups:capture --expire -a #{your_app}") | |
system("heroku pgbackups:restore #{db_url} -a #{your_app}") | |
system("heroku pg:promote #{db_url} -a #{your_app}") | |
system("heroku maintenance:off -a #{your_app}") |
describe NSIndexPath do | |
describe "NSIndexPath('0', '1').to_a" do | |
before do | |
@subject = ["0", "1"].nsindexpath.to_a | |
end | |
it "should be [0, 1]" do | |
@subject.should == [0, 1] | |
end | |
end |
/etc/network/interfacesでコメントになっている以下を有効にし、既に設定されているものをコメントにする。
auto eth0 iface eth0 inet dhcp