okimo****@users*****
okimo****@users*****
2009年 12月 15日 (火) 19:04:18 JST
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to "mint-server" repository containing the "mint" project. The branch, master has been updated via fbef548681e33f2bf6f314ad1edf89cd773ee412 (commit) via 7c7af36c4fdb57827c63194e7624f891b37a4869 (commit) via 2a073cacce85915035abfc4851c7968229e3f517 (commit) via 04514410e26987b64a5763e6e1dce440a0be3a0e (commit) via 0a9fb6313fb8916192d7cda473d00091e5715d25 (commit) via 7f95e4c31dd6b06e7a3dd9a776eed61680e13d24 (commit) via e0eb43509dd4c7d8e5ac9a48774ec2d48590d45a (commit) via 2b758df1259193a89b665f6621d2ebc64fe99421 (commit) from f8188c433796be6e098a288592f6871d211ac4d0 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit fbef548681e33f2bf6f314ad1edf89cd773ee412 Author: okimoto <okimo****@good-*****> Date: Tue Dec 15 16:32:21 2009 +0900 add menu commit 7c7af36c4fdb57827c63194e7624f891b37a4869 Author: okimoto <okimo****@good-*****> Date: Tue Dec 15 16:31:52 2009 +0900 add default layout commit 2a073cacce85915035abfc4851c7968229e3f517 Author: okimoto <okimo****@good-*****> Date: Tue Dec 15 16:17:18 2009 +0900 add open_id_authentication tables commit 04514410e26987b64a5763e6e1dce440a0be3a0e Author: okimoto <okimo****@good-*****> Date: Tue Dec 15 15:52:01 2009 +0900 add HomeController commit 0a9fb6313fb8916192d7cda473d00091e5715d25 Author: okimoto <okimo****@good-*****> Date: Tue Dec 15 15:51:04 2009 +0900 use multi_auth commit 7f95e4c31dd6b06e7a3dd9a776eed61680e13d24 Author: okimoto <okimo****@good-*****> Date: Tue Dec 15 15:50:37 2009 +0900 add multi_auth migration file commit e0eb43509dd4c7d8e5ac9a48774ec2d48590d45a Author: okimoto <okimo****@good-*****> Date: Tue Dec 15 15:50:00 2009 +0900 add user model commit 2b758df1259193a89b665f6621d2ebc64fe99421 Author: okimoto <okimo****@good-*****> Date: Tue Dec 15 15:48:02 2009 +0900 rm public/index.html ----------------------------------------------------------------------- Summary of changes: app/controllers/home_controller.rb | 5 + app/helpers/application_helper.rb | 9 + app/helpers/home_helper.rb | 2 + app/models/user.rb | 3 + app/views/home/index.html.erb | 24 ++ app/views/layouts/application.html.erb | 48 ++++ config/environment.rb | 3 +- config/initializers/multi_auth.rb | 4 + config/routes.rb | 1 + .../20091215064545_create_multi_auth_tables.rb | 35 +++ db/migrate/20091215064720_create_users.rb | 13 + ...5071658_create_open_id_authentication_tables.rb | 20 ++ public/index.html | 275 -------------------- public/{favicon.ico => stylesheets/mint.css} | 0 spec/controllers/home_controller_spec.rb | 17 ++ spec/fixtures/users.yml | 7 + spec/helpers/home_helper_spec.rb | 11 + spec/models/user_spec.rb | 13 + spec/views/home/index.html.erb_spec.rb | 12 + 19 files changed, 226 insertions(+), 276 deletions(-) create mode 100644 app/controllers/home_controller.rb create mode 100644 app/helpers/home_helper.rb create mode 100644 app/models/user.rb create mode 100644 app/views/home/index.html.erb create mode 100644 app/views/layouts/application.html.erb create mode 100644 config/initializers/multi_auth.rb create mode 100644 db/migrate/20091215064545_create_multi_auth_tables.rb create mode 100644 db/migrate/20091215064720_create_users.rb create mode 100644 db/migrate/20091215071658_create_open_id_authentication_tables.rb delete mode 100644 public/index.html copy public/{favicon.ico => stylesheets/mint.css} (100%) create mode 100644 spec/controllers/home_controller_spec.rb create mode 100644 spec/fixtures/users.yml create mode 100644 spec/helpers/home_helper_spec.rb create mode 100644 spec/models/user_spec.rb create mode 100644 spec/views/home/index.html.erb_spec.rb hooks/post-receive -- mint-server (mint)