Skip to content

Commit

Permalink
Add valid id number listing functions
Browse files Browse the repository at this point in the history
  • Loading branch information
tcd committed Jan 6, 2020
1 parent 18914e6 commit c3967f1
Show file tree
Hide file tree
Showing 2 changed files with 664 additions and 0 deletions.
333 changes: 333 additions & 0 deletions lib/eddy/util/data/valid_functional_groups.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,333 @@
module Eddy
module Rails
# @return [Array<String>]
def valid_functional_groups()
return [
"100",
"101",
"102",
"103",
"104",
"105",
"106",
"107",
"108",
"109",
"110",
"111",
"112",
"113",
"120",
"121",
"124",
"125",
"126",
"127",
"128",
"129",
"130",
"131",
"132",
"133",
"135",
"138",
"139",
"140",
"141",
"142",
"143",
"144",
"146",
"147",
"148",
"149",
"150",
"151",
"152",
"153",
"154",
"155",
"157",
"158",
"159",
"160",
"161",
"163",
"170",
"175",
"176",
"179",
"180",
"185",
"186",
"187",
"188",
"189",
"190",
"191",
"194",
"195",
"196",
"197",
"198",
"199",
"200",
"201",
"202",
"203",
"204",
"205",
"206",
"210",
"211",
"212",
"213",
"214",
"215",
"216",
"217",
"218",
"219",
"220",
"222",
"223",
"224",
"225",
"227",
"228",
"240",
"242",
"244",
"245",
"248",
"249",
"250",
"251",
"252",
"255",
"256",
"259",
"260",
"261",
"262",
"263",
"264",
"265",
"266",
"267",
"268",
"269",
"270",
"271",
"272",
"273",
"274",
"275",
"276",
"277",
"278",
"280",
"283",
"284",
"285",
"286",
"288",
"290",
"300",
"301",
"303",
"304",
"309",
"310",
"311",
"312",
"313",
"315",
"317",
"319",
"322",
"323",
"324",
"325",
"326",
"350",
"352",
"353",
"354",
"355",
"356",
"357",
"358",
"359",
"361",
"362",
"404",
"410",
"412",
"414",
"417",
"418",
"419",
"420",
"421",
"422",
"423",
"424",
"425",
"426",
"429",
"431",
"432",
"433",
"434",
"435",
"436",
"437",
"440",
"451",
"452",
"453",
"455",
"456",
"460",
"463",
"466",
"468",
"470",
"475",
"485",
"486",
"490",
"492",
"494",
"500",
"501",
"503",
"504",
"511",
"517",
"521",
"527",
"536",
"540",
"561",
"567",
"568",
"601",
"602",
"603",
"620",
"625",
"650",
"715",
"753",
"754",
"805",
"806",
"810",
"811",
"812",
"813",
"814",
"815",
"816",
"818",
"819",
"820",
"821",
"822",
"823",
"824",
"826",
"827",
"828",
"829",
"830",
"831",
"832",
"833",
"834",
"835",
"836",
"837",
"838",
"839",
"840",
"841",
"842",
"843",
"844",
"845",
"846",
"847",
"848",
"849",
"850",
"851",
"852",
"853",
"854",
"855",
"856",
"857",
"858",
"859",
"860",
"861",
"862",
"863",
"864",
"865",
"866",
"867",
"868",
"869",
"870",
"871",
"872",
"873",
"874",
"875",
"876",
"877",
"878",
"879",
"880",
"881",
"882",
"883",
"884",
"885",
"886",
"887",
"888",
"889",
"890",
"891",
"892",
"893",
"894",
"895",
"896",
"897",
"920",
"924",
"925",
"926",
"928",
"940",
"943",
"944",
"945",
"947",
"980",
"990",
"993",
"996",
"997",
"998",
"999",
]
end
end
end

0 comments on commit c3967f1

Please sign in to comment.