campaign_cash 2.6 → 2.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.rdoc +1 -0
- data/lib/campaign_cash/filing.rb +1 -1
- data/lib/campaign_cash/version.rb +1 -1
- metadata +1 -1
data/README.rdoc
CHANGED
|
@@ -12,6 +12,7 @@ Simple ruby wrapper for portions of The New York Times Campaign Finance API[http
|
|
|
12
12
|
|
|
13
13
|
== News
|
|
14
14
|
|
|
15
|
+
* April 10, 2013: Version 2.6.1 released. Fixed bad attribute name for Filing#filing_id.
|
|
15
16
|
* April 9, 2013: Version 2.6 released. Added missing attribute accessors to Filing objects.
|
|
16
17
|
* April 9, 2013: Version 2.5.1 released. Fixed a bug that showed committee_name in Filing objects as nil.
|
|
17
18
|
* Nov. 13, 2012: Version 2.5 released. Fixes a bug in Filing object attribute assignment.
|
data/lib/campaign_cash/filing.rb
CHANGED
|
@@ -23,7 +23,7 @@ module CampaignCash
|
|
|
23
23
|
:original_uri => params['original_uri'],
|
|
24
24
|
:paper => params['paper'],
|
|
25
25
|
:form_type => params['form_type'],
|
|
26
|
-
:filing_id => params['
|
|
26
|
+
:filing_id => params['filing_id'],
|
|
27
27
|
:committee_type => Committee.get_committee_type(params['committee_type']),
|
|
28
28
|
:committee_name => params['committee_name'],
|
|
29
29
|
:receipts_total => params['receipts_total'],
|