spy_rb 0.1.2
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 +7 -0
- data/lib/spy.rb +5 -0
- metadata +48 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 6a262963c1ed562ad509486821cf161a6240459b
|
|
4
|
+
data.tar.gz: da505c8ea44f5e4259df12ee84400b9c80c8db35
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 5e5602007b1865055cd1ffabe15e07083957b9efc1372755826691512ab34454522e7c517c44df1d86632bd4c4c6b23b1902df5c6dc585c5c036822767aa7f21
|
|
7
|
+
data.tar.gz: 99c49688320313eeb31d515fbf60fc473bd821c2548b028a92c3cf9593d2c4ef8eade41d7bc75cc45aa96a1cbfdb1d6c5201c83acf1e901db5343d1337cdf9d5
|
data/lib/spy.rb
ADDED
metadata
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: spy_rb
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.2
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Josh Bodah
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2014-12-01 00:00:00.000000000 Z
|
|
12
|
+
dependencies: []
|
|
13
|
+
description: Spy brings everything that's great about Sinon.JS to Ruby. Mocking frameworks
|
|
14
|
+
work by stubbing out functionality. Spy works by listening in on functionality and
|
|
15
|
+
allowing it to run in the background. Spy is designed to be lightweight and work
|
|
16
|
+
alongside Mocking frameworks instead of trying to replace them entirely.
|
|
17
|
+
email: jb3689@yahoo.com
|
|
18
|
+
executables: []
|
|
19
|
+
extensions: []
|
|
20
|
+
extra_rdoc_files: []
|
|
21
|
+
files:
|
|
22
|
+
- lib/spy.rb
|
|
23
|
+
homepage: https://github.com/jbodah/spy_rb
|
|
24
|
+
licenses:
|
|
25
|
+
- MIT
|
|
26
|
+
metadata: {}
|
|
27
|
+
post_install_message:
|
|
28
|
+
rdoc_options: []
|
|
29
|
+
require_paths:
|
|
30
|
+
- lib
|
|
31
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
32
|
+
requirements:
|
|
33
|
+
- - ">="
|
|
34
|
+
- !ruby/object:Gem::Version
|
|
35
|
+
version: '0'
|
|
36
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - ">="
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '0'
|
|
41
|
+
requirements: []
|
|
42
|
+
rubyforge_project:
|
|
43
|
+
rubygems_version: 2.2.2
|
|
44
|
+
signing_key:
|
|
45
|
+
specification_version: 4
|
|
46
|
+
summary: SinonJS-style Test Spies for Ruby
|
|
47
|
+
test_files: []
|
|
48
|
+
has_rdoc:
|