xspec 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ require 'spec_helper'
2
+
3
+ describe 'xspec' do
4
+ it 'evaluates this file' do
5
+ assert 1 + 1 == 2, "math is broken"
6
+ end
7
+ end
@@ -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