hexx-rspec 0.4.1 → 0.4.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +16 -13
- data/README.md +32 -29
- data/hexx-rspec.gemspec +1 -1
- data/lib/hexx/rspec/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dac79f03664769e3027ad706c6d15d7a612e14f0
|
4
|
+
data.tar.gz: 7c3649f887e14a008d1d47f316085f0d2827cb4f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9b3046cf054b9a66571462ad56888dc22d521456231ddbfa7393a8910db76f3326baa26ed80affde370f5c8383cc546a872aca32845323cbd22ede0e2f0672df
|
7
|
+
data.tar.gz: 872e2ac0711e348be4c05f1631605287a4ea1104b03c8156a929ef73f51fbea4faa997b22816b7e88973cf77204f155b91b6bdbef7574b58075d121f1329ebe9
|
data/.travis.yml
CHANGED
@@ -1,16 +1,19 @@
|
|
1
1
|
---
|
2
2
|
language: ruby
|
3
|
+
cache: bundler
|
4
|
+
rvm:
|
5
|
+
- '1.9.3'
|
6
|
+
- '2.0'
|
7
|
+
- '2.1'
|
8
|
+
- '2.2'
|
9
|
+
- ruby-head
|
10
|
+
- rbx-2 --1.9
|
11
|
+
- rbx-2 --2.0
|
12
|
+
- jruby-19mode
|
13
|
+
- jruby-21mode
|
14
|
+
- jruby-9.0.0.0.pre2
|
15
|
+
- jruby-head
|
3
16
|
matrix:
|
4
|
-
|
5
|
-
- rvm:
|
6
|
-
|
7
|
-
- rvm: 'ruby-head'
|
8
|
-
env: 'rspec=master'
|
9
|
-
- rvm: 'rbx-2 --1.9'
|
10
|
-
env: 'rspec=3.0'
|
11
|
-
- rvm: 'rbx-2 --2.0'
|
12
|
-
env: 'rspec=master'
|
13
|
-
- rvm: 'jruby-19mode'
|
14
|
-
env: 'rspec=3.0'
|
15
|
-
- rvm: 'jruby-21mode'
|
16
|
-
env: 'rspec=master'
|
17
|
+
allow_failures:
|
18
|
+
- rvm: ruby-head
|
19
|
+
- rvm: jruby-head
|
data/README.md
CHANGED
@@ -1,20 +1,24 @@
|
|
1
|
-
# Hexx::RSpec
|
1
|
+
# Hexx::RSpec [![Documentation Status](https://readthedocs.org/projects/hexx-rspec/badge/?version=latest)][readthedocs]
|
2
2
|
|
3
3
|
[![Gem Version](https://img.shields.io/gem/v/hexx-rspec.svg?style=flat)][gem]
|
4
|
-
[![Build Status](https://img.shields.io/travis/
|
5
|
-
[![Dependency Status](https://img.shields.io/gemnasium/
|
6
|
-
[![Code Climate](https://img.shields.io/codeclimate/github/
|
7
|
-
[![Coverage](https://img.shields.io/coveralls/
|
4
|
+
[![Build Status](https://img.shields.io/travis/hexx-rb/hexx-rspec/master.svg?style=flat)][travis]
|
5
|
+
[![Dependency Status](https://img.shields.io/gemnasium/hexx-rb/hexx-rspec.svg?style=flat)][gemnasium]
|
6
|
+
[![Code Climate](https://img.shields.io/codeclimate/github/hexx-rb/hexx-rspec.svg?style=flat)][codeclimate]
|
7
|
+
[![Coverage](https://img.shields.io/coveralls/hexx-rb/hexx-rspec.svg?style=flat)][coveralls]
|
8
|
+
[![Inline docs](http://inch-ci.org/github/hexx-rb/hexx-rspec.svg)][inch]
|
8
9
|
|
10
|
+
[readthedocs]: https://readthedocs.org/projects/hexx-rspec/?badge=latest
|
9
11
|
[gem]: https://rubygems.org/gems/hexx-rspec
|
10
|
-
[travis]: https://travis-ci.org/
|
11
|
-
[gemnasium]: https://gemnasium.com/
|
12
|
-
[codeclimate]: https://codeclimate.com/github/
|
13
|
-
[coveralls]: https://coveralls.io/r/
|
12
|
+
[travis]: https://travis-ci.org/hexx-rb/hexx-rspec
|
13
|
+
[gemnasium]: https://gemnasium.com/hexx-rb/hexx-rspec
|
14
|
+
[codeclimate]: https://codeclimate.com/github/hexx-rb/hexx-rspec
|
15
|
+
[coveralls]: https://coveralls.io/r/hexx-rb/hexx-rspec
|
16
|
+
[inch]: https://inch-ci.org/github/hexx-rb/hexx-rspec
|
14
17
|
|
15
|
-
The module adds RSpec, Coveralls and Simplecov dependencies
|
18
|
+
The module adds RSpec, Coveralls and Simplecov dependencies with their default settings.
|
16
19
|
|
17
|
-
|
20
|
+
Installation
|
21
|
+
------------
|
18
22
|
|
19
23
|
Add this line to your application's Gemfile:
|
20
24
|
|
@@ -51,35 +55,34 @@ require "my_app"
|
|
51
55
|
|
52
56
|
Review the `config/metrics/simplecov.yml` for coverage report settings.
|
53
57
|
|
54
|
-
|
58
|
+
Usage
|
59
|
+
-----
|
55
60
|
|
56
61
|
Use `rake test` of `rake test:coverage` respectively.
|
57
62
|
|
58
63
|
Or run `rake test:coverage:run` and `rake test:coverage:display` separately.
|
59
64
|
|
60
|
-
|
65
|
+
Compatibility
|
66
|
+
-------------
|
61
67
|
|
62
|
-
Tested under rubies with API 1.9.3
|
68
|
+
Tested under [rubies with API 1.9.3+](.travis.yml).
|
63
69
|
|
64
|
-
|
65
|
-
* JRuby 1.7+ (1.9 and 2.0+ modes)
|
66
|
-
* Rubinius 2+ (1.9 and 2.0+ modes)
|
67
|
-
|
68
|
-
[RSpec] 3.0+ used for testing
|
70
|
+
Uses [RSpec] 3.0+ for testing
|
69
71
|
|
70
72
|
[RSpec]: http://rspec.info
|
71
73
|
|
72
|
-
|
74
|
+
Contributing
|
75
|
+
------------
|
73
76
|
|
74
|
-
*
|
75
|
-
*
|
76
|
-
*
|
77
|
-
|
78
|
-
* Commit
|
79
|
-
|
80
|
-
|
81
|
-
* Send me a pull request. Bonus points for topic branches.
|
77
|
+
* Read the [STYLEGUIDE](config/metrics/STYLEGUIDE)
|
78
|
+
* [Fork the project](https://github.com/hexx-rb/hexx-rspec)
|
79
|
+
* Create your feature branch (`git checkout -b my-new-feature`)
|
80
|
+
* Add tests for it
|
81
|
+
* Commit your changes (`git commit -am '[UPDATE] Add some feature'`)
|
82
|
+
* Push to the branch (`git push origin my-new-feature`)
|
83
|
+
* Create a new Pull Request
|
82
84
|
|
83
|
-
|
85
|
+
License
|
86
|
+
-------
|
84
87
|
|
85
88
|
See [MIT LICENSE](file: LICENSE).
|
data/hexx-rspec.gemspec
CHANGED
@@ -7,7 +7,7 @@ Gem::Specification.new do |gem|
|
|
7
7
|
gem.version = Hexx::RSpec::VERSION.dup
|
8
8
|
gem.author = "Andrew Kozin"
|
9
9
|
gem.email = "andrew.kozin@gmail.com"
|
10
|
-
gem.homepage = "https://github.com/
|
10
|
+
gem.homepage = "https://github.com/hexx-rb/hexx-rspec"
|
11
11
|
gem.summary = "RSpec settings."
|
12
12
|
gem.description = "RSpec, Coveralls and Simplecov settings."
|
13
13
|
gem.license = "MIT"
|
data/lib/hexx/rspec/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hexx-rspec
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Andrew Kozin
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-06-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -165,7 +165,7 @@ files:
|
|
165
165
|
- spec/tests/rspec_spec.rb
|
166
166
|
- spec/tests/tasks/test/coverage_spec.rb
|
167
167
|
- spec/tests/tasks/test_spec.rb
|
168
|
-
homepage: https://github.com/
|
168
|
+
homepage: https://github.com/hexx-rb/hexx-rspec
|
169
169
|
licenses:
|
170
170
|
- MIT
|
171
171
|
metadata: {}
|