rspectacular 0.7.0 → 0.8.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,12 @@
1
+ begin
2
+ require 'vcr'
3
+
4
+ VCR.configure do |config|
5
+ config.cassette_library_dir = 'tmp/vcr_cassettes'
6
+
7
+ config.hook_into :faraday
8
+ config.configure_rspec_metadata!
9
+ end
10
+
11
+ rescue LoadError
12
+ end
@@ -1,6 +1,5 @@
1
1
  RSpec.configure do |config|
2
2
  # Configure RSpec to run focused specs, and also respect the alias 'fit' for focused specs
3
- config.treat_symbols_as_metadata_keys_with_true_values = true
4
3
  config.filter_run :focused => true
5
4
  config.alias_example_to :fit, :focused => true
6
5
  config.run_all_when_everything_filtered = true
@@ -0,0 +1,3 @@
1
+ RSpec.configure do |config|
2
+ config.treat_symbols_as_metadata_keys_with_true_values = true
3
+ end
@@ -1,3 +1,4 @@
1
+ require 'rspectacular/support/general'
1
2
  require 'rspectacular/support/random'
2
3
  require 'rspectacular/support/focused'
3
4
  require 'rspectacular/support/pending'
@@ -1,3 +1,3 @@
1
1
  module RSpectacular
2
- VERSION = '0.7.0'
2
+ VERSION = '0.8.0'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rspectacular
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.8.0
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-02-03 00:00:00.000000000 Z
12
+ date: 2013-03-15 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rspec
@@ -77,12 +77,14 @@ files:
77
77
  - lib/rspectacular/plugins/recaptcha.rb
78
78
  - lib/rspectacular/plugins/shoulda.rb
79
79
  - lib/rspectacular/plugins/timecop.rb
80
+ - lib/rspectacular/plugins/vcr.rb
80
81
  - lib/rspectacular/plugins.rb
81
82
  - lib/rspectacular/selectors/defaults.rb
82
83
  - lib/rspectacular/selectors.rb
83
84
  - lib/rspectacular/spec_helpers/active_record_spec_helper.rb
84
85
  - lib/rspectacular/support/focused.rb
85
86
  - lib/rspectacular/support/formatters.rb
87
+ - lib/rspectacular/support/general.rb
86
88
  - lib/rspectacular/support/pending.rb
87
89
  - lib/rspectacular/support/random.rb
88
90
  - lib/rspectacular/support/selenium.rb