ソースを参照

Drop sex from candidates

tags/last-sinatra-version
Adrian Short 10年前
コミット
611cdbb1a0
2個のファイルの変更2行の追加3行の削除
  1. +1
    -2
      models.rb
  2. +1
    -1
      scripts/merge-candidates.rb

+ 1
- 2
models.rb ファイルの表示

@@ -90,8 +90,7 @@ class Candidate
property :id, Serial
property :forenames, String, :required => true
property :surname, String, :required => true, :index => true
property :sex, String

has n, :candidacies
def short_name


+ 1
- 1
scripts/merge-candidates.rb ファイルの表示

@@ -5,7 +5,7 @@ def show_candidate(id)
template = "%6s\t%50s\t%20s\t%3s"
puts template % [ c.id, c.forenames, c.surname, c.sex ]
puts template % [ c.id, c.forenames, c.surname ]
ccy_template = "%20s\t%15s\t%20s\t%20s"
c.candidacies.each do |ccy|


読み込み中…
キャンセル
保存