Guest User

Untitled

a guest
Oct 22nd, 2017
542
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.47 KB | None | 0 0
  1. [andrew ~/kythera] $ git pull
  2. remote: Counting objects: 31, done.
  3. remote: Compressing objects: 100% (10/10), done.
  4. remote: Total 20 (delta 6), reused 20 (delta 6)
  5. Unpacking objects: 100% (20/20), done.
  6. From git://github.com/rakaur/kythera
  7. 1b56c2c..ff53644 master -> origin/master
  8. Updating e605c59..ff53644
  9. Fast-forward
  10. db/migrations/001_start.rb | 15 ++++++++++
  11. lib/kythera/database/user.rb | 62 ++++++++++++++++++++++++++++++++++++++++++
  12. 2 files changed, 77 insertions(+), 0 deletions(-)
  13. [andrew ~/kythera] $ git log
  14. commit ff536446b0e6d6f26c217fa6c9adf8876eda1809
  15. Merge: b0391b9 e605c59
  16. Author: Eric Will <rakaur@malkier.net>
  17. Date: Tue Jun 28 11:37:53 2011 -0700
  18.  
  19. Merge pull request #25 from andrew12/master
  20.  
  21. Implement UnrealIRCd's protocol
  22.  
  23. commit b0391b9951133b79064b58919cabba81cc4b7e96
  24. Author: Eric Will <rakaur@malkier.net>
  25. Date: Tue Jun 28 13:36:34 2011 -0500
  26.  
  27. Minor style changes
  28.  
  29. commit 3d005947c58a22c0dd643aaf9f5c9444f4a355ad
  30. Merge: 1b56c2c 7ca900c
  31. Author: Eric Will <rakaur@malkier.net>
  32. Date: Tue Jun 28 11:31:38 2011 -0700
  33.  
  34. Merge pull request #22 from sycobuny/master
  35.  
  36. Add UserFlag model
  37.  
  38. commit e605c59b22a3e3497b5304fca7d33893719fcdf9
  39. Author: Andrew Herbig <goforit7arh@gmail.com>
  40. Date: Tue Jun 28 02:36:33 2011 -0400
  41.  
  42. Fix Unreal's protocol up some more
  43.  
  44. Call #to_s on everything in User#initialize
  45.  
  46. commit 43291dc684c8f20fe08d5b2e22b7f9faaaf3a1e5
  47. Author: Andrew Herbig <goforit7arh@gmail.com>
  48. Date: Mon Jun 27 18:17:42 2011 -0400
  49.  
  50. Implement UnrealIRCd's protocol and fix some things in TS6's. Closes #21.
  51.  
  52. commit 7ca900cd2ce63b5708f245fa65cb1b3ae565f3ef
  53. Author: Stephen Belcher <sbelcher@gmail.com>
  54. [andrew ~/kythera] $ git log | cat
  55. commit ff536446b0e6d6f26c217fa6c9adf8876eda1809
  56. Merge: b0391b9 e605c59
  57. Author: Eric Will <rakaur@malkier.net>
  58. Date: Tue Jun 28 11:37:53 2011 -0700
  59.  
  60. Merge pull request #25 from andrew12/master
  61.  
  62. Implement UnrealIRCd's protocol
  63.  
  64. commit b0391b9951133b79064b58919cabba81cc4b7e96
  65. Author: Eric Will <rakaur@malkier.net>
  66. Date: Tue Jun 28 13:36:34 2011 -0500
  67.  
  68. Minor style changes
  69.  
  70. commit 3d005947c58a22c0dd643aaf9f5c9444f4a355ad
  71. Merge: 1b56c2c 7ca900c
  72. Author: Eric Will <rakaur@malkier.net>
  73. Date: Tue Jun 28 11:31:38 2011 -0700
  74.  
  75. Merge pull request #22 from sycobuny/master
  76.  
  77. Add UserFlag model
  78.  
  79. commit e605c59b22a3e3497b5304fca7d33893719fcdf9
  80. Author: Andrew Herbig <goforit7arh@gmail.com>
  81. Date: Tue Jun 28 02:36:33 2011 -0400
  82.  
  83. Fix Unreal's protocol up some more
  84.  
  85. Call #to_s on everything in User#initialize
  86.  
  87. commit 43291dc684c8f20fe08d5b2e22b7f9faaaf3a1e5
  88. Author: Andrew Herbig <goforit7arh@gmail.com>
  89. Date: Mon Jun 27 18:17:42 2011 -0400
  90.  
  91. Implement UnrealIRCd's protocol and fix some things in TS6's. Closes #21.
  92.  
  93. commit 7ca900cd2ce63b5708f245fa65cb1b3ae565f3ef
  94. Author: Stephen Belcher <sbelcher@gmail.com>
  95. Date: Fri Jun 24 00:02:07 2011 -0400
  96.  
  97. Add UserFlag model for flag access levels and convenience methods in User.
  98.  
  99. commit 1b56c2c6502f58cb1f7b832a40b20e27b7ea51c5
  100. Author: Eric Will <rakaur@malkier.net>
  101. Date: Wed Jun 22 23:17:04 2011 -0400
  102.  
  103. Implement the start of the database stuff, including Database::User
  104.  
  105. Add an initial Sequel migration
  106. Add rake tasks for Sequel migrations (migrate:auto, up, down, to)
  107. Add a special global for application states ($state[:bursting], etc)
  108. Add a copy of Ruby 1.9's securerandom.rb for 1.8 compatibility
Add Comment
Please, Sign In to add comment