ersatz 0.0.1

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 +7 -0
  2. data/README.md +16 -0
  3. data/lib/ersatz.rb +9 -0
  4. metadata +45 -0
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: c7acaad762f0e97fdd3ba858a0d69c1bbd59092c
4
+ data.tar.gz: ef311f582b1cd993caaf96e22d34dd48897dfcba
5
+ SHA512:
6
+ metadata.gz: 08b04844a1ecc9924ab6a03781ea292d25b83e7ead5bd853d1145ba7b3f3aad631eeb6c1065909a89cd7490cc3bc846e9a578735c37d655762be5e675902fe34
7
+ data.tar.gz: 909d08399990eb6e5e4c2fa0a12f8d21902ce42252c91c7dba187479c32e51cfe8e7415d5971952dc965c1791d441e2a539708d664acd2cd30bcf5f4f9d7c068
@@ -0,0 +1,16 @@
1
+ Ersatz
2
+ ======
3
+ This is a dummy gem for testing things that load gems. In particular,
4
+ there are multiple versions of Ersatz so that you can ensure that you
5
+ are loading the correct version (or versions).
6
+
7
+ Example:
8
+
9
+ require 'ersatz'
10
+
11
+ ersatz_version = ErsatzConstants::VERSION
12
+
13
+ or:
14
+
15
+ ersatz_version = Ersatz.new.version
16
+
@@ -0,0 +1,9 @@
1
+ module ErsatzConstants
2
+ VERSION = '0.0.1'
3
+ end
4
+
5
+ class Ersatz
6
+ def version
7
+ ErsatzConstants::VERSION
8
+ end
9
+ end
metadata ADDED
@@ -0,0 +1,45 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ersatz
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Edward Thomson
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-07-26 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Not much of a gem at all
14
+ email: ethomson@edwardthomson.com
15
+ executables: []
16
+ extensions: []
17
+ extra_rdoc_files: []
18
+ files:
19
+ - README.md
20
+ - lib/ersatz.rb
21
+ homepage: https://github.com/ethomson/ersatz
22
+ licenses:
23
+ - MIT
24
+ metadata: {}
25
+ post_install_message:
26
+ rdoc_options: []
27
+ require_paths:
28
+ - lib
29
+ required_ruby_version: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '>='
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ required_rubygems_version: !ruby/object:Gem::Requirement
35
+ requirements:
36
+ - - '>='
37
+ - !ruby/object:Gem::Version
38
+ version: '0'
39
+ requirements: []
40
+ rubyforge_project:
41
+ rubygems_version: 2.0.14.1
42
+ signing_key:
43
+ specification_version: 4
44
+ summary: Ersatz
45
+ test_files: []