rspec-set 0.1.2 → 0.1.3

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: 59acff67d9ebe8be0e2548b0dfb11561bb94e5ae
4
- data.tar.gz: 47954361978a4f5d2cf7e276131a73c8b2e12685
3
+ metadata.gz: 378bfe878d834df657fc3f87b1b40692790ca35c
4
+ data.tar.gz: f34d75fc798442060f663eb1faa4c777db5b8aef
5
5
  SHA512:
6
- metadata.gz: fba5fc31ad4fc71bf42ef6eb8956924b489d080d92f168fb0b685ccd16b011d2b535f6ac29fbdd7fffa5fc976207d442bcf82dc5c6f1acef63d9da1bc08421dd
7
- data.tar.gz: ff050073258e7e98f5ae444a525a8f2d59f05ec2d9605662f37e67a631c7ebe20f93db69547288e33d83e51accb69d806eda4833675ab793a34728bd6eca0ae0
6
+ metadata.gz: ae2b168f4dad8b22865325e24c29a1f158fad4a31b140447f4c4b7d3afd45387de09d0c6c7b08e407c3a1b2db5f45a8d88b00510998dc85a927fa3b95c64a754
7
+ data.tar.gz: 4616f7daaad34d66422727dfcfca1acf3e19ea084cc26cd90ed611374eb81530871a8d8fbf79e49d402fc7d6fd4ec9569c7c5351d7371d1fd19cb2c78f220330
@@ -1,5 +1,9 @@
1
1
  # rspec-set CHANGELOG
2
2
 
3
+ ## 0.1.3
4
+
5
+ * prevent name conflict by [@jdelStrother][] (PR [#6][])
6
+ *
3
7
  ## 0.1.2
4
8
 
5
9
  * fix reload destroy models by [@pcreux][]
@@ -25,6 +29,8 @@
25
29
  <!--- The following link definition list is generated by PimpMyChangelog --->
26
30
  [#4]: https://github.com/pcreux/rspec-set/issues/4
27
31
  [#5]: https://github.com/pcreux/rspec-set/issues/5
32
+ [#6]: https://github.com/pcreux/rspec-set/issues/6
28
33
  [@21croissants]: https://github.com/21croissants
34
+ [@jdelStrother]: https://github.com/jdelStrother
29
35
  [@loganhasson]: https://github.com/loganhasson
30
36
  [@pcreux]: https://github.com/pcreux
@@ -2,7 +2,7 @@ require "version"
2
2
 
3
3
  module RSpec
4
4
  module Core
5
- module Set
5
+ module RSpecSet
6
6
  module ClassMethods
7
7
  # Set @variable_name in a before(:all) block and give access to it
8
8
  # via let(:variable_name)
@@ -47,10 +47,10 @@ module RSpec
47
47
  def self.included(mod) # :nodoc:
48
48
  mod.extend ClassMethods
49
49
  end
50
- end # Set
50
+ end # RSpecSet
51
51
 
52
52
  class ExampleGroup
53
- include Set
53
+ include RSpecSet
54
54
  end # ExampleGroup
55
55
 
56
56
  end # Core
@@ -1,5 +1,5 @@
1
1
  module Rspec
2
- module Set
3
- VERSION = "0.1.2"
2
+ module RSpecSet
3
+ VERSION = "0.1.3"
4
4
  end
5
5
  end
@@ -5,7 +5,7 @@ require 'version'
5
5
 
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = "rspec-set"
8
- spec.version = Rspec::Set::VERSION
8
+ spec.version = Rspec::RSpecSet::VERSION
9
9
  spec.authors = ["Philippe Creux"]
10
10
  spec.email = ["pcreux@gmail.com"]
11
11
  spec.description = "#set(), speed-up your specs"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rspec-set
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Philippe Creux
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-05-27 00:00:00.000000000 Z
11
+ date: 2014-05-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler