-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathparty_composition.rb
16 lines (16 loc) · 1.02 KB
/
party_composition.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
module Ncsl
# Describes the partisan composition of state executive and legislative offices.
# http://www.ncsl.org/research/about-state-legislatures/partisan-composition.aspx
module PartyComposition
PDF_SOURCES = [
{:year => 2009, :url => "http://www.ncsl.org/documents/statevote/legiscontrol_2009.pdf"},
{:year => 2010, :url => "http://www.ncsl.org/documents/statevote/LegisControl_2010.pdf"},
{:year => 2011, :url => "http://www.ncsl.org/documents/statevote/LegisControl_2011.pdf"},
{:year => 2012, :url => "http://www.ncsl.org/documents/statevote/legiscontrol_2012.pdf"},
{:year => 2013, :url => "http://www.ncsl.org/documents/statevote/legiscontrol_2013.pdf"},
{:year => 2014, :url => "http://www.ncsl.org/documents/statevote/legiscontrol_2014.pdf"},
{:year => 2015, :url => "http://www.ncsl.org/Portals/1/Documents/Elections/Legis_Control_2015_Feb4_11am.pdf"},
{:year => 2016, :url => "http://www.ncsl.org/Portals/1/Documents/Elections/Legis_Control_2016_Apr20.pdf"}
]
end
end