mores 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 269fad0933c752f23da5143998ece2f3119aa352
4
+ data.tar.gz: 18bc0ea2ed05e500dfb02f58d60e70973e3c1993
5
+ SHA512:
6
+ metadata.gz: 65b64690110292c93a9b8356bc334fa32d1c7a21871f10c5d040b77fae368b2a9668d9188a9ce228c9581349e8ca2225302a082dc84de83ebdb0fbd9a3d14bc2
7
+ data.tar.gz: 63cab271447562091b0ffb0f4bd0c70f4974f8ff08c28619e47014bd138b08cfca23cdc7bbd153a19b9c51f16e916d21279548aa06cd4a8191f090392a2951ba
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016 Michael Petter
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.
data/README.md ADDED
@@ -0,0 +1,42 @@
1
+ # Mores
2
+
3
+ [![Version](http://img.shields.io/gem/v/mores.svg) ](https://rubygems.org/gems/mores)
4
+ [![Travis ](https://img.shields.io/travis/michaeljpetter/mores/master.svg)](https://travis-ci.org/michaeljpetter/mores)
5
+
6
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/mores`. To experiment with that code, run `bin/console` for an interactive prompt.
7
+
8
+ TODO: Delete this and the text above, and describe your gem
9
+
10
+ ## Installation
11
+
12
+ Add this line to your application's Gemfile:
13
+
14
+ ```ruby
15
+ gem 'mores'
16
+ ```
17
+
18
+ And then execute:
19
+
20
+ $ bundle
21
+
22
+ Or install it yourself as:
23
+
24
+ $ gem install mores
25
+
26
+ ## Usage
27
+
28
+ TODO: Write usage instructions here
29
+
30
+ ## Development
31
+
32
+ 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.
33
+
34
+ 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).
35
+
36
+ ## Contributing
37
+
38
+ 1. Fork it ( https://github.com/[my-github-username]/mores/fork )
39
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
40
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
41
+ 4. Push to the branch (`git push origin my-new-feature`)
42
+ 5. Create a new Pull Request
@@ -0,0 +1,35 @@
1
+ module Mores::Chainable
2
+ def self.included(mod)
3
+ mod.extend ClassMethods
4
+ end
5
+
6
+ def **(chain)
7
+ @__chain = chain
8
+ self
9
+ end
10
+
11
+ private
12
+
13
+ def __chain
14
+ @__chain ||= self.class.__send__(:__default_chain)
15
+ end
16
+
17
+ module ClassMethods
18
+ def chain(name, &block)
19
+ __forwarder.__send__(:define_method, name) do |*args|
20
+ __chain.public_send(name, *args)
21
+ end
22
+ __default_chain.define_singleton_method(name, block || proc { |*| })
23
+ end
24
+
25
+ private
26
+
27
+ def __forwarder
28
+ @__forwarder ||= Module.new.tap { |m| include m }
29
+ end
30
+
31
+ def __default_chain
32
+ @__default_chain ||= Object.new
33
+ end
34
+ end
35
+ end
@@ -0,0 +1,3 @@
1
+ module Mores
2
+ VERSION = '0.1.0'
3
+ end
data/lib/mores.rb ADDED
@@ -0,0 +1,2 @@
1
+ require 'mores/version'
2
+ require 'mores/chainable'
data/mores.gemspec ADDED
@@ -0,0 +1,24 @@
1
+ require_relative 'lib/mores/version'
2
+
3
+ Gem::Specification.new do |gem|
4
+ gem.name = 'mores'
5
+ gem.version = Mores::VERSION
6
+ gem.author = 'Michael Petter'
7
+ gem.email = 'michaeljpetter@gmail.com'
8
+
9
+ gem.summary = 'Customary patterns for ruby'
10
+ gem.description = <<-END
11
+ Mores provides reusable patterns for ruby.
12
+ END
13
+ gem.homepage = 'http://github.com/michaeljpetter/mores'
14
+ gem.license = 'MIT'
15
+
16
+ gem.platform = Gem::Platform::RUBY
17
+ gem.files = Dir.glob %w(lib/**/* Gemfile *.gemspec LICENSE* README*)
18
+ gem.require_paths = ['lib']
19
+
20
+ gem.add_development_dependency 'bundler', '~> 1.7'
21
+ gem.add_development_dependency 'rake', '~> 10.0'
22
+ gem.add_development_dependency 'rspec', '~> 3.4'
23
+ gem.add_development_dependency 'rspec-its', '~> 1.2'
24
+ end
metadata ADDED
@@ -0,0 +1,107 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: mores
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Michael Petter
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-10-17 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.7'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.7'
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
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.4'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.4'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rspec-its
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '1.2'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '1.2'
69
+ description: |2
70
+ Mores provides reusable patterns for ruby.
71
+ email: michaeljpetter@gmail.com
72
+ executables: []
73
+ extensions: []
74
+ extra_rdoc_files: []
75
+ files:
76
+ - Gemfile
77
+ - LICENSE.txt
78
+ - README.md
79
+ - lib/mores.rb
80
+ - lib/mores/chainable.rb
81
+ - lib/mores/version.rb
82
+ - mores.gemspec
83
+ homepage: http://github.com/michaeljpetter/mores
84
+ licenses:
85
+ - MIT
86
+ metadata: {}
87
+ post_install_message:
88
+ rdoc_options: []
89
+ require_paths:
90
+ - lib
91
+ required_ruby_version: !ruby/object:Gem::Requirement
92
+ requirements:
93
+ - - ">="
94
+ - !ruby/object:Gem::Version
95
+ version: '0'
96
+ required_rubygems_version: !ruby/object:Gem::Requirement
97
+ requirements:
98
+ - - ">="
99
+ - !ruby/object:Gem::Version
100
+ version: '0'
101
+ requirements: []
102
+ rubyforge_project:
103
+ rubygems_version: 2.4.8
104
+ signing_key:
105
+ specification_version: 4
106
+ summary: Customary patterns for ruby
107
+ test_files: []