disposable 0.0.1

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: 392f9c38f87256a9f23d4b15c5f1400ced554331
4
+ data.tar.gz: 415113cee0b7f66c9cd6be8504ebb1c2cc5602d6
5
+ SHA512:
6
+ metadata.gz: debc2221e53dd47bb8029053b490f16dc5f52e6bbfd1ac268dba5e5b7702643061dac9fb1b868b34ca13a4825d5db82d564f4e5bb84a332ae0f41e3446e3204e
7
+ data.tar.gz: cf1861a9c4c3cddcfb8d5a80821774b388ef8471940db2cc0c46b2609500985d8af5fa4d4f8456e9222c6b28a1b88d6192eb849fc66822b8b6108c11af83cef2
data/.gitignore ADDED
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in disposable.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2013 Nick Sutterer
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,58 @@
1
+ # Disposable
2
+
3
+
4
+ Facade existing (model) class
5
+ where to decorate old instances from collections?
6
+ option.invoice_template => .items
7
+
8
+
9
+
10
+ class Invoice
11
+ class Option
12
+ facades InvoiceOption
13
+
14
+ collection :items, original => :invoice_template
15
+ def items invoice_template.collect ..
16
+ - or: opt.invoice_tempate.facade.
17
+
18
+ end
19
+
20
+
21
+ * facades
22
+ * overriding public methods in facade
23
+ * temporary Refinements
24
+
25
+ * steps of refactoring
26
+
27
+
28
+ "explicit refactoring"
29
+
30
+
31
+
32
+ TODO: Write a gem description
33
+
34
+ ## Installation
35
+
36
+ Add this line to your application's Gemfile:
37
+
38
+ gem 'disposable'
39
+
40
+ And then execute:
41
+
42
+ $ bundle
43
+
44
+ Or install it yourself as:
45
+
46
+ $ gem install disposable
47
+
48
+ ## Usage
49
+
50
+ TODO: Write usage instructions here
51
+
52
+ ## Contributing
53
+
54
+ 1. Fork it
55
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
56
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
57
+ 4. Push to the branch (`git push origin my-new-feature`)
58
+ 5. Create new Pull Request
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
data/STUFF ADDED
@@ -0,0 +1,4 @@
1
+ USE CASE:
2
+
3
+ <% client.invoices.outstanding.each do |invoice| %>
4
+ <%= link_to invoice.invoice_number, {:controller => "party", :action => "invoice_show", :id => invoice.id, :entity_instance_id => client.party, :entity_type_id => EntityType::PARTY}, :onclick => "event.cancelBubble=true;" %> <%= number_to_currency(invoice.balance_out)
@@ -0,0 +1,23 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'disposable/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "disposable"
8
+ spec.version = Disposable::VERSION
9
+ spec.authors = ["Nick Sutterer"]
10
+ spec.email = ["apotonick@gmail.com"]
11
+ spec.description = %q{Domain-Oriented Refactoring Framework.}
12
+ spec.summary = %q{Domain-Oriented Refactoring Framework.}
13
+ spec.homepage = ""
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files`.split($/)
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.3"
22
+ spec.add_development_dependency "rake"
23
+ end
data/lib/disposable.rb ADDED
@@ -0,0 +1,7 @@
1
+ require "disposable/version"
2
+
3
+ module Disposable
4
+ # Your code goes here...
5
+ end
6
+
7
+ require "disposable/facade"
@@ -0,0 +1,25 @@
1
+ require "delegate"
2
+
3
+ module Disposable
4
+ class Facade < SimpleDelegator
5
+ module Facadable
6
+ def facade
7
+ # TODO: check if already facaded.
8
+ self.class.facade_class.new(self)
9
+ end
10
+ end
11
+
12
+ def self.facades(klass)
13
+ facade_class = self
14
+
15
+ klass.instance_eval do
16
+ include Facadable
17
+ @_facade_class = facade_class
18
+
19
+ def facade_class
20
+ @_facade_class
21
+ end
22
+ end # TODO: use hooks.
23
+ end
24
+ end
25
+ end
@@ -0,0 +1,3 @@
1
+ module Disposable
2
+ VERSION = "0.0.1"
3
+ end
metadata ADDED
@@ -0,0 +1,82 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: disposable
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Nick Sutterer
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-11-20 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.3'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '1.3'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '>='
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '>='
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ description: Domain-Oriented Refactoring Framework.
42
+ email:
43
+ - apotonick@gmail.com
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - .gitignore
49
+ - Gemfile
50
+ - LICENSE.txt
51
+ - README.md
52
+ - Rakefile
53
+ - STUFF
54
+ - disposable.gemspec
55
+ - lib/disposable.rb
56
+ - lib/disposable/facade.rb
57
+ - lib/disposable/version.rb
58
+ homepage: ''
59
+ licenses:
60
+ - MIT
61
+ metadata: {}
62
+ post_install_message:
63
+ rdoc_options: []
64
+ require_paths:
65
+ - lib
66
+ required_ruby_version: !ruby/object:Gem::Requirement
67
+ requirements:
68
+ - - '>='
69
+ - !ruby/object:Gem::Version
70
+ version: '0'
71
+ required_rubygems_version: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - '>='
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ requirements: []
77
+ rubyforge_project:
78
+ rubygems_version: 2.0.3
79
+ signing_key:
80
+ specification_version: 4
81
+ summary: Domain-Oriented Refactoring Framework.
82
+ test_files: []