fakefs 0.9.3 → 0.10.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +4 -5
  3. data/lib/fakefs/version.rb +1 -1
  4. metadata +3 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ea957af228d52583f2b6aca6ed6499df8b57036a
4
- data.tar.gz: ccf8113df4be046c382f21df104ddc5cc3bd569b
3
+ metadata.gz: bdc55366cd1a531eceb0949ebd37d8bc88672e70
4
+ data.tar.gz: 653187bd94890e9f97e34a04549f9e66dd860cfc
5
5
  SHA512:
6
- metadata.gz: 5150ca1c947b1da5a27ae7708e4bd9f2abd442ccedc5b4be9a3d6428e18828c275395caddc567b5bc6385f04ae027772c2ccee00b83474573e0d98a9a194f2ce
7
- data.tar.gz: 42006bad3ce9c0d9a53de5ea2638ce4c6cb0d39ed8451d95c6d9cec4180598225d835952fc69fb17abd019507a740209265e45a4a0d1e891fe64f86f0a0d0eae
6
+ metadata.gz: 7ac2c9c60bde681b7dbcbf135ec769fa7f5af8145dbf7aa2f231a4a8dd77180a9ae6cbc95b4b9eef5fe797fd020a9d9a8ff4122896320bc55484a5549838393c
7
+ data.tar.gz: fc995906267e125839d239d84b780a003e5fae7963bb87695686a29a6ae9983ea4c7437e1117aa10827b4203ee7d0cb099ede0f1a25e10d7ad74a09718b1fead
data/README.md CHANGED
@@ -109,10 +109,10 @@ Clone existing directories or files to reuse them during tests, they are safe to
109
109
  ```ruby
110
110
  FakeFS do
111
111
  config = File.expand_path('../../config', __FILE__)
112
-
112
+
113
113
  FakeFS::FileSystem.clone(config)
114
114
  expect(File.read("#{config}/foo.yml")).to include("original-content-of-foo")
115
-
115
+
116
116
  File.write("#{config}/foo.yml"), "NEW")
117
117
  expect(File.read("#{config}/foo.yml")).to eq "NEW"
118
118
  end
@@ -179,11 +179,10 @@ Once you've made your great commits:
179
179
  Meta
180
180
  ----
181
181
 
182
- * Code: `git clone git://github.com/defunkt/fakefs.git`
182
+ * Code: `git clone git://github.com/fakefs/fakefs.git`
183
183
  * Home: <https://github.com/fakefs/fakefs>
184
- * Docs: <http://www.rubydoc.info/github/defunkt/fakefs>
185
184
  * Bugs: <https://github.com/fakefs/fakefs/issues>
186
- * Test: <https://travis-ci.org/#!/defunkt/fakefs>
185
+ * Test: <https://travis-ci.org/fakefs/fakefs>
187
186
  * Gems: <https://rubygems.org/gems/fakefs>
188
187
 
189
188
  [0]: https://help.github.com/forking/
@@ -1,7 +1,7 @@
1
1
  module FakeFS
2
2
  # Version module
3
3
  module Version
4
- VERSION = '0.9.3'
4
+ VERSION = '0.10.0'
5
5
 
6
6
  def self.to_s
7
7
  VERSION
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fakefs
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.3
4
+ version: 0.10.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Wanstrath
@@ -12,7 +12,7 @@ authors:
12
12
  autorequire:
13
13
  bindir: bin
14
14
  cert_chain: []
15
- date: 2016-10-12 00:00:00.000000000 Z
15
+ date: 2016-11-10 00:00:00.000000000 Z
16
16
  dependencies:
17
17
  - !ruby/object:Gem::Dependency
18
18
  name: bundler
@@ -157,7 +157,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
157
157
  version: '0'
158
158
  requirements: []
159
159
  rubyforge_project:
160
- rubygems_version: 2.5.1
160
+ rubygems_version: 2.4.5.1
161
161
  signing_key:
162
162
  specification_version: 4
163
163
  summary: A fake filesystem. Use it in your tests.