conditionz 0.0.7

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.
Files changed (3) hide show
  1. checksums.yaml +15 -0
  2. data/lib/conditionz.rb +7 -0
  3. metadata +58 -0
checksums.yaml ADDED
@@ -0,0 +1,15 @@
1
+ ---
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ YzVmNzI1N2EyZmZhYTAwMWE5YzMxYzY3M2ZlMTIwZjhkMGI3ZDlkNQ==
5
+ data.tar.gz: !binary |-
6
+ ZTM5YTFiZDlhMDYxNWFmZTkwNWYzODc3NTUyZjNkZDY5NzViMzU0Yg==
7
+ SHA512:
8
+ metadata.gz: !binary |-
9
+ NTdhNjJmYjNlODQ4MTlmNjkyMGY0ZjNiZDgwOTU0ODc1NDgxYzA3NmUwOWNk
10
+ YjY5NTI3YmUyNTJlZGNhMTQ0ZWNhMzllY2E5MjczNmY2ZjMzM2YwNjVkYzkx
11
+ Yjc3NTQyMzlhYTQ1MTQ0NGNmNzQ1NTc1MmE4NjNlM2E2Mzc4OWU=
12
+ data.tar.gz: !binary |-
13
+ Y2YyNjAyNmViMWZkZmZiZTA4NTJjN2M5NTIxMWQ1NGI1MzEyOTE0ODAwYWE1
14
+ NjJlZDNmNDUxNmExODkzYjQ5ODlmMTIyMGZmYTRmNGIwMTQ0ODYwZTg4NWU5
15
+ ZGRjOTEwNWRhYjg4NzlhZmNmZTVjZWIzZjA4MmJiYTAyYTMyODg=
data/lib/conditionz.rb ADDED
@@ -0,0 +1,7 @@
1
+ require 'conditionz/condition_base'
2
+ require 'conditionz/pre_condition'
3
+ require 'conditionz/post_condition'
4
+ require 'conditionz/assert'
5
+ require 'conditionz/pre_condition_not_met_error'
6
+ require 'conditionz/post_condition_not_met_error'
7
+ require 'conditionz/assertion_error'
metadata ADDED
@@ -0,0 +1,58 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: conditionz
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.7
5
+ platform: ruby
6
+ authors:
7
+ - Yaniv Preiss
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-04-01 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rspec
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: '2.6'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '2.6'
27
+ description: Assert pre-conditions and post-conditions inside methods
28
+ email: yanivpr@gmail.com
29
+ executables: []
30
+ extensions: []
31
+ extra_rdoc_files: []
32
+ files:
33
+ - lib/conditionz.rb
34
+ homepage: http://rubygems.org/gems/conditionz
35
+ licenses:
36
+ - MIT
37
+ metadata: {}
38
+ post_install_message:
39
+ rdoc_options: []
40
+ require_paths:
41
+ - lib
42
+ required_ruby_version: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - ! '>='
45
+ - !ruby/object:Gem::Version
46
+ version: '0'
47
+ required_rubygems_version: !ruby/object:Gem::Requirement
48
+ requirements:
49
+ - - ! '>='
50
+ - !ruby/object:Gem::Version
51
+ version: '0'
52
+ requirements: []
53
+ rubyforge_project:
54
+ rubygems_version: 2.2.2
55
+ signing_key:
56
+ specification_version: 4
57
+ summary: Semantic 'Design-By-Contract pre and post conditions'
58
+ test_files: []