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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b35729feb8e4ec3f7e429be0c58158f1c097368e
4
- data.tar.gz: 5295c12c1daa26bfe002e39b6791f16333d4eb38
3
+ metadata.gz: dac79f03664769e3027ad706c6d15d7a612e14f0
4
+ data.tar.gz: 7c3649f887e14a008d1d47f316085f0d2827cb4f
5
5
  SHA512:
6
- metadata.gz: 9f83254d3d6e71245db28abd51acf56d6327dccfc6286091a61769d107f5c1cb46849d57a93a99725726fb0dd6c766d67876516c00f0c5136e12dad9e25a8064
7
- data.tar.gz: 3753aadf1ea361fba5863e9f2b8b063834a6c6e9e41a506bb216739a3043b122ff689eb259e19b92d6ae95c8377e4caa699fcdf99c8f1b7f48b0fcb644ae4a64
6
+ metadata.gz: 9b3046cf054b9a66571462ad56888dc22d521456231ddbfa7393a8910db76f3326baa26ed80affde370f5c8383cc546a872aca32845323cbd22ede0e2f0672df
7
+ data.tar.gz: 872e2ac0711e348be4c05f1631605287a4ea1104b03c8156a929ef73f51fbea4faa997b22816b7e88973cf77204f155b91b6bdbef7574b58075d121f1329ebe9
@@ -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
- include:
5
- - rvm: '1.9.3'
6
- env: 'rspec=3.0'
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/nepalez/hexx-rspec/master.svg?style=flat)][travis]
5
- [![Dependency Status](https://img.shields.io/gemnasium/nepalez/hexx-rspec.svg?style=flat)][gemnasium]
6
- [![Code Climate](https://img.shields.io/codeclimate/github/nepalez/hexx-rspec.svg?style=flat)][codeclimate]
7
- [![Coverage](https://img.shields.io/coveralls/nepalez/hexx-rspec.svg?style=flat)][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/nepalez/hexx-rspec
11
- [gemnasium]: https://gemnasium.com/nepalez/hexx-rspec
12
- [codeclimate]: https://codeclimate.com/github/nepalez/hexx-rspec
13
- [coveralls]: https://coveralls.io/r/nepalez/hexx-rspec
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 to the gem, and adds their default settings.
18
+ The module adds RSpec, Coveralls and Simplecov dependencies with their default settings.
16
19
 
17
- ## Installation
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
- ## Usage
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
- ## Compatibility
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
- * MRI 1.9.3+
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
- ## Contributing
74
+ Contributing
75
+ ------------
73
76
 
74
- * Fork the project.
75
- * Make your feature addition or bug fix.
76
- * Add tests for it. This is important so I don't break it in a
77
- future version unintentionally.
78
- * Commit, do not mess with Rakefile or version
79
- (if you want to have your own version, that is fine but bump version
80
- in a commit by itself I can ignore when I pull)
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
- ## License
85
+ License
86
+ -------
84
87
 
85
88
  See [MIT LICENSE](file: LICENSE).
@@ -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/nepalez/hexx-rspec"
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"
@@ -6,7 +6,7 @@ module Hexx
6
6
 
7
7
  # The semantic version of the module.
8
8
  # @see http://semver.org/ Semantic versioning 2.0
9
- VERSION = "0.4.1".freeze
9
+ VERSION = "0.4.2".freeze
10
10
 
11
11
  end # module RSpec
12
12
 
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.1
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-05-27 00:00:00.000000000 Z
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/nepalez/hexx-rspec
168
+ homepage: https://github.com/hexx-rb/hexx-rspec
169
169
  licenses:
170
170
  - MIT
171
171
  metadata: {}