rspectacular 0.50.0 → 0.51.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7ae26b976602a9b75c036d293c179dbb652027cf
4
- data.tar.gz: 81ebed0b8d249a966c588a98e25aa1faf4899282
3
+ metadata.gz: 35d5cc8d6ea5431872903b331ab7d0169c7499c1
4
+ data.tar.gz: 2873dc0530bad3bc0f884053c06d9eac92b210a7
5
5
  SHA512:
6
- metadata.gz: 674c76ef12ecda6fbd0cb6aeec7d94365bb708ab96d2d4d4535ea41163d1ea6a95452154fa405b90642e346eb0186bdb6cacc6e10b5f23392ccf289718528a9b
7
- data.tar.gz: 89807434596f09e24a02eaa71c571c95107d85ee907422a8dfb8ceca24b17010439699522b6f0f000ccd8791593bb7e3fd57b6306e7e7bb4171e7e8bf0feb9f9
6
+ metadata.gz: 38e56ebe0067284365e894ad229dceaf9ad80dd24cafff46102d9a8795fffa592405e5912a545291a3dba623bddca0bd9dfba414fd490112bd063dc3d8699d8a
7
+ data.tar.gz: a7844b3ce5f856f4e3798338a7988a51354dac9385b941d42b4f4333eadd6df47ab2bb9300337cba7005eebe533a1adfc1afb0dfed0232204faca32b5cd71502
@@ -9,10 +9,6 @@ begin
9
9
  Bullet.bullet_logger = true
10
10
  Bullet.raise = true
11
11
 
12
- if defined?(Chamber) && Chamber.env.bugsnag
13
- Bullet.bugsnag = { api_key: Chamber.env.bugsnag.api_key }
14
- end
15
-
16
12
  RSpec.configure do |config|
17
13
  config.before(:each) do
18
14
  Bullet.start_request if Bullet.enable?
@@ -19,10 +19,14 @@ begin
19
19
  RSpec.configure do |config|
20
20
  config.around(:each, :file_attachment => true) do |example|
21
21
  previous_carrierwave_processing_mode = subject.class.enable_processing
22
+ previous_carrierwave_storage_mode = subject.class.storage
23
+
22
24
  subject.class.enable_processing = true
25
+ subject.class.storage = :file
23
26
 
24
27
  example.run
25
28
 
29
+ subject.class.storage = previous_carrierwave_storage_mode
26
30
  subject.class.enable_processing = previous_carrierwave_processing_mode
27
31
  end
28
32
  end
@@ -1,5 +1,6 @@
1
1
  RSpec.configure do |config|
2
2
  config.expect_with :rspec do |c|
3
- c.syntax = :expect
3
+ c.syntax = :expect
4
+ c.include_chain_clauses_in_custom_matcher_descriptions = true
4
5
  end
5
6
  end
@@ -0,0 +1 @@
1
+ require 'pp'
@@ -1,3 +1,3 @@
1
1
  module RSpectacular
2
- VERSION = '0.50.0'
2
+ VERSION = '0.51.0'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rspectacular
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.50.0
4
+ version: 0.51.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - jfelchner
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-08-03 00:00:00.000000000 Z
11
+ date: 2014-10-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rspec
@@ -108,6 +108,7 @@ files:
108
108
  - lib/rspectacular/support/formatters.rb
109
109
  - lib/rspectacular/support/garbage_collection.rb
110
110
  - lib/rspectacular/support/mocks.rb
111
+ - lib/rspectacular/support/output.rb
111
112
  - lib/rspectacular/support/pending.rb
112
113
  - lib/rspectacular/support/rails.rb
113
114
  - lib/rspectacular/support/random.rb
@@ -135,7 +136,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
135
136
  version: '0'
136
137
  requirements: []
137
138
  rubyforge_project: rspectacular
138
- rubygems_version: 2.3.0
139
+ rubygems_version: 2.2.2
139
140
  signing_key:
140
141
  specification_version: 4
141
142
  summary: RSpec Support And Matchers