allure-rspec 0.6.4 → 0.6.5

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: 4f5395116359bfd7bf306159077438a646322706
4
- data.tar.gz: 77e31a2c0462029ab44e36692aa89dffa470d917
3
+ metadata.gz: ec3bdd1ae2140ef088da5974df84f40ef4650d65
4
+ data.tar.gz: 2ddf04e97493c8a8942968c6f384db8e652132a6
5
5
  SHA512:
6
- metadata.gz: 75486c8ecf8b9c0db5bdfa0d91bf1ee6dcefff77d9b756f1ee8f1f8670c3ec95f78e2fbaca461d65e54b0ae7bba320c386cde0a45db213500587b369e1b2ca07
7
- data.tar.gz: 45fb36c869f2fc088203fc1c300cb2ca55c713c99f9d3ec1af9ccdcb252c341cc62f07f93e1814d37ddb049e24f86bb093943ffab85888aa4b9608f344ee83f8
6
+ metadata.gz: 56a969b6d8b3f6bf888fcdbd11b7cf69d94e8e2ce3e7469f99fc7f1335a2e1ca7042f605dc3404619f55e14fa0c377b6ebeaeedd6e130ee55194f20f7d52bf1f
7
+ data.tar.gz: b4c3a6a365192e129bf0057278e8c8abc4a9691ff657d22b12b07ae597fd493cf4b3020a018f7d5885a95b00a223f9c948ba0bbe190ef144ce5e4e712c1adb2d
data/Gemfile.lock CHANGED
@@ -1,9 +1,9 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- allure-rspec (0.6.4)
4
+ allure-rspec (0.6.5)
5
5
  allure-ruby-adaptor-api (= 0.6.3)
6
- rspec (= 3.0.0)
6
+ rspec (~> 3.0)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -1,14 +1,13 @@
1
1
  # Allure RSpec Adaptor
2
2
 
3
+ [![Gem Version](https://badge.fury.io/rb/allure-rspec.svg)](http://badge.fury.io/rb/allure-rspec)
4
+
3
5
  Adaptor to use the Allure framework along with the RSpec. See [an example](https://github.com/allure-examples/allure-rspec-example) project to take a quick tour.
4
6
 
5
7
  ## What's new
6
8
 
7
- * *0.6.1* - Upgraded to RSpec3. Not compatible with RSpec2 anymore.
8
- * *0.5.1* - Migrating to allure-ruby-api.
9
- * *0.4.2* - Support for labels (feature,story,severity,language,framework).
10
- * *0.4.1* - Support for before/after(:step) hooks.
11
- * *0.3.1* - Allure 1.4.0 format support.
9
+ See the [releases](https://github.com/allure-framework/allure-rspec/releases) tab.
10
+
12
11
 
13
12
  ## Setup
14
13
 
@@ -30,8 +29,8 @@ And then include it in your spec_helper.rb:
30
29
 
31
30
  ## Advanced options
32
31
 
33
- You can specify the directory where the Allure test results will appear. By default it would be 'allure/data' within
34
- your current directory.
32
+ You can specify the directory where the Allure test results will appear. By default it would be 'gen/allure-results'
33
+ within your current directory.
35
34
 
36
35
  ```ruby
37
36
  AllureRSpec.configure do |c|
data/allure-rspec.gemspec CHANGED
@@ -18,7 +18,7 @@ Gem::Specification.new do |s|
18
18
  s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
19
19
  s.require_paths = ['lib']
20
20
 
21
- s.add_dependency 'rspec', '3.0.0'
21
+ s.add_dependency 'rspec', '~> 3.0'
22
22
  s.add_dependency 'allure-ruby-adaptor-api', '0.6.3'
23
23
 
24
24
  s.add_development_dependency 'bundler'
data/lib/allure-rspec.rb CHANGED
@@ -11,7 +11,7 @@ module AllureRSpec
11
11
  attr_accessor :output_dir
12
12
  attr_accessor :clean_dir
13
13
 
14
- DEFAULT_OUTPUT_DIR = 'allure/data'
14
+ DEFAULT_OUTPUT_DIR = 'gen/allure-results'
15
15
 
16
16
  def output_dir
17
17
  @output_dir || DEFAULT_OUTPUT_DIR
@@ -1,5 +1,5 @@
1
1
  module AllureRSpec # :nodoc:
2
2
  module Version # :nodoc:
3
- STRING = '0.6.4'
3
+ STRING = '0.6.5'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,29 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: allure-rspec
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.4
4
+ version: 0.6.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ilya Sadykov
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-09-05 00:00:00.000000000 Z
11
+ date: 2014-09-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rspec
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - '='
17
+ - - ~>
18
18
  - !ruby/object:Gem::Version
19
- version: 3.0.0
19
+ version: '3.0'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - '='
24
+ - - ~>
25
25
  - !ruby/object:Gem::Version
26
- version: 3.0.0
26
+ version: '3.0'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: allure-ruby-adaptor-api
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -111,6 +111,6 @@ rubyforge_project:
111
111
  rubygems_version: 2.0.3
112
112
  signing_key:
113
113
  specification_version: 4
114
- summary: allure-rspec-0.6.4
114
+ summary: allure-rspec-0.6.5
115
115
  test_files: []
116
116
  has_rdoc: