xspec 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/README.md +141 -0
- data/bin/xspec +24 -0
- data/lib/xspec.rb +61 -0
- data/lib/xspec/assertion_contexts.rb +360 -0
- data/lib/xspec/autorun.rb +8 -0
- data/lib/xspec/data_structures.rb +181 -0
- data/lib/xspec/defaults.rb +30 -0
- data/lib/xspec/dsl.rb +26 -0
- data/lib/xspec/evaluators.rb +40 -0
- data/lib/xspec/notifiers.rb +310 -0
- data/spec/all_specs.rb +9 -0
- data/spec/integration/rspec_expectations_spec.rb +21 -0
- data/spec/spec_helper.rb +39 -0
- data/spec/unit/assertion_spec.rb +67 -0
- data/spec/unit/doubles_spec.rb +199 -0
- data/spec/unit/let_spec.rb +46 -0
- data/spec/unit/notifiers_spec.rb +189 -0
- data/spec/unit/skeleton_spec.rb +7 -0
- data/xspec.gemspec +27 -0
- metadata +73 -0
data/xspec.gemspec
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
|
3
|
+
Gem::Specification.new do |gem|
|
4
|
+
gem.authors = ["Xavier Shay"]
|
5
|
+
gem.email = ["contact@xaviershay.com"]
|
6
|
+
gem.description =
|
7
|
+
%q{yeah}
|
8
|
+
gem.summary = %q{
|
9
|
+
testing library
|
10
|
+
}
|
11
|
+
gem.homepage = "http://github.com/xaviershay/xspec"
|
12
|
+
|
13
|
+
gem.executables = []
|
14
|
+
gem.required_ruby_version = '>= 1.9.0'
|
15
|
+
gem.files = Dir.glob("{spec,lib}/**/*.rb") + %w(
|
16
|
+
README.md
|
17
|
+
xspec.gemspec
|
18
|
+
)
|
19
|
+
gem.test_files = Dir.glob("spec/**/*.rb")
|
20
|
+
gem.name = "xspec"
|
21
|
+
gem.require_paths = ["lib"]
|
22
|
+
gem.bindir = "bin"
|
23
|
+
gem.executables << "xspec"
|
24
|
+
gem.license = "Apache 2.0"
|
25
|
+
gem.version = "0.0.1"
|
26
|
+
gem.has_rdoc = false
|
27
|
+
end
|
metadata
ADDED
@@ -0,0 +1,73 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: xspec
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Xavier Shay
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-07-20 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: yeah
|
14
|
+
email:
|
15
|
+
- contact@xaviershay.com
|
16
|
+
executables:
|
17
|
+
- xspec
|
18
|
+
extensions: []
|
19
|
+
extra_rdoc_files: []
|
20
|
+
files:
|
21
|
+
- README.md
|
22
|
+
- bin/xspec
|
23
|
+
- lib/xspec.rb
|
24
|
+
- lib/xspec/assertion_contexts.rb
|
25
|
+
- lib/xspec/autorun.rb
|
26
|
+
- lib/xspec/data_structures.rb
|
27
|
+
- lib/xspec/defaults.rb
|
28
|
+
- lib/xspec/dsl.rb
|
29
|
+
- lib/xspec/evaluators.rb
|
30
|
+
- lib/xspec/notifiers.rb
|
31
|
+
- spec/all_specs.rb
|
32
|
+
- spec/integration/rspec_expectations_spec.rb
|
33
|
+
- spec/spec_helper.rb
|
34
|
+
- spec/unit/assertion_spec.rb
|
35
|
+
- spec/unit/doubles_spec.rb
|
36
|
+
- spec/unit/let_spec.rb
|
37
|
+
- spec/unit/notifiers_spec.rb
|
38
|
+
- spec/unit/skeleton_spec.rb
|
39
|
+
- xspec.gemspec
|
40
|
+
homepage: http://github.com/xaviershay/xspec
|
41
|
+
licenses:
|
42
|
+
- Apache 2.0
|
43
|
+
metadata: {}
|
44
|
+
post_install_message:
|
45
|
+
rdoc_options: []
|
46
|
+
require_paths:
|
47
|
+
- lib
|
48
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
49
|
+
requirements:
|
50
|
+
- - ">="
|
51
|
+
- !ruby/object:Gem::Version
|
52
|
+
version: 1.9.0
|
53
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
54
|
+
requirements:
|
55
|
+
- - ">="
|
56
|
+
- !ruby/object:Gem::Version
|
57
|
+
version: '0'
|
58
|
+
requirements: []
|
59
|
+
rubyforge_project:
|
60
|
+
rubygems_version: 2.2.2
|
61
|
+
signing_key:
|
62
|
+
specification_version: 4
|
63
|
+
summary: testing library
|
64
|
+
test_files:
|
65
|
+
- spec/all_specs.rb
|
66
|
+
- spec/integration/rspec_expectations_spec.rb
|
67
|
+
- spec/spec_helper.rb
|
68
|
+
- spec/unit/assertion_spec.rb
|
69
|
+
- spec/unit/doubles_spec.rb
|
70
|
+
- spec/unit/let_spec.rb
|
71
|
+
- spec/unit/notifiers_spec.rb
|
72
|
+
- spec/unit/skeleton_spec.rb
|
73
|
+
has_rdoc: false
|