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
$ rake db:automigrate --trace | |
(in /home/jaigouk/development/muddle) | |
Loading init file from /home/jaigouk/development/muddle/config/init.rb | |
Loading /home/jaigouk/development/muddle/config/environments/development.rb | |
** Invoke db:automigrate (first_time) | |
** Invoke merb_env (first_time) | |
** Execute merb_env | |
Loading init file from /home/jaigouk/development/muddle/config/init.rb | |
Loading /home/jaigouk/development/muddle/config/environments/rake.rb | |
~ Connecting to database... |
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
development: &defaults | |
repositories: | |
couch: couchdb://localhost:5984/muddle_development | |
mysql: | |
adapter: mysql | |
database: muddle_development | |
host: localhost | |
username: root | |
test: |
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
--- | |
development: &defaults | |
repositories: | |
couch: couchdb://localhost:5984/muddle_development | |
mysql: | |
adapter: mysql | |
database: muddle_development | |
host: localhost | |
username: root | |
password: 5555 |
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
[jaigouk@j-laptop muddle]$ rake db:automigrate --trace | |
(in /home/jaigouk/development/muddle) | |
Loading init file from /home/jaigouk/development/muddle/config/init.rb | |
Loading /home/jaigouk/development/muddle/config/environments/development.rb | |
** Invoke db:automigrate (first_time) | |
** Invoke merb_env (first_time) | |
** Execute merb_env | |
Loading init file from /home/jaigouk/development/muddle/config/init.rb | |
Loading /home/jaigouk/development/muddle/config/environments/rake.rb | |
~ Connecting to database... |
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
--- | |
development: &defaults | |
repositories: | |
couch: couchdb://localhost:5984/muddle_development | |
mysql: | |
adapter: mysql | |
database: muddle_development | |
host: localhost | |
username: root | |
password: secret |
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
[jaigouk@j-laptop muddle]$ MERB_ENV=development rake db:automigrate --trace | |
(in /home/jaigouk/development/muddle) | |
Loading init file from /home/jaigouk/development/muddle/config/init.rb | |
Loading /home/jaigouk/development/muddle/config/environments/development.rb | |
** Invoke db:automigrate (first_time) | |
** Invoke merb_env (first_time) | |
** Execute merb_env | |
Loading init file from /home/jaigouk/development/muddle/config/init.rb | |
Loading /home/jaigouk/development/muddle/config/environments/development.rb | |
~ Connecting to database... |
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
--- | |
development: &defaults | |
repositories: | |
couch: couchdb://localhost:5984/muddle_development | |
mysql: | |
adapter: mysql | |
database: muddle_development | |
host: localhost | |
username: root | |
password: secret |
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
sudo make && yes | sudo make install | |
make all-recursive | |
make[1]: Entering directory `/home/jaigouk/svn_installs(couchDB)/couchdb' | |
Making all in bin | |
make[2]: Entering directory `/home/jaigouk/svn_installs(couchDB)/couchdb/bin' | |
make[2]: `all'를 위해 할 일이 없습니다 | |
make[2]: Leaving directory `/home/jaigouk/svn_installs(couchDB)/couchdb/bin' | |
Making all in etc | |
make[2]: Entering directory `/home/jaigouk/svn_installs(couchDB)/couchdb/etc' | |
Making all in couchdb |
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
require 'rubygems' | |
require 'scrubyt' | |
merb_readme = Scrubyt::Extractor.define do | |
#Perform the action(s) | |
fetch 'http://merbivore.com/documentation/current/doc/rdoc/stack/index.html' | |
click_link "files" | |
click_link "/home/merb/merb-docs/current/gems/gems/merb-cache-1.0" | |
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
require 'rubygems' | |
require 'nokogiri' | |
require 'open-uri' | |
require 'haml' | |
doc = Nokogiri::HTML(open('http://merbivore.com/documentation/current/doc/rdoc/stack/index.html?a=F00000098&name=README')) | |
@api_doc = doc.search('div#rdocContent') | |
puts @api_doc | |
OlderNewer