fakefs 0.9.3 → 0.10.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 +4 -4
- data/README.md +4 -5
- data/lib/fakefs/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: bdc55366cd1a531eceb0949ebd37d8bc88672e70
|
|
4
|
+
data.tar.gz: 653187bd94890e9f97e34a04549f9e66dd860cfc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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/
|
|
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
|
|
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/
|
data/lib/fakefs/version.rb
CHANGED
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.
|
|
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
|
|
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.
|