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 +4 -4
- data/Gemfile.lock +2 -2
- data/README.md +6 -7
- data/allure-rspec.gemspec +1 -1
- data/lib/allure-rspec.rb +1 -1
- data/lib/allure-rspec/version.rb +1 -1
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ec3bdd1ae2140ef088da5974df84f40ef4650d65
|
4
|
+
data.tar.gz: 2ddf04e97493c8a8942968c6f384db8e652132a6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 56a969b6d8b3f6bf888fcdbd11b7cf69d94e8e2ce3e7469f99fc7f1335a2e1ca7042f605dc3404619f55e14fa0c377b6ebeaeedd6e130ee55194f20f7d52bf1f
|
7
|
+
data.tar.gz: b4c3a6a365192e129bf0057278e8c8abc4a9691ff657d22b12b07ae597fd493cf4b3020a018f7d5885a95b00a223f9c948ba0bbe190ef144ce5e4e712c1adb2d
|
data/Gemfile.lock
CHANGED
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
|
-
|
8
|
-
|
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
|
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
|
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
data/lib/allure-rspec/version.rb
CHANGED
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
|
+
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-
|
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
|
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
|
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.
|
114
|
+
summary: allure-rspec-0.6.5
|
115
115
|
test_files: []
|
116
116
|
has_rdoc:
|