contracts-non_intrusive 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: eed70c8cc2c5e2b424c61370619c71f27986ac19
4
+ data.tar.gz: 07b145093a7e96ac7196258a5da0dbfcccb7f171
5
+ SHA512:
6
+ metadata.gz: c5d265aac9459dbec9b8f8646cc7a4c6e140cd055a629dae6c21f7806c89807229fc71b64fd330a854f143a85662497863aa395183bbe0eb2a47838fd3bc5e81
7
+ data.tar.gz: 41ac3fe78d8c5dabb3e8495daa0bf6eb95bce748e03c49843e351358ba0d44a968d1854ec87d824edcc4d405f652b9a67b1238a65a988778a3f3bf91a2b1c84b
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
@@ -0,0 +1,13 @@
1
+ # Contributor Code of Conduct
2
+
3
+ As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
4
+
5
+ We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, age, or religion.
6
+
7
+ Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.
8
+
9
+ Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team.
10
+
11
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
12
+
13
+ This Code of Conduct is adapted from the [Contributor Covenant](http:contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in contracts-non_intrusive.gemspec
4
+ gemspec
5
+
6
+ gem "contracts"
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015 Oleksii Fedorov
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,70 @@
1
+ # Contracts::NonIntrusive
2
+
3
+ Less intrusive version of Contracts DSL. Allows to use static/dynamic code
4
+ analysis tools.
5
+
6
+ ## Installation
7
+
8
+ Add this line to your application's Gemfile:
9
+
10
+ ```ruby
11
+ gem 'contracts-non_intrusive'
12
+ ```
13
+
14
+ And then execute:
15
+
16
+ $ bundle
17
+
18
+ Or install it yourself as:
19
+
20
+ $ gem install contracts-non_intrusive
21
+
22
+ ## Usage
23
+
24
+ First, you should have some version of `contracts.ruby` installed.
25
+
26
+ ```ruby
27
+ require "contracts/non_intrusive"
28
+ C = Contracts
29
+
30
+ class Example
31
+ include Contracts::NonIntrusive
32
+
33
+ Contract(C::Num, C::Num => C::Num)[:add => :add__raw]
34
+ def add__raw(a, b)
35
+ a + b
36
+ end
37
+ end
38
+ ```
39
+
40
+ ### Singleton methods
41
+
42
+ This gem does not support (Yet?) singleton methods, workaround is to use
43
+ singleton class:
44
+
45
+ ```ruby
46
+ class Example
47
+ class << self
48
+ include Contracts::NonIntrusive
49
+
50
+ Contract(C::Num, C::Num => C::Num)[:add => :add__raw]
51
+ def add__raw(a, b)
52
+ a + b
53
+ end
54
+ end
55
+ end
56
+ ```
57
+
58
+ ## Development
59
+
60
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `bin/console` for an interactive prompt that will allow you to experiment.
61
+
62
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release` to create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
63
+
64
+ ## Contributing
65
+
66
+ 1. Fork it ( https://github.com/waterlink/contracts-non_intrusive/fork )
67
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
68
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
69
+ 4. Push to the branch (`git push origin my-new-feature`)
70
+ 5. Create a new Pull Request
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "contracts/non_intrusive"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
@@ -0,0 +1,7 @@
1
+ #!/bin/bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+
5
+ bundle install
6
+
7
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,24 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'contracts/non_intrusive/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "contracts-non_intrusive"
8
+ spec.version = Contracts::NonIntrusive::VERSION
9
+ spec.authors = ["Oleksii Fedorov"]
10
+ spec.email = ["waterlink000@gmail.com"]
11
+
12
+ spec.summary = %q{Non intrusive wrapper gem for contracts.ruby.}
13
+ spec.description = %q{This gem allows you to use static/dynamic analyzer tools together with contracts.ruby. It is achieved by allowing you to do the method mangling yourself.}
14
+ spec.homepage = "https://github.com/waterlink/contracts-non_intrusive"
15
+ spec.license = "MIT"
16
+
17
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
18
+ spec.bindir = "exe"
19
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
20
+ spec.require_paths = ["lib"]
21
+
22
+ spec.add_development_dependency "bundler", "~> 1.8"
23
+ spec.add_development_dependency "rake", "~> 10.0"
24
+ end
@@ -0,0 +1,25 @@
1
+ lib = File.expand_path('../../lib', __FILE__)
2
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
+
4
+ require "contracts/non_intrusive"
5
+ C = Contracts
6
+
7
+ class Example
8
+ include Contracts::NonIntrusive
9
+
10
+ Contract(C::Num, C::Num => C::Num)[:add => :add__raw]
11
+ def add__raw(a, b)
12
+ a + b
13
+ end
14
+ end
15
+
16
+ puts Example.new.add(3, 2)
17
+ # => 5
18
+
19
+ puts Example.new.add(2, "foo")
20
+ # : Contract violation for argument 2 of 2: (ParamContractError)
21
+ # Expected: Num,
22
+ # Actual: "foo"
23
+ # Value guarded in: Example::add
24
+ # With Contract: Num, Num => Num
25
+ # At: examples/add.rb:11
@@ -0,0 +1,27 @@
1
+ lib = File.expand_path('../../lib', __FILE__)
2
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
+
4
+ require "contracts/non_intrusive"
5
+ C = Contracts
6
+
7
+ class Example
8
+ class << self
9
+ include Contracts::NonIntrusive
10
+
11
+ Contract(C::Num, C::Num => C::Num)[:add => :add__raw]
12
+ def add__raw(a, b)
13
+ a + b
14
+ end
15
+ end
16
+ end
17
+
18
+ puts Example.add(3, 2)
19
+ # => 5
20
+
21
+ puts Example.add(2, "foo")
22
+ #: Contract violation for argument 2 of 2: (ParamContractError)
23
+ # Expected: Num,
24
+ # Actual: "foo"
25
+ # Value guarded in: Example::add
26
+ # With Contract: Num, Num => Num
27
+ # At: examples/singleton_add.rb:12
@@ -0,0 +1,42 @@
1
+ require "contracts/non_intrusive/version"
2
+ require "contracts"
3
+
4
+ module Contracts
5
+ class SimpleMethodReference < MethodReference
6
+ attr_reader :raw_name
7
+ def initialize(name, raw_name)
8
+ @name = name
9
+ @raw_name = raw_name
10
+ end
11
+
12
+ def set_method_once(value)
13
+ @method ||= value
14
+ end
15
+
16
+ def send_to(this, *args, &blk)
17
+ this.send(raw_name, *args, &blk)
18
+ end
19
+ end
20
+
21
+ module NonIntrusive
22
+ def self.included(base)
23
+ base.send(:extend, self)
24
+ end
25
+
26
+ def Contract(*contracts)
27
+ lambda do |method_map|
28
+ name = method_map.first.first
29
+ raw_name = method_map.first.last
30
+ simple_method = SimpleMethodReference.new(name, raw_name)
31
+ contract = nil
32
+
33
+ define_method(name) do |*args, &blk|
34
+ simple_method.set_method_once(method(raw_name))
35
+ klass = self.class == Class ? self : self.class
36
+ contract ||= Contract.new(klass, simple_method, *contracts)
37
+ contract.call_with(self, *args, &blk)
38
+ end
39
+ end
40
+ end
41
+ end
42
+ end
@@ -0,0 +1,5 @@
1
+ module Contracts
2
+ module NonIntrusive
3
+ VERSION = "0.1.0"
4
+ end
5
+ end
metadata ADDED
@@ -0,0 +1,86 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: contracts-non_intrusive
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Oleksii Fedorov
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2015-09-06 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.8'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.8'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ description: This gem allows you to use static/dynamic analyzer tools together with
42
+ contracts.ruby. It is achieved by allowing you to do the method mangling yourself.
43
+ email:
44
+ - waterlink000@gmail.com
45
+ executables: []
46
+ extensions: []
47
+ extra_rdoc_files: []
48
+ files:
49
+ - ".gitignore"
50
+ - CODE_OF_CONDUCT.md
51
+ - Gemfile
52
+ - LICENSE.txt
53
+ - README.md
54
+ - Rakefile
55
+ - bin/console
56
+ - bin/setup
57
+ - contracts-non_intrusive.gemspec
58
+ - examples/add.rb
59
+ - examples/singleton_add.rb
60
+ - lib/contracts/non_intrusive.rb
61
+ - lib/contracts/non_intrusive/version.rb
62
+ homepage: https://github.com/waterlink/contracts-non_intrusive
63
+ licenses:
64
+ - MIT
65
+ metadata: {}
66
+ post_install_message:
67
+ rdoc_options: []
68
+ require_paths:
69
+ - lib
70
+ required_ruby_version: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - ">="
73
+ - !ruby/object:Gem::Version
74
+ version: '0'
75
+ required_rubygems_version: !ruby/object:Gem::Requirement
76
+ requirements:
77
+ - - ">="
78
+ - !ruby/object:Gem::Version
79
+ version: '0'
80
+ requirements: []
81
+ rubyforge_project:
82
+ rubygems_version: 2.4.6
83
+ signing_key:
84
+ specification_version: 4
85
+ summary: Non intrusive wrapper gem for contracts.ruby.
86
+ test_files: []