patronus_fati 1.1.2 → 1.2.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.
data/spec/spec_helper.rb CHANGED
@@ -4,6 +4,8 @@ $LOAD_PATH.unshift(base_path) unless $LOAD_PATH.include?(base_path)
4
4
  require 'rspec'
5
5
  require 'simplecov'
6
6
 
7
+ require 'shared_examples/common_model_state'
8
+
7
9
  SimpleCov.formatter = SimpleCov::Formatter::HTMLFormatter
8
10
  SimpleCov.add_filter "/spec/"
9
11
  SimpleCov.add_filter do |source_file|
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: patronus_fati
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.2
4
+ version: 1.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sam Stelfox
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-04-21 00:00:00.000000000 Z
11
+ date: 2017-04-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: louis
@@ -204,8 +204,13 @@ files:
204
204
  - lib/patronus_fati/version.rb
205
205
  - patronus_fati.gemspec
206
206
  - spec/patronus_fati/bit_field_spec.rb
207
+ - spec/patronus_fati/data_models/access_point_spec.rb
208
+ - spec/patronus_fati/data_models/client_spec.rb
209
+ - spec/patronus_fati/data_models/connection_spec.rb
210
+ - spec/patronus_fati/data_models/ssid_spec.rb
207
211
  - spec/patronus_fati/presence_spec.rb
208
212
  - spec/patronus_fati_spec.rb
213
+ - spec/shared_examples/common_model_state.rb
209
214
  - spec/spec_helper.rb
210
215
  homepage: ''
211
216
  licenses:
@@ -233,6 +238,11 @@ specification_version: 4
233
238
  summary: A ruby implementation of the Kismet client protocol.
234
239
  test_files:
235
240
  - spec/patronus_fati/bit_field_spec.rb
241
+ - spec/patronus_fati/data_models/access_point_spec.rb
242
+ - spec/patronus_fati/data_models/client_spec.rb
243
+ - spec/patronus_fati/data_models/connection_spec.rb
244
+ - spec/patronus_fati/data_models/ssid_spec.rb
236
245
  - spec/patronus_fati/presence_spec.rb
237
246
  - spec/patronus_fati_spec.rb
247
+ - spec/shared_examples/common_model_state.rb
238
248
  - spec/spec_helper.rb