fbo 0.0.3 → 0.1.0
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 +3 -5
- data/Gemfile +0 -2
- data/Rakefile +8 -1
- data/fbo.gemspec +14 -9
- data/lib/fbo.rb +7 -38
- data/lib/fbo/chunked_file.rb +74 -0
- data/lib/fbo/dump.treetop +324 -0
- data/lib/fbo/file.rb +17 -1
- data/lib/fbo/interpreter.rb +87 -0
- data/lib/fbo/node_extensions.rb +173 -0
- data/lib/fbo/parser.rb +43 -46
- data/lib/fbo/remote_file.rb +4 -4
- data/lib/fbo/version.rb +1 -1
- data/spec/fbo/chunked_file_spec.rb +22 -0
- data/spec/fbo/file_spec.rb +26 -9
- data/spec/fbo/interpreter_spec.rb +73 -0
- data/spec/fbo/parser_spec.rb +36 -38
- data/spec/fbo/remote_file_spec.rb +28 -24
- data/spec/fixtures/.keep +0 -0
- data/spec/fixtures/FBOFeed20130331 +52 -5529
- data/spec/fixtures/FBOFeed20131003 +35126 -0
- data/spec/spec_helper.rb +14 -16
- metadata +70 -108
- data/.rspec +0 -2
- data/Gemfile.lock +0 -27
- data/lib/fbo/notice.rb +0 -9
- data/lib/fbo/notices.rb +0 -6
- data/lib/fbo/notices/amendment.rb +0 -13
- data/lib/fbo/notices/archive.rb +0 -8
- data/lib/fbo/notices/award.rb +0 -14
- data/lib/fbo/notices/combined_solicitation.rb +0 -14
- data/lib/fbo/notices/fair_opportunity.rb +0 -15
- data/lib/fbo/notices/foreign_standard.rb +0 -13
- data/lib/fbo/notices/intent_to_bundle.rb +0 -13
- data/lib/fbo/notices/justification_approval.rb +0 -18
- data/lib/fbo/notices/modification.rb +0 -14
- data/lib/fbo/notices/presolicitation.rb +0 -14
- data/lib/fbo/notices/sale_of_surplus.rb +0 -13
- data/lib/fbo/notices/sources_sought.rb +0 -13
- data/lib/fbo/notices/special_notice.rb +0 -13
- data/lib/fbo/notices/unarchive.rb +0 -9
- data/lib/fbo/notices/unknown.rb +0 -7
- data/lib/fbo/parser/amendment_handler.rb +0 -58
- data/lib/fbo/parser/archive_handler.rb +0 -41
- data/lib/fbo/parser/award_handler.rb +0 -62
- data/lib/fbo/parser/combined_solicitation_handler.rb +0 -57
- data/lib/fbo/parser/fair_opportunity_handler.rb +0 -61
- data/lib/fbo/parser/foreign_standard_handler.rb +0 -57
- data/lib/fbo/parser/handler_selector.rb +0 -37
- data/lib/fbo/parser/intent_to_bundle_handler.rb +0 -56
- data/lib/fbo/parser/justification_approval_handler.rb +0 -60
- data/lib/fbo/parser/modification_handler.rb +0 -66
- data/lib/fbo/parser/notice_handler.rb +0 -27
- data/lib/fbo/parser/parser_helper.rb +0 -315
- data/lib/fbo/parser/presolicitation_handler.rb +0 -57
- data/lib/fbo/parser/sale_of_surplus_handler.rb +0 -57
- data/lib/fbo/parser/sources_sought_handler.rb +0 -57
- data/lib/fbo/parser/special_notice_handler.rb +0 -57
- data/lib/fbo/parser/unarchive_handler.rb +0 -42
- data/lib/fbo/parser/unknown_handler.rb +0 -20
- data/spec/fbo/parser/amendment_handler_spec.rb +0 -51
- data/spec/fbo/parser/archive_handler_spec.rb +0 -36
- data/spec/fbo/parser/award_handler_spec.rb +0 -56
- data/spec/fbo/parser/combined_solicitation_handler_spec.rb +0 -51
- data/spec/fbo/parser/fair_opportunity_handler_spec.rb +0 -56
- data/spec/fbo/parser/foreign_standard_handler_spec.rb +0 -51
- data/spec/fbo/parser/handler_selector_spec.rb +0 -40
- data/spec/fbo/parser/intent_to_bundle_handler_spec.rb +0 -52
- data/spec/fbo/parser/justification_approval_handler_spec.rb +0 -53
- data/spec/fbo/parser/modification_handler_spec.rb +0 -52
- data/spec/fbo/parser/presolicitation_handler_spec.rb +0 -51
- data/spec/fbo/parser/sale_of_surplus_handler_spec.rb +0 -53
- data/spec/fbo/parser/sources_sought_handler_spec.rb +0 -51
- data/spec/fbo/parser/special_notice_handler_spec.rb +0 -53
- data/spec/fbo/parser/unarchive_handler_spec.rb +0 -37
- data/spec/fbo/parser/unknown_handler_spec.rb +0 -24
- data/spec/fixtures/FBOFeed20130404 +0 -45653
- data/spec/fixtures/FBOFeed20130406 +0 -10152
- data/spec/fixtures/FBOFeed20130407 +0 -6610
- data/spec/fixtures/notices/amdcss +0 -26
- data/spec/fixtures/notices/archive +0 -10
- data/spec/fixtures/notices/award +0 -31
- data/spec/fixtures/notices/combine +0 -29
- data/spec/fixtures/notices/fairopp +0 -29
- data/spec/fixtures/notices/fstd +0 -24
- data/spec/fixtures/notices/itb +0 -19
- data/spec/fixtures/notices/ja +0 -30
- data/spec/fixtures/notices/mod +0 -28
- data/spec/fixtures/notices/notanotice +0 -7
- data/spec/fixtures/notices/presol +0 -25
- data/spec/fixtures/notices/snote +0 -26
- data/spec/fixtures/notices/srcsgt +0 -27
- data/spec/fixtures/notices/ssale +0 -24
- data/spec/fixtures/notices/unarchive +0 -10
data/spec/spec_helper.rb
CHANGED
@@ -1,23 +1,21 @@
|
|
1
|
-
# This file was generated by the `rspec --init` command. Conventionally, all
|
2
|
-
# specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
|
3
|
-
# Require this file using `require "spec_helper"` to ensure that it is only
|
4
|
-
# loaded once.
|
5
|
-
#
|
6
|
-
# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
|
7
|
-
|
8
1
|
require 'rubygems'
|
9
2
|
require 'bundler/setup'
|
10
3
|
|
11
4
|
require 'fbo'
|
5
|
+
require 'minitest/autorun'
|
6
|
+
require 'mocha/setup'
|
7
|
+
require 'turn/autorun'
|
12
8
|
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
9
|
+
Turn.config do |c|
|
10
|
+
c.format = :outline
|
11
|
+
c.trace = 8
|
12
|
+
c.natural = true
|
13
|
+
end
|
17
14
|
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
15
|
+
module MiniTest
|
16
|
+
class Spec
|
17
|
+
class << self
|
18
|
+
alias_method :context, :describe
|
19
|
+
end
|
20
|
+
end
|
23
21
|
end
|
metadata
CHANGED
@@ -1,15 +1,29 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fbo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 0.1.0
|
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-10-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: treetop
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - '>='
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - '>='
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
13
27
|
- !ruby/object:Gem::Dependency
|
14
28
|
name: bundler
|
15
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -38,6 +52,48 @@ dependencies:
|
|
38
52
|
- - '>='
|
39
53
|
- !ruby/object:Gem::Version
|
40
54
|
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: minitest
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ~>
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: 4.7.5
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ~>
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: 4.7.5
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: mocha
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - '>='
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - '>='
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: turn
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - '>='
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0'
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - '>='
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0'
|
41
97
|
description: |2
|
42
98
|
The FBO gem manages the process of downloading and parsing file-based notice
|
43
99
|
information from the Federal Business Opportunities (https://www.fbo.gov/)
|
@@ -52,92 +108,28 @@ extensions: []
|
|
52
108
|
extra_rdoc_files: []
|
53
109
|
files:
|
54
110
|
- .gitignore
|
55
|
-
- .rspec
|
56
|
-
- .ruby-version
|
57
111
|
- Gemfile
|
58
|
-
- Gemfile.lock
|
59
112
|
- LICENSE.txt
|
60
113
|
- README.md
|
61
114
|
- Rakefile
|
62
115
|
- fbo.gemspec
|
63
116
|
- lib/fbo.rb
|
117
|
+
- lib/fbo/chunked_file.rb
|
118
|
+
- lib/fbo/dump.treetop
|
64
119
|
- lib/fbo/file.rb
|
65
|
-
- lib/fbo/
|
66
|
-
- lib/fbo/
|
67
|
-
- lib/fbo/notices/amendment.rb
|
68
|
-
- lib/fbo/notices/archive.rb
|
69
|
-
- lib/fbo/notices/award.rb
|
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
|
75
|
-
- lib/fbo/notices/modification.rb
|
76
|
-
- lib/fbo/notices/presolicitation.rb
|
77
|
-
- lib/fbo/notices/sale_of_surplus.rb
|
78
|
-
- lib/fbo/notices/sources_sought.rb
|
79
|
-
- lib/fbo/notices/special_notice.rb
|
80
|
-
- lib/fbo/notices/unarchive.rb
|
81
|
-
- lib/fbo/notices/unknown.rb
|
120
|
+
- lib/fbo/interpreter.rb
|
121
|
+
- lib/fbo/node_extensions.rb
|
82
122
|
- lib/fbo/parser.rb
|
83
|
-
- lib/fbo/parser/amendment_handler.rb
|
84
|
-
- lib/fbo/parser/archive_handler.rb
|
85
|
-
- lib/fbo/parser/award_handler.rb
|
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
|
92
|
-
- lib/fbo/parser/modification_handler.rb
|
93
|
-
- lib/fbo/parser/notice_handler.rb
|
94
|
-
- lib/fbo/parser/parser_helper.rb
|
95
|
-
- lib/fbo/parser/presolicitation_handler.rb
|
96
|
-
- lib/fbo/parser/sale_of_surplus_handler.rb
|
97
|
-
- lib/fbo/parser/sources_sought_handler.rb
|
98
|
-
- lib/fbo/parser/special_notice_handler.rb
|
99
|
-
- lib/fbo/parser/unarchive_handler.rb
|
100
|
-
- lib/fbo/parser/unknown_handler.rb
|
101
123
|
- lib/fbo/remote_file.rb
|
102
124
|
- lib/fbo/version.rb
|
125
|
+
- spec/fbo/chunked_file_spec.rb
|
103
126
|
- spec/fbo/file_spec.rb
|
104
|
-
- spec/fbo/
|
105
|
-
- spec/fbo/parser/archive_handler_spec.rb
|
106
|
-
- spec/fbo/parser/award_handler_spec.rb
|
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
|
113
|
-
- spec/fbo/parser/modification_handler_spec.rb
|
114
|
-
- spec/fbo/parser/presolicitation_handler_spec.rb
|
115
|
-
- spec/fbo/parser/sale_of_surplus_handler_spec.rb
|
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
|
119
|
-
- spec/fbo/parser/unknown_handler_spec.rb
|
127
|
+
- spec/fbo/interpreter_spec.rb
|
120
128
|
- spec/fbo/parser_spec.rb
|
121
129
|
- spec/fbo/remote_file_spec.rb
|
130
|
+
- spec/fixtures/.keep
|
122
131
|
- spec/fixtures/FBOFeed20130331
|
123
|
-
- spec/fixtures/
|
124
|
-
- spec/fixtures/FBOFeed20130406
|
125
|
-
- spec/fixtures/FBOFeed20130407
|
126
|
-
- spec/fixtures/notices/amdcss
|
127
|
-
- spec/fixtures/notices/archive
|
128
|
-
- spec/fixtures/notices/award
|
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
|
134
|
-
- spec/fixtures/notices/mod
|
135
|
-
- spec/fixtures/notices/notanotice
|
136
|
-
- spec/fixtures/notices/presol
|
137
|
-
- spec/fixtures/notices/snote
|
138
|
-
- spec/fixtures/notices/srcsgt
|
139
|
-
- spec/fixtures/notices/ssale
|
140
|
-
- spec/fixtures/notices/unarchive
|
132
|
+
- spec/fixtures/FBOFeed20131003
|
141
133
|
- spec/spec_helper.rb
|
142
134
|
homepage: ''
|
143
135
|
licenses:
|
@@ -164,42 +156,12 @@ signing_key:
|
|
164
156
|
specification_version: 4
|
165
157
|
summary: Parse and process FBO bulk listings
|
166
158
|
test_files:
|
159
|
+
- spec/fbo/chunked_file_spec.rb
|
167
160
|
- spec/fbo/file_spec.rb
|
168
|
-
- spec/fbo/
|
169
|
-
- spec/fbo/parser/archive_handler_spec.rb
|
170
|
-
- spec/fbo/parser/award_handler_spec.rb
|
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
|
177
|
-
- spec/fbo/parser/modification_handler_spec.rb
|
178
|
-
- spec/fbo/parser/presolicitation_handler_spec.rb
|
179
|
-
- spec/fbo/parser/sale_of_surplus_handler_spec.rb
|
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
|
183
|
-
- spec/fbo/parser/unknown_handler_spec.rb
|
161
|
+
- spec/fbo/interpreter_spec.rb
|
184
162
|
- spec/fbo/parser_spec.rb
|
185
163
|
- spec/fbo/remote_file_spec.rb
|
164
|
+
- spec/fixtures/.keep
|
186
165
|
- spec/fixtures/FBOFeed20130331
|
187
|
-
- spec/fixtures/
|
188
|
-
- spec/fixtures/FBOFeed20130406
|
189
|
-
- spec/fixtures/FBOFeed20130407
|
190
|
-
- spec/fixtures/notices/amdcss
|
191
|
-
- spec/fixtures/notices/archive
|
192
|
-
- spec/fixtures/notices/award
|
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
|
198
|
-
- spec/fixtures/notices/mod
|
199
|
-
- spec/fixtures/notices/notanotice
|
200
|
-
- spec/fixtures/notices/presol
|
201
|
-
- spec/fixtures/notices/snote
|
202
|
-
- spec/fixtures/notices/srcsgt
|
203
|
-
- spec/fixtures/notices/ssale
|
204
|
-
- spec/fixtures/notices/unarchive
|
166
|
+
- spec/fixtures/FBOFeed20131003
|
205
167
|
- spec/spec_helper.rb
|
data/.rspec
DELETED
data/Gemfile.lock
DELETED
@@ -1,27 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: .
|
3
|
-
specs:
|
4
|
-
fbo (0.0.2)
|
5
|
-
|
6
|
-
GEM
|
7
|
-
remote: https://rubygems.org/
|
8
|
-
specs:
|
9
|
-
diff-lcs (1.2.2)
|
10
|
-
rake (10.0.4)
|
11
|
-
rspec (2.13.0)
|
12
|
-
rspec-core (~> 2.13.0)
|
13
|
-
rspec-expectations (~> 2.13.0)
|
14
|
-
rspec-mocks (~> 2.13.0)
|
15
|
-
rspec-core (2.13.1)
|
16
|
-
rspec-expectations (2.13.0)
|
17
|
-
diff-lcs (>= 1.1.3, < 2.0)
|
18
|
-
rspec-mocks (2.13.1)
|
19
|
-
|
20
|
-
PLATFORMS
|
21
|
-
ruby
|
22
|
-
|
23
|
-
DEPENDENCIES
|
24
|
-
bundler (~> 1.3)
|
25
|
-
fbo!
|
26
|
-
rake
|
27
|
-
rspec
|
data/lib/fbo/notice.rb
DELETED
data/lib/fbo/notices.rb
DELETED
@@ -1,13 +0,0 @@
|
|
1
|
-
module FBO
|
2
|
-
module Notices
|
3
|
-
class Amendment < Struct.new(:date, :year, :zip, :class_code, :naics_code,
|
4
|
-
:agency, :office, :location, :office_address,
|
5
|
-
:subject, :solicitation_number, :notice_type,
|
6
|
-
:response_date, :archive_date, :contact_info,
|
7
|
-
:description, :link_url, :link_description,
|
8
|
-
:email_address, :email_description, :setaside,
|
9
|
-
:pop_address, :pop_zip, :pop_country)
|
10
|
-
include FBO::Notice
|
11
|
-
end
|
12
|
-
end
|
13
|
-
end
|
data/lib/fbo/notices/archive.rb
DELETED
data/lib/fbo/notices/award.rb
DELETED
@@ -1,14 +0,0 @@
|
|
1
|
-
module FBO
|
2
|
-
module Notices
|
3
|
-
class Award < Struct.new(:date, :year, :zip, :class_code, :naics_code,
|
4
|
-
:agency, :office, :location, :office_address,
|
5
|
-
:subject, :solicitation_number, :notice_type,
|
6
|
-
:description, :contact_info, :award_number,
|
7
|
-
:award_amount, :line_number, :award_date,
|
8
|
-
:archive_date, :awardee, :awardee_duns, :link_url,
|
9
|
-
:link_description, :email_address, :email_description,
|
10
|
-
:setaside, :correction)
|
11
|
-
include FBO::Notice
|
12
|
-
end
|
13
|
-
end
|
14
|
-
end
|
@@ -1,14 +0,0 @@
|
|
1
|
-
module FBO
|
2
|
-
module Notices
|
3
|
-
class CombinedSolicitation < Struct.new(:date, :year, :zip, :class_code,
|
4
|
-
:naics_code, :agency, :office, :location,
|
5
|
-
:office_address, :subject, :solicitation_number,
|
6
|
-
:response_date, :archive_date,
|
7
|
-
:contact_info, :description, :link_url,
|
8
|
-
:link_description, :email_address,
|
9
|
-
:email_description, :setaside, :pop_address,
|
10
|
-
:pop_zip, :pop_country)
|
11
|
-
include FBO::Notice
|
12
|
-
end
|
13
|
-
end
|
14
|
-
end
|
@@ -1,15 +0,0 @@
|
|
1
|
-
module FBO
|
2
|
-
module Notices
|
3
|
-
class FairOpportunity < Struct.new(:date, :year, :zip, :class_code, :naics_code,
|
4
|
-
:agency, :office, :location, :office_address,
|
5
|
-
:subject, :solicitation_number, :notice_type,
|
6
|
-
:justification_authority, :award_number,
|
7
|
-
:delivery_order_number, :modification_number,
|
8
|
-
:award_date, :archive_date, :description,
|
9
|
-
:contact_info, :link_url, :link_description,
|
10
|
-
:email_address, :email_description, :file_list,
|
11
|
-
:correction)
|
12
|
-
include FBO::Notice
|
13
|
-
end
|
14
|
-
end
|
15
|
-
end
|
@@ -1,13 +0,0 @@
|
|
1
|
-
module FBO
|
2
|
-
module Notices
|
3
|
-
class ForeignStandard < Struct.new(:date, :year, :zip, :class_code, :naics_code,
|
4
|
-
:agency, :office, :location, :office_address,
|
5
|
-
:subject, :solicitation_number, :archive_date,
|
6
|
-
:response_date, :contact_info, :description,
|
7
|
-
:link_url, :link_description, :email_address,
|
8
|
-
:email_description, :setaside, :pop_address,
|
9
|
-
:pop_zip, :pop_country)
|
10
|
-
include FBO::Notice
|
11
|
-
end
|
12
|
-
end
|
13
|
-
end
|
@@ -1,13 +0,0 @@
|
|
1
|
-
module FBO
|
2
|
-
module Notices
|
3
|
-
class IntentToBundle < Struct.new(:date, :year, :zip, :class_code, :naics_code,
|
4
|
-
:agency, :office, :location, :office_address,
|
5
|
-
:subject, :solicitation_number, :notice_type,
|
6
|
-
:archive_date, :description, :contact_info,
|
7
|
-
:award_number, :delivery_order_number,
|
8
|
-
:link_url, :link_description, :email_address,
|
9
|
-
:email_description, :correction)
|
10
|
-
include FBO::Notice
|
11
|
-
end
|
12
|
-
end
|
13
|
-
end
|
@@ -1,18 +0,0 @@
|
|
1
|
-
module FBO
|
2
|
-
module Notices
|
3
|
-
class JustificationApproval < Struct.new(:date, :year, :zip, :class_code,
|
4
|
-
:naics_code, :agency, :office,
|
5
|
-
:location, :office_address, :subject,
|
6
|
-
:solicitation_number, :notice_type,
|
7
|
-
:description, :contact_info,
|
8
|
-
:statutory_authority, :award_number,
|
9
|
-
:modification_number, :award_date,
|
10
|
-
:archive_date, :link_url,
|
11
|
-
:link_description, :email_address,
|
12
|
-
:email_description, :file_list,
|
13
|
-
:correction)
|
14
|
-
include FBO::Notice
|
15
|
-
end
|
16
|
-
end
|
17
|
-
end
|
18
|
-
|
@@ -1,14 +0,0 @@
|
|
1
|
-
module FBO
|
2
|
-
module Notices
|
3
|
-
class Modification < Struct.new(:date, :year, :zip, :class_code,
|
4
|
-
:naics_code, :agency, :office, :location,
|
5
|
-
:office_address, :subject, :solicitation_number,
|
6
|
-
:notice_type, :response_date, :archive_date,
|
7
|
-
:contact_info, :description, :link_url,
|
8
|
-
:link_description, :email_address,
|
9
|
-
:email_description, :setaside, :pop_address,
|
10
|
-
:pop_zip, :pop_country)
|
11
|
-
include FBO::Notice
|
12
|
-
end
|
13
|
-
end
|
14
|
-
end
|