rspec-core 3.5.4 → 3.6.0.beta1

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: 5dc4950a038b0b14b369336c70d967455853128a
4
- data.tar.gz: 2b2dcb195a0493c6876dbeceb8d6a8adfd643283
3
+ metadata.gz: 9750d19aad7f7ef5eb954f4f6a9bc4730d7a09c7
4
+ data.tar.gz: 64fe3413f9233665ca9e9ed11f08c0053b3024c9
5
5
  SHA512:
6
- metadata.gz: 6cffc5f291e3a7187971a0da4fc6d9900b3022717dbbc4787843510362e6876914e0785011b2e91de4d0a2d48061866b1127acba386be59d00cc157243e6d8f1
7
- data.tar.gz: 8a347a71f03c00256b9725fa300ea3fdb23999adf48f1984ce144bbbfff08d830dc5f9391a4930afe8f9ce8981efc5a1c59caea6ae5fd79fbff0498dc124b93d
6
+ metadata.gz: 4565a663755384105496c948d14b93fa0bc8fb752ac3e2f2c201f42c5c463ac19cccbf3cddc8cdf025b337d46f361e8fc9a385fd5ffb5be3eaa02804a937c132
7
+ data.tar.gz: eb1bb367afa8fd11bfb7e838df3fe933edff6a4bdfaa0b649ccbc9ce24b294ac1a94e37bd51c01b8522c816ba8ad0ea3a99bd0aaeebd99c49c6b96928c6093d9
Binary file
data.tar.gz.sig CHANGED
Binary file
@@ -1,3 +1,29 @@
1
+ ### 3.6.0.beta1 / 2016-10-09
2
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.5.4...v3.6.0.beta1)
3
+
4
+ Enhancements:
5
+
6
+ * Warn when duplicate shared examples definitions are loaded due to being
7
+ defined in files matching the spec pattern (e.g. `_spec.rb`) (#2278, Devon Estes)
8
+ * Improve metadata filtering so that it can match against any object
9
+ that implements `===` instead of treating regular expressions as
10
+ special. (Myron Marston, #2294)
11
+ * Improve `rspec -v` so that it prints out the versions of each part of
12
+ RSpec to prevent confusion. (Myron Marston, #2304)
13
+ * Add `config.fail_if_no_examples` option which causes RSpec to fail if
14
+ no examples are found. (Ewa Czechowska, #2302)
15
+ * Nicely format errors encountered while loading spec files.
16
+ (Myron Marston, #2323)
17
+ * Improve the API for enabling and disabling color output (Josh
18
+ Justice, #2321):
19
+ * Automatically enable color if the output is a TTY, since color is
20
+ nearly always desirable if the output can handle it.
21
+ * Introduce new CLI flag to force color on (`--force-color`), even
22
+ if the output is not a TTY. `--no-color` continues to work as well.
23
+ * Introduce `config.color_mode` for configuring the color from Ruby.
24
+ `:automatic` is the default and will produce color if the output is
25
+ a TTY. `:on` forces it on and `:off` forces it off.
26
+
1
27
  ### 3.5.4 / 2016-09-30
2
28
  [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.5.3...v3.5.4)
3
29
 
@@ -1863,7 +1889,7 @@ project's root directory or in your home directory:
1863
1889
 
1864
1890
  require "autotest/bundler"
1865
1891
 
1866
- Now you can just type 'autotest' on the commmand line and it will work as you expect.
1892
+ Now you can just type 'autotest' on the command line and it will work as you expect.
1867
1893
 
1868
1894
  If you don't want 'bundle exec', there is nothing you have to do.
1869
1895
 
@@ -2051,7 +2077,7 @@ Bug fixes
2051
2077
  Enhancements
2052
2078
 
2053
2079
  * implicitly require unknown formatters so you don't have to require the file
2054
- explicitly on the commmand line (Michael Grosser)
2080
+ explicitly on the command line (Michael Grosser)
2055
2081
  * add --out/-o option to assign output target
2056
2082
  * added fail_fast configuration option to abort on first failure
2057
2083
  * support a Hash subject (its([:key]) { should == value }) (Josep M. Bach)
@@ -25,7 +25,12 @@ module RSpec
25
25
  self.files_or_directories_to_run = files_or_directories_to_run
26
26
  self.latest_run_results = nil
27
27
  run_output = yield
28
- latest_run_results || raise_bisect_failed(run_output)
28
+
29
+ if latest_run_results.nil? || latest_run_results.all_example_ids.empty?
30
+ raise_bisect_failed(run_output)
31
+ end
32
+
33
+ latest_run_results
29
34
  end
30
35
 
31
36
  def start
@@ -199,6 +199,10 @@ module RSpec
199
199
  # The exit code to return if there are any failures (default: 1).
200
200
  add_setting :failure_exit_code
201
201
 
202
+ # @macro add_setting
203
+ # Whether or not to fail when there are no RSpec examples (default: false).
204
+ add_setting :fail_if_no_examples
205
+
202
206
  # @macro define_reader
203
207
  # Indicates files configured to be required.
204
208
  define_reader :requires
@@ -394,6 +398,7 @@ module RSpec
394
398
  add_setting :max_displayed_failure_line_count
395
399
 
396
400
  # @private
401
+ # @deprecated Use {#color_mode} = :on, instead of {#color} with {#tty}
397
402
  add_setting :tty
398
403
  # @private
399
404
  attr_writer :files_to_run
@@ -422,9 +427,11 @@ module RSpec
422
427
  @files_or_directories_to_run = []
423
428
  @loaded_spec_files = Set.new
424
429
  @color = false
430
+ @color_mode = :automatic
425
431
  @pattern = '**{,/*/**}/*_spec.rb'
426
432
  @exclude_pattern = ''
427
433
  @failure_exit_code = 1
434
+ @fail_if_no_examples = false
428
435
  @spec_files_loaded = false
429
436
 
430
437
  @backtrace_formatter = BacktraceFormatter.new
@@ -773,24 +780,54 @@ module RSpec
773
780
  @backtrace_formatter.full_backtrace = true_or_false
774
781
  end
775
782
 
776
- # Returns the configuration option for color, but should not
777
- # be used to check if color is supported.
783
+ # Enables color output if the output is a TTY. As of RSpec 3.6, this is
784
+ # the default behavior and this option is retained only for backwards
785
+ # compatibility.
778
786
  #
787
+ # @deprecated No longer recommended because of complex behavior. Instead,
788
+ # rely on the fact that TTYs will display color by default, or set
789
+ # {#color_mode} to :on to display color on a non-TTY output.
790
+ # @see color_mode
779
791
  # @see color_enabled?
780
792
  # @return [Boolean]
781
793
  def color
782
794
  value_for(:color) { @color }
783
795
  end
784
796
 
797
+ # The mode for determining whether to display output in color. One of:
798
+ #
799
+ # - :automatic - the output will be in color if the output is a TTY (the
800
+ # default)
801
+ # - :on - the output will be in color, whether or not the output is a TTY
802
+ # - :off - the output will not be in color
803
+ #
804
+ # @see color_enabled?
805
+ # @return [Boolean]
806
+ def color_mode
807
+ value_for(:color_mode) { @color_mode }
808
+ end
809
+
785
810
  # Check if color is enabled for a particular output.
786
811
  # @param output [IO] an output stream to use, defaults to the current
787
812
  # `output_stream`
788
813
  # @return [Boolean]
789
814
  def color_enabled?(output=output_stream)
790
- output_to_tty?(output) && color
815
+ case color_mode
816
+ when :on then true
817
+ when :off then false
818
+ else # automatic
819
+ output_to_tty?(output) || (color && tty?)
820
+ end
791
821
  end
792
822
 
823
+ # Set the color mode.
824
+ attr_writer :color_mode
825
+
793
826
  # Toggle output color.
827
+ #
828
+ # @deprecated No longer recommended because of complex behavior. Instead,
829
+ # rely on the fact that TTYs will display color by default, or set
830
+ # {:color_mode} to :on to display color on a non-TTY output.
794
831
  attr_writer :color
795
832
 
796
833
  # @private
@@ -1432,7 +1469,7 @@ module RSpec
1432
1469
 
1433
1470
  files_to_run.uniq.each do |f|
1434
1471
  file = File.expand_path(f)
1435
- load file
1472
+ load_spec_file_handling_errors(file)
1436
1473
  loaded_spec_files << file
1437
1474
  end
1438
1475
 
@@ -1859,6 +1896,14 @@ module RSpec
1859
1896
 
1860
1897
  private
1861
1898
 
1899
+ def load_spec_file_handling_errors(file)
1900
+ load file
1901
+ rescue Support::AllExceptionsExceptOnesWeMustNotRescue => ex
1902
+ relative_file = Metadata.relative_path(file)
1903
+ reporter.notify_non_example_exception(ex, "An error occurred while loading #{relative_file}.")
1904
+ RSpec.world.wants_to_quit = true
1905
+ end
1906
+
1862
1907
  def handle_suite_hook(scope, meta)
1863
1908
  return nil unless scope == :suite
1864
1909
 
@@ -1882,6 +1927,12 @@ module RSpec
1882
1927
  hook.run(context)
1883
1928
  rescue Support::AllExceptionsExceptOnesWeMustNotRescue => ex
1884
1929
  context.set_exception(ex)
1930
+
1931
+ # Do not run subsequent `before` hooks if one fails.
1932
+ # But for `after` hooks, we run them all so that all
1933
+ # cleanup bits get a chance to complete, minimizing the
1934
+ # chance that resources get left behind.
1935
+ break if hooks.equal?(@before_suite_hooks)
1885
1936
  end
1886
1937
  end
1887
1938
  end
@@ -1986,7 +2037,7 @@ module RSpec
1986
2037
  end
1987
2038
 
1988
2039
  def output_to_tty?(output=output_stream)
1989
- tty? || (output.respond_to?(:tty?) && output.tty?)
2040
+ output.respond_to?(:tty?) && output.tty?
1990
2041
  end
1991
2042
 
1992
2043
  def conditionally_disable_mocks_monkey_patching
@@ -41,6 +41,8 @@ module RSpec
41
41
  def options
42
42
  argv = []
43
43
  argv << "--color" if @submitted_options[:color]
44
+ argv << "--force-color" if @submitted_options[:color_mode] == :on
45
+ argv << "--no-color" if @submitted_options[:color_mode] == :off
44
46
  argv << "--profile" if @submitted_options[:profile_examples]
45
47
  argv << "--backtrace" if @submitted_options[:full_backtrace]
46
48
  argv << "--tty" if @submitted_options[:tty]
@@ -24,7 +24,7 @@ RSpec::Support.require_rspec_support "directory_maker"
24
24
  # ## Custom Formatters
25
25
  #
26
26
  # You can tell RSpec to use a custom formatter by passing its path and name to
27
- # the `rspec` commmand. For example, if you define MyCustomFormatter in
27
+ # the `rspec` command. For example, if you define MyCustomFormatter in
28
28
  # path/to/my_custom_formatter.rb, you would type this command:
29
29
  #
30
30
  # rspec --require path/to/my_custom_formatter.rb --format MyCustomFormatter
@@ -1,5 +1,4 @@
1
1
  RSpec::Support.require_rspec_core "formatters/base_formatter"
2
- RSpec::Support.require_rspec_core "formatters/console_codes"
3
2
 
4
3
  module RSpec
5
4
  module Core
@@ -23,9 +23,12 @@ module RSpec
23
23
  module_function
24
24
 
25
25
  # @private
26
- CONFIG_COLORS_TO_METHODS = Configuration.instance_methods.grep(/_color\z/).inject({}) do |hash, method|
27
- hash[method.to_s.sub(/_color\z/, '').to_sym] = method
28
- hash
26
+ def config_colors_to_methods
27
+ @config_colors_to_methods ||=
28
+ Configuration.instance_methods.grep(/_color\z/).inject({}) do |hash, method|
29
+ hash[method.to_s.sub(/_color\z/, '').to_sym] = method
30
+ hash
31
+ end
29
32
  end
30
33
 
31
34
  # Fetches the correct code for the supplied symbol, or checks
@@ -34,7 +37,7 @@ module RSpec
34
37
  # @param code_or_symbol [Symbol, Fixnum] Symbol or code to check
35
38
  # @return [Fixnum] a console code
36
39
  def console_code_for(code_or_symbol)
37
- if (config_method = CONFIG_COLORS_TO_METHODS[code_or_symbol])
40
+ if (config_method = config_colors_to_methods[code_or_symbol])
38
41
  console_code_for RSpec.configuration.__send__(config_method)
39
42
  elsif VT100_CODE_VALUES.key?(code_or_symbol)
40
43
  code_or_symbol
@@ -1,4 +1,5 @@
1
1
  RSpec::Support.require_rspec_core "formatters/base_text_formatter"
2
+ RSpec::Support.require_rspec_core "formatters/console_codes"
2
3
 
3
4
  module RSpec
4
5
  module Core
@@ -1,4 +1,5 @@
1
1
  # encoding: utf-8
2
+ RSpec::Support.require_rspec_core "formatters/console_codes"
2
3
  RSpec::Support.require_rspec_core "formatters/snippet_extractor"
3
4
  RSpec::Support.require_rspec_support "encoded_string"
4
5
 
@@ -1,4 +1,5 @@
1
1
  RSpec::Support.require_rspec_core "formatters/base_text_formatter"
2
+ RSpec::Support.require_rspec_core "formatters/console_codes"
2
3
 
3
4
  module RSpec
4
5
  module Core
@@ -49,16 +49,34 @@ module RSpec
49
49
  # @private
50
50
  class PrintVersion
51
51
  def call(_options, _err, out)
52
- out.puts RSpec::Core::Version::STRING
52
+ overall_version = RSpec::Core::Version::STRING
53
+ unless overall_version =~ /[a-zA-Z]+/
54
+ overall_version = overall_version.split('.').first(2).join('.')
55
+ end
56
+
57
+ out.puts "RSpec #{overall_version}"
58
+
59
+ [:Core, :Expectations, :Mocks, :Rails, :Support].each do |const_name|
60
+ lib_name = const_name.to_s.downcase
61
+ begin
62
+ require "rspec/#{lib_name}/version"
63
+ rescue LoadError
64
+ # Not worth mentioning libs that are not installed
65
+ nil
66
+ else
67
+ out.puts " - rspec-#{lib_name} #{RSpec.const_get(const_name)::Version::STRING}"
68
+ end
69
+ end
70
+
53
71
  0
54
72
  end
55
73
  end
56
74
 
57
75
  # @private
58
- PrintHelp = Struct.new(:parser, :invalid_options) do
76
+ PrintHelp = Struct.new(:parser, :hidden_options) do
59
77
  def call(_options, _err, out)
60
- # Removing the blank invalid options from the output.
61
- out.puts parser.to_s.gsub(/^\s+(#{invalid_options.join('|')})\s*$\n/, '')
78
+ # Removing the hidden options from the output.
79
+ out.puts parser.to_s.gsub(/^\s+(#{hidden_options.join('|')})\b.*$\n/, '')
62
80
  0
63
81
  end
64
82
  end
@@ -13,24 +13,19 @@ module RSpec
13
13
  end
14
14
 
15
15
  # @private
16
- def filter_applies?(key, value, metadata)
16
+ def filter_applies?(key, filter_value, metadata)
17
17
  silence_metadata_example_group_deprecations do
18
- return location_filter_applies?(value, metadata) if key == :locations
19
- return id_filter_applies?(value, metadata) if key == :ids
20
- return filters_apply?(key, value, metadata) if Hash === value
21
-
22
- return false unless metadata.key?(key)
23
- return true if TrueClass === value && !!metadata[key]
24
- return filter_applies_to_any_value?(key, value, metadata) if Array === metadata[key] && !(Proc === value)
25
-
26
- case value
27
- when Regexp
28
- metadata[key] =~ value
29
- when Proc
30
- proc_filter_applies?(key, value, metadata)
31
- else
32
- metadata[key].to_s == value.to_s
33
- end
18
+ return location_filter_applies?(filter_value, metadata) if key == :locations
19
+ return id_filter_applies?(filter_value, metadata) if key == :ids
20
+ return filters_apply?(key, filter_value, metadata) if Hash === filter_value
21
+
22
+ meta_value = metadata.fetch(key) { return false }
23
+
24
+ return true if TrueClass === filter_value && meta_value
25
+ return proc_filter_applies?(key, filter_value, metadata) if Proc === filter_value
26
+ return filter_applies_to_any_value?(key, filter_value, metadata) if Array === meta_value
27
+
28
+ filter_value === meta_value || filter_value.to_s == meta_value.to_s
34
29
  end
35
30
  end
36
31
 
@@ -1,3 +1,4 @@
1
+ RSpec::Support.require_rspec_core "formatters/console_codes"
1
2
  RSpec::Support.require_rspec_core "formatters/exception_presenter"
2
3
  RSpec::Support.require_rspec_core "formatters/helpers"
3
4
  RSpec::Support.require_rspec_core "shell_escape"
@@ -39,6 +39,8 @@ module RSpec::Core
39
39
  # rubocop:disable PerceivedComplexity
40
40
  def parser(options)
41
41
  OptionParser.new do |parser|
42
+ parser.summary_width = 34
43
+
42
44
  parser.banner = "Usage: rspec [options] [files or directories]\n\n"
43
45
 
44
46
  parser.on('-I PATH', 'Specify PATH to add to $LOAD_PATH (may be used more than once).') do |dirs|
@@ -131,8 +133,24 @@ module RSpec::Core
131
133
  options[:full_backtrace] = true
132
134
  end
133
135
 
134
- parser.on('-c', '--[no-]color', '--[no-]colour', 'Enable color in the output.') do |o|
135
- options[:color] = o
136
+ parser.on('-c', '--color', '--colour', '') do |_o|
137
+ # flag will be excluded from `--help` output because it is deprecated
138
+ options[:color] = true
139
+ options[:color_mode] = :automatic
140
+ end
141
+
142
+ parser.on('--force-color', '--force-colour', 'Force the output to be in color, even if the output is not a TTY') do |_o|
143
+ if options[:color_mode] == :off
144
+ abort "Please only use one of `--force-color` and `--no-color`"
145
+ end
146
+ options[:color_mode] = :on
147
+ end
148
+
149
+ parser.on('--no-color', '--no-colour', 'Force the output to not be in color, even if the output is a TTY') do |_o|
150
+ if options[:color_mode] == :on
151
+ abort "Please only use one of --force-color and --no-color"
152
+ end
153
+ options[:color_mode] = :off
136
154
  end
137
155
 
138
156
  parser.on('-p', '--[no-]profile [COUNT]',
@@ -256,8 +274,10 @@ FILTERING
256
274
  # trigger --default-path.
257
275
  invalid_options = %w[-d --I]
258
276
 
277
+ hidden_options = invalid_options + %w[-c]
278
+
259
279
  parser.on_tail('-h', '--help', "You're looking at it.") do
260
- options[:runner] = RSpec::Core::Invocations::PrintHelp.new(parser, invalid_options)
280
+ options[:runner] = RSpec::Core::Invocations::PrintHelp.new(parser, hidden_options)
261
281
  end
262
282
 
263
283
  # This prevents usage of the invalid_options.
@@ -1,2 +1 @@
1
- --color
2
1
  --require spec_helper
@@ -80,7 +80,7 @@ RSpec.configure do |config|
80
80
  # Use the documentation formatter for detailed output,
81
81
  # unless a formatter has already been configured
82
82
  # (e.g. via a command-line flag).
83
- config.default_formatter = 'doc'
83
+ config.default_formatter = "doc"
84
84
  end
85
85
 
86
86
  # Print the 10 slowest examples and example groups at the
@@ -153,7 +153,7 @@ module RSpec::Core
153
153
 
154
154
  # @private
155
155
  # Provides a way to notify of an exception that is not tied to any
156
- # particular exception (such as an exception encountered in a :suite hook).
156
+ # particular example (such as an exception encountered in a :suite hook).
157
157
  # Exceptions will be formatted the same way they normally are.
158
158
  def notify_non_example_exception(exception, context_description)
159
159
  @configuration.world.non_example_failure = true
@@ -108,8 +108,13 @@ module RSpec
108
108
  # or the configured failure exit code (1 by default) if specs
109
109
  # failed.
110
110
  def run_specs(example_groups)
111
- success = @configuration.reporter.report(@world.example_count(example_groups)) do |reporter|
111
+ examples_count = @world.example_count(example_groups)
112
+ success = @configuration.reporter.report(examples_count) do |reporter|
112
113
  @configuration.with_suite_hooks do
114
+ if examples_count == 0 && @configuration.fail_if_no_examples
115
+ return @configuration.failure_exit_code
116
+ end
117
+
113
118
  example_groups.map { |g| g.run(reporter) }.all?
114
119
  end
115
120
  end && !@world.non_example_failure
@@ -213,20 +213,43 @@ module RSpec
213
213
 
214
214
  def warn_if_key_taken(context, key, new_block)
215
215
  existing_module = shared_example_groups[context][key]
216
-
217
216
  return unless existing_module
218
217
 
219
- RSpec.warn_with <<-WARNING.gsub(/^ +\|/, ''), :call_site => nil
220
- |WARNING: Shared example group '#{key}' has been previously defined at:
221
- | #{formatted_location existing_module.definition}
222
- |...and you are now defining it at:
223
- | #{formatted_location new_block}
224
- |The new definition will overwrite the original one.
225
- WARNING
218
+ old_definition_location = formatted_location existing_module.definition
219
+ new_definition_location = formatted_location new_block
220
+ loaded_spec_files = RSpec.configuration.loaded_spec_files
221
+
222
+ if loaded_spec_files.include?(new_definition_location) && old_definition_location == new_definition_location
223
+ RSpec.warn_with <<-WARNING.gsub(/^ +\|/, ''), :call_site => nil
224
+ |WARNING: Your shared example group, '#{key}', defined at:
225
+ | #{old_definition_location}
226
+ |was automatically loaded by RSpec because the file name
227
+ |matches the configured autoloading pattern (#{RSpec.configuration.pattern}),
228
+ |and is also being required from somewhere else. To fix this
229
+ |warning, either rename the file to not match the pattern, or
230
+ |do not explicitly require the file.
231
+ WARNING
232
+ else
233
+ RSpec.warn_with <<-WARNING.gsub(/^ +\|/, ''), :call_site => nil
234
+ |WARNING: Shared example group '#{key}' has been previously defined at:
235
+ | #{old_definition_location}
236
+ |...and you are now defining it at:
237
+ | #{new_definition_location}
238
+ |The new definition will overwrite the original one.
239
+ WARNING
240
+ end
226
241
  end
227
242
 
228
- def formatted_location(block)
229
- block.source_location.join ":"
243
+ if RUBY_VERSION.to_f >= 1.9
244
+ def formatted_location(block)
245
+ block.source_location.join(":")
246
+ end
247
+ else # 1.8.7
248
+ # :nocov:
249
+ def formatted_location(block)
250
+ block.source_location.join(":").gsub(/:in.*$/, '')
251
+ end
252
+ # :nocov:
230
253
  end
231
254
 
232
255
  if Proc.method_defined?(:source_location)
@@ -3,7 +3,7 @@ module RSpec
3
3
  # Version information for RSpec Core.
4
4
  module Version
5
5
  # Current version of RSpec Core, in semantic versioning format.
6
- STRING = '3.5.4'
6
+ STRING = '3.6.0.beta1'
7
7
  end
8
8
  end
9
9
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rspec-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.5.4
4
+ version: 3.6.0.beta1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Steven Baker
@@ -46,22 +46,22 @@ cert_chain:
46
46
  ZsVDj6a7lH3cNqtWXZxrb2wO38qV5AkYj8SQK7Hj3/Yui9myUX3crr+PdetazSqQ
47
47
  F3MdtaDehhjC
48
48
  -----END CERTIFICATE-----
49
- date: 2016-10-01 00:00:00.000000000 Z
49
+ date: 2016-10-10 00:00:00.000000000 Z
50
50
  dependencies:
51
51
  - !ruby/object:Gem::Dependency
52
52
  name: rspec-support
53
53
  requirement: !ruby/object:Gem::Requirement
54
54
  requirements:
55
- - - "~>"
55
+ - - '='
56
56
  - !ruby/object:Gem::Version
57
- version: 3.5.0
57
+ version: 3.6.0.beta1
58
58
  type: :runtime
59
59
  prerelease: false
60
60
  version_requirements: !ruby/object:Gem::Requirement
61
61
  requirements:
62
- - - "~>"
62
+ - - '='
63
63
  - !ruby/object:Gem::Version
64
- version: 3.5.0
64
+ version: 3.6.0.beta1
65
65
  - !ruby/object:Gem::Dependency
66
66
  name: cucumber
67
67
  requirement: !ruby/object:Gem::Requirement
@@ -275,14 +275,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
275
275
  version: 1.8.7
276
276
  required_rubygems_version: !ruby/object:Gem::Requirement
277
277
  requirements:
278
- - - ">="
278
+ - - ">"
279
279
  - !ruby/object:Gem::Version
280
- version: '0'
280
+ version: 1.3.1
281
281
  requirements: []
282
282
  rubyforge_project:
283
283
  rubygems_version: 2.2.2
284
284
  signing_key:
285
285
  specification_version: 4
286
- summary: rspec-core-3.5.4
286
+ summary: rspec-core-3.6.0.beta1
287
287
  test_files: []
288
288
  has_rdoc:
metadata.gz.sig CHANGED
Binary file