fbo 0.0.2 → 0.0.3
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.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/Gemfile.lock +2 -2
- data/README.md +23 -0
- data/lib/fbo.rb +17 -0
- data/lib/fbo/notices/archive.rb +8 -0
- data/lib/fbo/notices/fair_opportunity.rb +15 -0
- data/lib/fbo/notices/foreign_standard.rb +13 -0
- data/lib/fbo/notices/intent_to_bundle.rb +13 -0
- data/lib/fbo/notices/justification_approval.rb +18 -0
- data/lib/fbo/notices/sale_of_surplus.rb +13 -0
- data/lib/fbo/notices/special_notice.rb +13 -0
- data/lib/fbo/notices/unarchive.rb +9 -0
- data/lib/fbo/parser.rb +2 -15
- data/lib/fbo/parser/archive_handler.rb +41 -0
- data/lib/fbo/parser/fair_opportunity_handler.rb +61 -0
- data/lib/fbo/parser/foreign_standard_handler.rb +57 -0
- data/lib/fbo/parser/handler_selector.rb +37 -0
- data/lib/fbo/parser/intent_to_bundle_handler.rb +56 -0
- data/lib/fbo/parser/justification_approval_handler.rb +60 -0
- data/lib/fbo/parser/parser_helper.rb +40 -0
- data/lib/fbo/parser/sale_of_surplus_handler.rb +57 -0
- data/lib/fbo/parser/special_notice_handler.rb +57 -0
- data/lib/fbo/parser/unarchive_handler.rb +42 -0
- data/lib/fbo/version.rb +1 -1
- data/spec/fbo/parser/amendment_handler_spec.rb +28 -23
- data/spec/fbo/parser/archive_handler_spec.rb +36 -0
- data/spec/fbo/parser/award_handler_spec.rb +5 -0
- data/spec/fbo/parser/combined_solicitation_handler_spec.rb +4 -0
- data/spec/fbo/parser/fair_opportunity_handler_spec.rb +56 -0
- data/spec/fbo/parser/foreign_standard_handler_spec.rb +51 -0
- data/spec/fbo/parser/handler_selector_spec.rb +40 -0
- data/spec/fbo/parser/intent_to_bundle_handler_spec.rb +52 -0
- data/spec/fbo/parser/justification_approval_handler_spec.rb +53 -0
- data/spec/fbo/parser/modification_handler_spec.rb +5 -0
- data/spec/fbo/parser/presolicitation_handler_spec.rb +5 -0
- data/spec/fbo/parser/sale_of_surplus_handler_spec.rb +53 -0
- data/spec/fbo/parser/sources_sought_handler_spec.rb +27 -22
- data/spec/fbo/parser/special_notice_handler_spec.rb +53 -0
- data/spec/fbo/parser/unarchive_handler_spec.rb +37 -0
- data/spec/fbo/parser/unknown_handler_spec.rb +5 -0
- data/spec/fbo/parser_spec.rb +18 -49
- data/spec/fixtures/notices/archive +10 -0
- data/spec/fixtures/notices/fairopp +29 -0
- data/spec/fixtures/notices/fstd +24 -0
- data/spec/fixtures/notices/itb +19 -0
- data/spec/fixtures/notices/ja +30 -0
- data/spec/fixtures/notices/notanotice +7 -0
- data/spec/fixtures/notices/ssale +24 -0
- data/spec/fixtures/notices/unarchive +10 -0
- metadata +53 -2
@@ -0,0 +1,37 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe FBO::Parser::UnarchiveHandler do
|
4
|
+
let(:filename) { File.join(File.dirname(__FILE__), "..", "..", "fixtures", "notices", "unarchive") }
|
5
|
+
let(:file) { File.new(filename) }
|
6
|
+
let(:contents) { file.read }
|
7
|
+
|
8
|
+
it "should recognize unarchive content" do
|
9
|
+
subject.is_unarchive?(contents).should be_true
|
10
|
+
end
|
11
|
+
|
12
|
+
it "should parse all fields correctly" do
|
13
|
+
unarchive = subject.parse(contents)
|
14
|
+
unarchive.date.strftime("%Y-%m-%d").should eq Date.parse("2013-02-12").strftime("%Y-%m-%d")
|
15
|
+
unarchive.year.should eq 2013
|
16
|
+
unarchive.agency.should eq "Department of State"
|
17
|
+
unarchive.office.should eq "Near Eastern Posts"
|
18
|
+
unarchive.location.should eq "U.S. Embassy Cairo, Egypt"
|
19
|
+
unarchive.solicitation_number.should eq "SEG30013C0020"
|
20
|
+
unarchive.notice_type.should eq "COMBINE"
|
21
|
+
unarchive.archive_date.strftime("%Y-%m-%d").should eq "2013-03-31"
|
22
|
+
unarchive.award_number.should be_nil
|
23
|
+
end
|
24
|
+
|
25
|
+
it "should return an Unarchive notice" do
|
26
|
+
unarchive = subject.parse(contents)
|
27
|
+
unarchive.should be_instance_of(FBO::Notices::Unarchive)
|
28
|
+
end
|
29
|
+
|
30
|
+
context "when not an unarchive notice" do
|
31
|
+
let(:filename) { File.join(File.dirname(__FILE__), "..", "..", "fixtures", "notices", "presol") }
|
32
|
+
|
33
|
+
it "should not recognize other notice content" do
|
34
|
+
subject.is_unarchive?(contents).should_not be_true
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
@@ -8,6 +8,11 @@ describe FBO::Parser::AwardHandler do
|
|
8
8
|
let(:contents) { file.read }
|
9
9
|
let(:unknown) { subject.parse(contents) }
|
10
10
|
|
11
|
+
it "should return an Unknown notice" do
|
12
|
+
unknown = subject.parse(contents)
|
13
|
+
unknown.should be_instance_of(FBO::Notices::Unknown)
|
14
|
+
end
|
15
|
+
|
11
16
|
it "should parse out the type of the notice" do
|
12
17
|
unknown.type.should eq "SNOTE"
|
13
18
|
end
|
data/spec/fbo/parser_spec.rb
CHANGED
@@ -6,62 +6,31 @@ describe FBO::Parser do
|
|
6
6
|
let!(:notices) { subject.notices }
|
7
7
|
|
8
8
|
|
9
|
-
|
10
|
-
|
9
|
+
tag_to_name_map = {
|
10
|
+
amdcss: "Amendment", archive: "Archive", award: "Award",
|
11
|
+
combine: "Combined Solicitation", fairopp: "Fair Opportunity",
|
12
|
+
fstd: "Foreign Standard", itb: "Intent to Bundle",
|
13
|
+
ja: "Justification Approval", mod: "Modification",
|
14
|
+
presol: "Presolicitation", ssale: "Sale of Surplus",
|
15
|
+
srcsgt: "Sources Sought", snote: "Special Notice",
|
16
|
+
unarchive: "Unarchive" }
|
11
17
|
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
end
|
16
|
-
end
|
17
|
-
|
18
|
-
context "a file containing a combined solicitation" do
|
19
|
-
let(:filename) { File.join(File.dirname(__FILE__), "..", "fixtures", "notices", "combine") }
|
20
|
-
|
21
|
-
it "should return an array with a single Combined Solicitation notice" do
|
22
|
-
notices.count.should eq 1
|
23
|
-
notices[0].should be_an_instance_of(FBO::Notices::CombinedSolicitation)
|
24
|
-
end
|
25
|
-
end
|
26
|
-
|
27
|
-
context "a file containing a sources sought notice" do
|
28
|
-
let(:filename) { File.join(File.dirname(__FILE__), "..", "fixtures", "notices", "srcsgt") }
|
29
|
-
|
30
|
-
it "should return an array with a single Sources Sought notice" do
|
31
|
-
notices.count.should eq 1
|
32
|
-
notices[0].should be_an_instance_of(FBO::Notices::SourcesSought)
|
33
|
-
end
|
34
|
-
end
|
35
|
-
|
36
|
-
context "a file containing a amendment" do
|
37
|
-
let(:filename) { File.join(File.dirname(__FILE__), "..", "fixtures", "notices", "amdcss") }
|
38
|
-
|
39
|
-
it "should return an array with a single Amendment notice" do
|
40
|
-
notices.count.should eq 1
|
41
|
-
notices[0].should be_an_instance_of(FBO::Notices::Amendment)
|
42
|
-
end
|
43
|
-
end
|
18
|
+
tag_to_name_map.each do |tag, name|
|
19
|
+
notice_class_name = name.split.map { |w| w.capitalize }.join
|
20
|
+
notice_class = Kernel.const_get("FBO::Notices::#{ notice_class_name }")
|
44
21
|
|
45
|
-
|
46
|
-
|
22
|
+
context "a file containing a #{ name } notice" do
|
23
|
+
let(:filename) { File.join(File.dirname(__FILE__), "..", "fixtures", "notices", tag.to_s) }
|
47
24
|
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
end
|
53
|
-
|
54
|
-
context "a file containing an award" do
|
55
|
-
let(:filename) { File.join(File.dirname(__FILE__), "..", "fixtures", "notices", "award") }
|
56
|
-
|
57
|
-
it "should return an array with a single Award notice" do
|
58
|
-
notices.count.should eq 1
|
59
|
-
notices[0].should be_an_instance_of(FBO::Notices::Award)
|
25
|
+
it "should return an array with a single #{ notice_class_name }" do
|
26
|
+
notices.count.should eq 1
|
27
|
+
notices[0].should be_an_instance_of(notice_class)
|
28
|
+
end
|
60
29
|
end
|
61
30
|
end
|
62
31
|
|
63
32
|
context "a file containing any other type of notice" do
|
64
|
-
let(:filename) { File.join(File.dirname(__FILE__), "..", "fixtures", "notices", "
|
33
|
+
let(:filename) { File.join(File.dirname(__FILE__), "..", "fixtures", "notices", "notanotice") }
|
65
34
|
|
66
35
|
it "should return an array with a single Unknown notice" do
|
67
36
|
notices.count.should eq 1
|
@@ -0,0 +1,29 @@
|
|
1
|
+
<FAIROPP>
|
2
|
+
<DATE>0404
|
3
|
+
<YEAR>13
|
4
|
+
<AGENCY>Department of the Army
|
5
|
+
<OFFICE>U.S. Army Corps of Engineers
|
6
|
+
<LOCATION>USACE ITL, GSL, EL, CHL, Vicksburg
|
7
|
+
<ZIP>39180
|
8
|
+
<CLASSCOD>99
|
9
|
+
<NAICS>541712
|
10
|
+
<OFFADD>USACE ITL, GSL, EL, CHL, Vicksburg, 3909 HALLS FERRY ROAD , VICKSBURG, MS 39180-6199
|
11
|
+
<SUBJECT>99--Purchase of Four Modular Protective Systems Kits for mortar pits and overhead cover.
|
12
|
+
<SOLNBR>W81EWF23072288
|
13
|
+
<NTYPE>SNOTE
|
14
|
+
<CONTACT>Scott Brown, 601-631-7902
|
15
|
+
|
16
|
+
<a href="mailto:scott.l.brown@usace.army.mil">USACE ITL, GSL, EL, CHL, Vicksburg</a>
|
17
|
+
<FOJA>Only One Source (except brand name)
|
18
|
+
<AWDNBR>W912HZ-13-C-0014
|
19
|
+
<AWDDATE>032913
|
20
|
+
<DONBR>0000
|
21
|
+
<ARCHDATE>05042013
|
22
|
+
<DESC>USACE, Engineer Research and Development Center (ERDC) Contracting Office intends <br> to issue a sole source award to Concurrent Solutions, LLC, 317 Tinnan Avenue, Franklin, TN 37067-2672 for Modular Protective System (MPS) Mortar pits and MPS Overhead Cover (OHC).The MPS is comprised of frame and armor panel subsystems that can be used to construct protective barrier walls and Over Head Cover structures. MPS is patent pending and Concurrent Solutions, LLC is currently the only vendor that has been granted a Non-Exclusive License Agreement to manufacture MPS. Because Concurrent Solutions, LLC, currently holds the sole Non-Exclusive License Agreement, only Concurrent Solutions, LLC can provide the requirement to ERDC.
|
23
|
+
<LINK>
|
24
|
+
<URL>https://www.fbo.gov/spg/USA/COE/329/W81EWF23072288/listing.html
|
25
|
+
<DESC>Link To Document
|
26
|
+
<EMAIL>
|
27
|
+
<EMAIL>scott.l.brown@usace.army.mil
|
28
|
+
<DESC>USACE ITL, GSL, EL, CHL, Vicksburg
|
29
|
+
</FAIROPP>
|
@@ -0,0 +1,24 @@
|
|
1
|
+
<FSTD>
|
2
|
+
<DATE>0228
|
3
|
+
<YEAR>13
|
4
|
+
<AGENCY>Department of Agriculture
|
5
|
+
<OFFICE>Forest Service
|
6
|
+
<LOCATION>WO-AQM
|
7
|
+
<ZIP>22209
|
8
|
+
<CLASSCOD>U
|
9
|
+
<NAICS>611710
|
10
|
+
<OFFADD>1621 N. Kent Street
|
11
|
+
AQM Suite 707 RPE Arlington VA 22209
|
12
|
+
<SUBJECT>Environmental Education in Hebron
|
13
|
+
<SOLNBR>AG-3187-S-13-0067
|
14
|
+
<RESPDATE>031313
|
15
|
+
<CONTACT>Cassandra Carey, Phone 4043473975, Email cncarey@fs.fed.us
|
16
|
+
<DESC>The USDA Forest Service, Washington Office, Office of the Chief, International Programs (USFS/IP) intends to procure the services of the Palestinian Association for Child Arts and Culture (PCAC), a Palestinian non-governmental organization, to perform environmental outreach activities for youth in the city of Hebron as a sole source fixed-price purchase order under authority of Federal Acquisition Regulation (FAR) subpart 6.302-1, other than full and open competition for the acquisition of services to develop knowledge and understanding on the following: nature and function of ecosystems and how they are interrelated; impact of human activities on the environment; and principles of ecologically sustainable development. <br />Project objectives, activities will include:<br />• Hold a two-day workshop training to a minimum of 10 staff members and volunteer leaders on project objectives and specific activities. <br />• Host a summer-long environmental summer camp for a minimum of 40 children that focuses on learning about the environment and the arts. <br />• Arrange a field trip for a minimum of 30 children to Hebron's environmentally important sites. <br />• Arrange a field trip for a minimum of 30 children to Jericho's environmentally important sites. <br />• Conduct a minimum of five volunteer activities in Hebron with at least 30 children toward city beautification. <br />• Complete a minimum of two art murals related to the environment in Hebron public spaces. <br />USFS/IP seeks to provide environmental-related activities to youth in the Hebron area. To fulfill the specified activities, the institution must have access to necessary in-house expertise and facilities to lead and host workshops, conduct environmental-related activities that tie into art and drama activities, and arrange field trips to select areas in the West Bank. <br />In consultation with USAID/West Bank and the US Consulate, PCAC is deemed the only responsible organization in the Hebron region that has the in-house expertise and facilities to provide the specified services. PCAC has 15 trained staff and facilities that include: library for children, arts and craft supplies, musical instruments, and rooms to host public seminars of up to 50 people.
|
17
|
+
<p> </p>
|
18
|
+
<LINK>
|
19
|
+
<URL>https://www.fbo.gov/spg/USDA/FS/WO-AQM/AG-3187-S-13-0067/listing.html
|
20
|
+
<DESC>Link To Document
|
21
|
+
<SETASIDE>N/A
|
22
|
+
<POPCOUNTRY>PS
|
23
|
+
<POPADDRESS>Hebron
|
24
|
+
</FSTD>
|
@@ -0,0 +1,19 @@
|
|
1
|
+
<ITB>
|
2
|
+
<DATE>0324
|
3
|
+
<YEAR>11
|
4
|
+
<AGENCY>Department of the Army
|
5
|
+
<OFFICE>U.S. Army Corps of Engineers
|
6
|
+
<LOCATION>USACE District, Albuquerque
|
7
|
+
<ZIP>87109-3435
|
8
|
+
<CLASSCOD>Y
|
9
|
+
<NAICS>236220
|
10
|
+
<OFFADD>Attn: CESPA-CT
|
11
|
+
4101 Jefferson Plaza NE Albuquerque NM 87109-3435
|
12
|
+
<SUBJECT>Y--FY11 SOF Operations and Training Facility and a UAS Squad Ops Facility at Cannon Air Force Base (CAFB), Curry County, New Mexico
|
13
|
+
<SOLNBR>W912PP11R0011
|
14
|
+
<CONTACT>Diana Martinez, Phone 5053423263, Email Diana.M.Martinez@usace.army.mil
|
15
|
+
<DESC>T<span style="FONT-SIZE: 10pt; LINE-HEIGHT: 115%; FONT-FAMILY: 'Times New Roman','serif'">he need for consolidation of these two facilities has been determined by the SPA district to be in the best interest to provide the best overall value to the Government in regards to time, cost, and construction performance benefits that would be received.<span style="mso-spacerun: yes"> </span>The critical need for these projects and the market research that has been conducted, coupled with the reasons listed above support the conclusion of the SPA team that consolidated of these projects into one is both necessary and justified.<span style="mso-spacerun: yes"> </span>A measurably substantial benefit comes from an operational standpoint.<span style="mso-spacerun: yes"> </span>The Air Force determined that allowing AFCEE and AFSOC squadrons to share mission essential classified information, equipment and resources will greatly enhance the dissemination of classified information to the Overseas Contingency Operation (OCO) theater.<span style="mso-spacerun: yes"> </span><span style="mso-spacerun: yes"> </span>This requirement meets the threshold <span style="mso-spacerun: yes"> </span>in excess of 10% of the exception found in FAR .<span style="mso-spacerun: yes"> </span>Small Businesses will have the opportunity to propose on this project.<span style="mso-spacerun: yes"> </span>In addition, Small Business Participation will be used as an evaluation factor in the Source Selection process.<span style="mso-spacerun: yes"> </span>Small Business Participation is the extent to which prime contractors will be including small businesses in the project.<span style="mso-spacerun: yes"> </span>Therefore, SPA will ensure that small business participation is considered.<span style="mso-spacerun: yes"> </span>All provisions allowed per the FAR for Small Business participation will be utilized.<span style="mso-spacerun: yes"> </span>The anticipated benefits of the proposed bundled contract justify its use.<span style="mso-spacerun: yes"> </span>There are no alternative strategies that would reduce or minimize the scope of the bundling.<span style="mso-spacerun: yes"> </span>The rationale for bundling is savings in cost to the taxpayers, time, and other issues as discussed above.</span>
|
16
|
+
<LINK>
|
17
|
+
<URL>https://www.fbo.gov/spg/USA/COE/DACA47/W912PP11R0011/listing.html
|
18
|
+
<DESC>Link To Document
|
19
|
+
</ITB>
|
@@ -0,0 +1,30 @@
|
|
1
|
+
<JA>
|
2
|
+
<DATE>0404
|
3
|
+
<YEAR>13
|
4
|
+
<AGENCY>Department of the Air Force
|
5
|
+
<OFFICE>Air Combat Command
|
6
|
+
<LOCATION>9 CONS
|
7
|
+
<ZIP>95903-1712
|
8
|
+
<CLASSCOD>R
|
9
|
+
<NAICS>541611
|
10
|
+
<OFFADD>6500 B St Ste 101 Beale AFB CA 95903-1712
|
11
|
+
<SUBJECT>ISR A&AS Mission Support Services
|
12
|
+
<SOLNBR>FA4686-13-R-0006
|
13
|
+
<CONTACT>Dylan J. Edwards, Phone 5306342478, Email dylan.edwards@beale.af.mil - Eric R. Schmitt, Contracting Adminstrator, Phone 530-634-3411, Fax 530-634-3311 , Email eric.schmitt@beale.af.mil
|
14
|
+
<STAUTH>FAR 6.302-1
|
15
|
+
<AWDNBR>FA4686-13-C-0006
|
16
|
+
<AWDDATE>032913
|
17
|
+
<ARCHDATE>04192013
|
18
|
+
<DESC>The 9th Contracting Sq intends to issue a firm-fixed price contract to a single source under the authority of FAR 6.302-1(a)(2)(iii)(B), Only One Responsible Source and No Other Supplies or Services will Satisfy Agency Requirements, on or about 1 Apr 2013 to Spectrum Comm. Inc. The period of performance is 3 months with 3, 1-month option periods.
|
19
|
+
<p>The requirement is for the continuation of specialized A&AS support in executing high altitude reconnaissance and intelligence collection processes for the Combat Air Forces (CAF) at Beale AFB, California and other worldwide locations in direct support of the RQ-4 (Global Hawk), T-38 and U-2 air frames and platforms. The contractor is required to provide support in, but not limited to: operational airborne sensor management; Air Force mission systems; high altitude intelligence system program and weapons and tactics; mission planning; electronic warfare operations and tactics management; operational test & evaluation management; advanced reconnaissance tactics course; and in the areas of logistics/training/command post/deployment/communications and plans and exercises management.</p>
|
20
|
+
<p>A follow-on competitive task order, to be competed under ACC/AMIC CAAS IV contract is projected for award on/about 1 August.</p>
|
21
|
+
<p>The North American Industry Classification System (NAICS) code for this requirement is 541611 with the size standard of $7M.</p>
|
22
|
+
<p>Responsible sources may submit a capability statement, proposal, or quotation which may be reviewed by the agency. This notice of intent is not a request for competitive proposals. The Government will not be responsible for any cost incurred in preparation of statements, proposal, or quotations. A determination by the Government not to compete with this proposed contract based upon responses to this notice is solely within the discretion of the Government. Information received will normally be considered solely for the purpose of determining whether to conduct a competitive procurement. No solicitation or additional information will be made available with regard to this sole source notice.</p>
|
23
|
+
<p>Any responses to this notice of contract action shall be submitted to 1st Lt Dylan Edwards, dylan.edwards@beale.af.mil, no later than 4:00 PM, PST, April 17, 2013.</p>
|
24
|
+
<LINK>
|
25
|
+
<URL>https://www.fbo.gov/spg/USAF/ACC/9CONS/FA4686-13-R-0006/listing.html
|
26
|
+
<DESC>Link To Document
|
27
|
+
<EMAIL>
|
28
|
+
<EMAIL>shari.l.bealer2.civ@mail.mil
|
29
|
+
<DESC>ACC - Rock Island (ACC-RI)
|
30
|
+
</JA>
|
@@ -0,0 +1,24 @@
|
|
1
|
+
<SSALE>
|
2
|
+
<DATE>0411
|
3
|
+
<YEAR>13
|
4
|
+
<AGENCY>Government Printing Office
|
5
|
+
<OFFICE>Acquisition Services
|
6
|
+
<LOCATION>Acquisition Services
|
7
|
+
<ZIP>20401
|
8
|
+
<CLASSCOD>99
|
9
|
+
<NAICS>322299
|
10
|
+
<OFFADD>732 North Capitol Street, NW Washington DC 20401
|
11
|
+
<SUBJECT>Sale No. 5-2013 of Govt. Surplus Waste Paper
|
12
|
+
<SOLNBR>5-2013
|
13
|
+
<RESPDATE>042913
|
14
|
+
<CONTACT>Gloria Robertson, Phone 202-512-2010 ext. 31679, Fax 202-512-1354, Email glrobertson@gpo.gov
|
15
|
+
<DESC>Surplus Sale of Waste Paper.<br /><br />Period of Performance May 1, 2013 (or Date of Award) through April 30, 2014 (Base Year) with up to 4 Year Options.
|
16
|
+
<LINK>
|
17
|
+
<URL>https://www.fbo.gov/spg/GPO/PSPSD/WashingtonDC/5-2013/listing.html
|
18
|
+
<DESC>Link To Document
|
19
|
+
<SETASIDE>N/A
|
20
|
+
<POPCOUNTRY>US
|
21
|
+
<POPADDRESS>DC Location: 732 North Capital Street, NW, Washinghton, DC 20401
|
22
|
+
|
23
|
+
Laurel Location: 8660 Cherry Lane, Laurel, MD 20707
|
24
|
+
</SSALE>
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fbo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Chris Kottom
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-
|
11
|
+
date: 2013-05-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -65,31 +65,57 @@ files:
|
|
65
65
|
- lib/fbo/notice.rb
|
66
66
|
- lib/fbo/notices.rb
|
67
67
|
- lib/fbo/notices/amendment.rb
|
68
|
+
- lib/fbo/notices/archive.rb
|
68
69
|
- lib/fbo/notices/award.rb
|
69
70
|
- lib/fbo/notices/combined_solicitation.rb
|
71
|
+
- lib/fbo/notices/fair_opportunity.rb
|
72
|
+
- lib/fbo/notices/foreign_standard.rb
|
73
|
+
- lib/fbo/notices/intent_to_bundle.rb
|
74
|
+
- lib/fbo/notices/justification_approval.rb
|
70
75
|
- lib/fbo/notices/modification.rb
|
71
76
|
- lib/fbo/notices/presolicitation.rb
|
77
|
+
- lib/fbo/notices/sale_of_surplus.rb
|
72
78
|
- lib/fbo/notices/sources_sought.rb
|
79
|
+
- lib/fbo/notices/special_notice.rb
|
80
|
+
- lib/fbo/notices/unarchive.rb
|
73
81
|
- lib/fbo/notices/unknown.rb
|
74
82
|
- lib/fbo/parser.rb
|
75
83
|
- lib/fbo/parser/amendment_handler.rb
|
84
|
+
- lib/fbo/parser/archive_handler.rb
|
76
85
|
- lib/fbo/parser/award_handler.rb
|
77
86
|
- lib/fbo/parser/combined_solicitation_handler.rb
|
87
|
+
- lib/fbo/parser/fair_opportunity_handler.rb
|
88
|
+
- lib/fbo/parser/foreign_standard_handler.rb
|
89
|
+
- lib/fbo/parser/handler_selector.rb
|
90
|
+
- lib/fbo/parser/intent_to_bundle_handler.rb
|
91
|
+
- lib/fbo/parser/justification_approval_handler.rb
|
78
92
|
- lib/fbo/parser/modification_handler.rb
|
79
93
|
- lib/fbo/parser/notice_handler.rb
|
80
94
|
- lib/fbo/parser/parser_helper.rb
|
81
95
|
- lib/fbo/parser/presolicitation_handler.rb
|
96
|
+
- lib/fbo/parser/sale_of_surplus_handler.rb
|
82
97
|
- lib/fbo/parser/sources_sought_handler.rb
|
98
|
+
- lib/fbo/parser/special_notice_handler.rb
|
99
|
+
- lib/fbo/parser/unarchive_handler.rb
|
83
100
|
- lib/fbo/parser/unknown_handler.rb
|
84
101
|
- lib/fbo/remote_file.rb
|
85
102
|
- lib/fbo/version.rb
|
86
103
|
- spec/fbo/file_spec.rb
|
87
104
|
- spec/fbo/parser/amendment_handler_spec.rb
|
105
|
+
- spec/fbo/parser/archive_handler_spec.rb
|
88
106
|
- spec/fbo/parser/award_handler_spec.rb
|
89
107
|
- spec/fbo/parser/combined_solicitation_handler_spec.rb
|
108
|
+
- spec/fbo/parser/fair_opportunity_handler_spec.rb
|
109
|
+
- spec/fbo/parser/foreign_standard_handler_spec.rb
|
110
|
+
- spec/fbo/parser/handler_selector_spec.rb
|
111
|
+
- spec/fbo/parser/intent_to_bundle_handler_spec.rb
|
112
|
+
- spec/fbo/parser/justification_approval_handler_spec.rb
|
90
113
|
- spec/fbo/parser/modification_handler_spec.rb
|
91
114
|
- spec/fbo/parser/presolicitation_handler_spec.rb
|
115
|
+
- spec/fbo/parser/sale_of_surplus_handler_spec.rb
|
92
116
|
- spec/fbo/parser/sources_sought_handler_spec.rb
|
117
|
+
- spec/fbo/parser/special_notice_handler_spec.rb
|
118
|
+
- spec/fbo/parser/unarchive_handler_spec.rb
|
93
119
|
- spec/fbo/parser/unknown_handler_spec.rb
|
94
120
|
- spec/fbo/parser_spec.rb
|
95
121
|
- spec/fbo/remote_file_spec.rb
|
@@ -98,12 +124,20 @@ files:
|
|
98
124
|
- spec/fixtures/FBOFeed20130406
|
99
125
|
- spec/fixtures/FBOFeed20130407
|
100
126
|
- spec/fixtures/notices/amdcss
|
127
|
+
- spec/fixtures/notices/archive
|
101
128
|
- spec/fixtures/notices/award
|
102
129
|
- spec/fixtures/notices/combine
|
130
|
+
- spec/fixtures/notices/fairopp
|
131
|
+
- spec/fixtures/notices/fstd
|
132
|
+
- spec/fixtures/notices/itb
|
133
|
+
- spec/fixtures/notices/ja
|
103
134
|
- spec/fixtures/notices/mod
|
135
|
+
- spec/fixtures/notices/notanotice
|
104
136
|
- spec/fixtures/notices/presol
|
105
137
|
- spec/fixtures/notices/snote
|
106
138
|
- spec/fixtures/notices/srcsgt
|
139
|
+
- spec/fixtures/notices/ssale
|
140
|
+
- spec/fixtures/notices/unarchive
|
107
141
|
- spec/spec_helper.rb
|
108
142
|
homepage: ''
|
109
143
|
licenses:
|
@@ -132,11 +166,20 @@ summary: Parse and process FBO bulk listings
|
|
132
166
|
test_files:
|
133
167
|
- spec/fbo/file_spec.rb
|
134
168
|
- spec/fbo/parser/amendment_handler_spec.rb
|
169
|
+
- spec/fbo/parser/archive_handler_spec.rb
|
135
170
|
- spec/fbo/parser/award_handler_spec.rb
|
136
171
|
- spec/fbo/parser/combined_solicitation_handler_spec.rb
|
172
|
+
- spec/fbo/parser/fair_opportunity_handler_spec.rb
|
173
|
+
- spec/fbo/parser/foreign_standard_handler_spec.rb
|
174
|
+
- spec/fbo/parser/handler_selector_spec.rb
|
175
|
+
- spec/fbo/parser/intent_to_bundle_handler_spec.rb
|
176
|
+
- spec/fbo/parser/justification_approval_handler_spec.rb
|
137
177
|
- spec/fbo/parser/modification_handler_spec.rb
|
138
178
|
- spec/fbo/parser/presolicitation_handler_spec.rb
|
179
|
+
- spec/fbo/parser/sale_of_surplus_handler_spec.rb
|
139
180
|
- spec/fbo/parser/sources_sought_handler_spec.rb
|
181
|
+
- spec/fbo/parser/special_notice_handler_spec.rb
|
182
|
+
- spec/fbo/parser/unarchive_handler_spec.rb
|
140
183
|
- spec/fbo/parser/unknown_handler_spec.rb
|
141
184
|
- spec/fbo/parser_spec.rb
|
142
185
|
- spec/fbo/remote_file_spec.rb
|
@@ -145,10 +188,18 @@ test_files:
|
|
145
188
|
- spec/fixtures/FBOFeed20130406
|
146
189
|
- spec/fixtures/FBOFeed20130407
|
147
190
|
- spec/fixtures/notices/amdcss
|
191
|
+
- spec/fixtures/notices/archive
|
148
192
|
- spec/fixtures/notices/award
|
149
193
|
- spec/fixtures/notices/combine
|
194
|
+
- spec/fixtures/notices/fairopp
|
195
|
+
- spec/fixtures/notices/fstd
|
196
|
+
- spec/fixtures/notices/itb
|
197
|
+
- spec/fixtures/notices/ja
|
150
198
|
- spec/fixtures/notices/mod
|
199
|
+
- spec/fixtures/notices/notanotice
|
151
200
|
- spec/fixtures/notices/presol
|
152
201
|
- spec/fixtures/notices/snote
|
153
202
|
- spec/fixtures/notices/srcsgt
|
203
|
+
- spec/fixtures/notices/ssale
|
204
|
+
- spec/fixtures/notices/unarchive
|
154
205
|
- spec/spec_helper.rb
|