rspec_rake 0.2.0 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ebf1904544d48342f10a3cad0b6b9813bf6e76ac
4
- data.tar.gz: 6daa608635bb4eee70ee06ac915bc1c44070ddeb
3
+ metadata.gz: 15b5689a8f8a84f075fe1c985330520fa919aa00
4
+ data.tar.gz: fde62b95b326ebdf3b1175bc882b0a12ce429846
5
5
  SHA512:
6
- metadata.gz: 8cfb548958770612e71683cab0dde8cfaa2e4a8b21f8b0c21407f4e098940958ebe21db1418b7a198069533c756eb8179daa6cab73db2ae4d42e5293521e4415
7
- data.tar.gz: 3e6b3c20f7eb273b0a0e7a10f485ec24192f85721ab0e60b2f6c4cbe3a4a6c53510dc17d0e312f16e86c0d56ba3614f5c944fffe2b55dcbaf534399895e7c943
6
+ metadata.gz: 1b78a05645f193f0e8388e93d51a4665780208b7f2d432faa42ad4b68c5b055033cf6bd7976d4bec05ae0550114d54dd989b7cdc33638a488b278ae7c5f5152a
7
+ data.tar.gz: fe3eba990f82e21f74aa1ba3486b39613c29e702b6b72b12fb49a4acf0e6e5841fd86ebff470634f9c13c72ad69d3ec752edbf36f16b2fbdcbf0dae13eeb625b
data/README.md CHANGED
@@ -31,8 +31,15 @@ Be careful your specs doesn't go infinite loop :smiling_imp:
31
31
 
32
32
  ## Contributing
33
33
 
34
- Bug reports and pull requests are welcome on GitHub at https://github.com/bakunyo/rspec_rake. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
34
+ Bug reports and pull requests are welcome on GitHub at https://github.com/bakunyo/rspec_rake.
35
35
 
36
+ This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
37
+
38
+ 1. Fork it ( http://github.com/bakunyo/rspec_rake/fork )
39
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
40
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
41
+ 4. Push to the branch (`git push origin my-new-feature`)
42
+ 5. Create new Pull Request
36
43
 
37
44
  ## License
38
45
 
@@ -1,5 +1,6 @@
1
+ require 'rake'
1
2
  require 'rspec_rake/version'
2
- require_relative 'rake/task'
3
+ require 'rspec_rake/rake/task'
3
4
 
4
5
  module RSpecRake
5
6
  class << self
File without changes
@@ -1,3 +1,3 @@
1
1
  module RSpecRake
2
- VERSION = '0.2.0'
2
+ VERSION = '0.3.0'
3
3
  end
@@ -1,5 +1,4 @@
1
1
  # coding: utf-8
2
- require 'rake'
3
2
  lib = File.expand_path('../lib', __FILE__)
4
3
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
4
  require 'rspec_rake/version'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rspec_rake
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Izuta Hiroyuki
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-05-02 00:00:00.000000000 Z
11
+ date: 2016-05-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -83,8 +83,8 @@ files:
83
83
  - Rakefile
84
84
  - bin/console
85
85
  - bin/setup
86
- - lib/rake/task.rb
87
86
  - lib/rspec_rake.rb
87
+ - lib/rspec_rake/rake/task.rb
88
88
  - lib/rspec_rake/version.rb
89
89
  - rspec_rake.gemspec
90
90
  homepage: https://github.com/bakunyo/rspec_rake