airborne 0.2.12 → 0.2.13

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c07d38bc345ad7e0ce8ad75b082d7bc03164e366
4
- data.tar.gz: 03c380223cfd705875f0c9b0606dba3d1bde0f78
3
+ metadata.gz: bdf72f679009e5fcd30dc18cebfcb268ae4c7c37
4
+ data.tar.gz: 7136a1f69699caf0389f093448999a8a2b218d39
5
5
  SHA512:
6
- metadata.gz: e17756d80dc4ee9e6fcf21e5afc5e0b8593bb3a87dac08588c7a9bceb08d87ba313f44d374b93dad7607ce8ac48bd0f6c074b4efb5c2fa68e9892cc7778cc0fb
7
- data.tar.gz: 2e0385cc539038f6f8ce637b636d0906e8be4e05f628dbcff8fc23cb6a5f1122d992ae4c8abdf4bfb052188fc249b7665f53aec23621bdb778fbffda4febe007
6
+ metadata.gz: 96777c7f4e87a261a971d5b38a45ecae93f05b450ff3a4b7e002ce1032529d4810b390bbcdf76dac38505f3b26165f41505ac701b49a283113e9ca3c5cac21e5
7
+ data.tar.gz: 032343fba03f03a9e9f91c36549e98830c04a7d9437fe0a262af95fa10e7b0d2d4ba78fa30de6c9bbdd0d970d6704dba090c4d05d35228f9cbc3e3b56bb8062a
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Airborne
1
+ # Airborne
2
2
 
3
3
  [![airborne travis](http://img.shields.io/travis/brooklynDev/airborne.svg?branch=master&style=flat-square)](https://travis-ci.org/brooklynDev/airborne)
4
4
  [![airborne coveralls](http://img.shields.io/coveralls/brooklynDev/airborne/master.svg?style=flat-square)](https://coveralls.io/r/brooklynDev/airborne?branch=master)
@@ -9,6 +9,11 @@
9
9
 
10
10
  RSpec driven API testing framework
11
11
 
12
+ ## Looking for Project Maintainers
13
+ I am looking for project maintainers to help keep airborne up to date and bug-free while avoiding feature creep and maintaining backwards compatibility.
14
+
15
+ Comment [here](https://github.com/brooklynDev/airborne/issues/134) if you would like to help out.
16
+
12
17
  ## Installation
13
18
 
14
19
  Install Airborne:
@@ -2,7 +2,7 @@ require 'date'
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = 'airborne'
5
- s.version = '0.2.12'
5
+ s.version = '0.2.13'
6
6
  s.date = Date.today.to_s
7
7
  s.summary = 'RSpec driven API testing framework'
8
8
  s.authors = ['Alex Friedman', 'Seth Pollack']
@@ -6,7 +6,6 @@ require 'airborne/rack_test_requester'
6
6
  require 'airborne/base'
7
7
 
8
8
  RSpec.configure do |config|
9
- config.include Airborne
10
9
  config.add_setting :base_url
11
10
  config.add_setting :match_expected
12
11
  config.add_setting :match_actual
@@ -22,4 +21,7 @@ RSpec.configure do |config|
22
21
  config.match_actual = example.metadata[:match_actual].nil? ?
23
22
  Airborne.configuration.match_actual_default? : example.metadata[:match_actual]
24
23
  end
24
+
25
+ # Include last since it depends on the configuration already being added
26
+ config.include Airborne
25
27
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: airborne
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.12
4
+ version: 0.2.13
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alex Friedman
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2017-04-10 00:00:00.000000000 Z
12
+ date: 2017-05-24 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rspec