rao-view_helper 0.0.3.pre

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: 81bd034327285b55e6e19e2c95f9be09a9039a1e
4
+ data.tar.gz: a412345624b0cfa576f3ee5aee0abbe5ce730ab4
5
+ SHA512:
6
+ metadata.gz: c4a4e8268d36834fb72752e4f33e7b57f794c6b1da8089f00aa855133274c7ca6d5b3569cd0b2b1dbde307c3dfde6fb80a7e55887045f1ac0f489564f101332b
7
+ data.tar.gz: dc13f024c1672b7b391761e76d63be5f378442577b8f8ec9927dd807c87883868faa89c0acb7946ac52db894973322b737ad876200e4eef38ba2ce0ba71e80bc
data/MIT-LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright 2018 Roberto Vasquez Angel
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,28 @@
1
+ # Rails Add-Ons View Helpers
2
+ Short description and motivation.
3
+
4
+ ## Usage
5
+ How to use my plugin.
6
+
7
+ ## Installation
8
+ Add this line to your application's Gemfile:
9
+
10
+ ```ruby
11
+ gem 'rao-view_helpers'
12
+ ```
13
+
14
+ And then execute:
15
+ ```bash
16
+ $ bundle
17
+ ```
18
+
19
+ Or install it yourself as:
20
+ ```bash
21
+ $ gem install rao-view_helpers
22
+ ```
23
+
24
+ ## Contributing
25
+ Contribution directions go here.
26
+
27
+ ## License
28
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
data/Rakefile ADDED
@@ -0,0 +1,25 @@
1
+ begin
2
+ require 'bundler/setup'
3
+ rescue LoadError
4
+ puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
5
+ end
6
+
7
+ require 'rdoc/task'
8
+
9
+ RDoc::Task.new(:rdoc) do |rdoc|
10
+ rdoc.rdoc_dir = 'rdoc'
11
+ rdoc.title = 'Rails Add-Ons View Helper'
12
+ rdoc.options << '--line-numbers'
13
+ rdoc.rdoc_files.include('README.md')
14
+ rdoc.rdoc_files.include('lib/**/*.rb')
15
+ end
16
+
17
+ APP_RAKEFILE = File.expand_path("../spec/dummy/Rakefile", __FILE__)
18
+ load 'rails/tasks/engine.rake'
19
+
20
+
21
+ load 'rails/tasks/statistics.rake'
22
+
23
+
24
+
25
+ require 'bundler/gem_tasks'
@@ -0,0 +1,17 @@
1
+ module Rao
2
+ module ViewHelper
3
+ module ControllerConcern
4
+ extend ActiveSupport::Concern
5
+
6
+ included do
7
+ def self.view_helper(klass, options = {})
8
+ method_name = options.delete(:as) || klass.name.underscore.gsub('/', '_')
9
+ define_method method_name do |context|
10
+ klass.new(context)
11
+ end
12
+ helper_method method_name
13
+ end
14
+ end
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,33 @@
1
+ module Rao
2
+ module ViewHelper
3
+ # Example:
4
+ #
5
+ # # app/view_helpers/unit_view_helper.rb
6
+ # class UnitViewHelper < ViewHelper::Base
7
+ # def cent_per_kwh(value)
8
+ # "#{value} ct/kWh"
9
+ # end
10
+ # end
11
+ #
12
+ # # app/controllers/application_controller.rb
13
+ # class ApplicationController < ActionController::Base
14
+ # view_helper UnitViewHelper, as: :unit_helper
15
+ # end
16
+ #
17
+ # # app/views/foo.html.erb
18
+ # <%= unit_helper(self).cent_per_kwh(4.52) %>
19
+ # => "4.52 ct/kWh"
20
+ #
21
+ class Base
22
+ def initialize(context)
23
+ @context = context
24
+ end
25
+
26
+ private
27
+
28
+ def c
29
+ @context
30
+ end
31
+ end
32
+ end
33
+ end
@@ -0,0 +1,3 @@
1
+ Rails.application.config.after_initialize do
2
+ ActionController::Base.send(:include, Rao::ViewHelper::ControllerConcern)
3
+ end
@@ -0,0 +1,9 @@
1
+ module Rao
2
+ module ViewHelper
3
+ module Configuration
4
+ def configure
5
+ yield self
6
+ end
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,7 @@
1
+ module Rao
2
+ module ViewHelper
3
+ class Engine < ::Rails::Engine
4
+ isolate_namespace Rao::ViewHelper
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,7 @@
1
+ require 'rao/version'
2
+
3
+ module Rao
4
+ module ViewHelper
5
+ VERSION = ::Rao::VERSION
6
+ end
7
+ end
@@ -0,0 +1,9 @@
1
+ require "rao/view_helper/version"
2
+ require "rao/view_helper/configuration"
3
+ require "rao/view_helper/engine"
4
+
5
+ module Rao
6
+ module ViewHelper
7
+ extend Configuration
8
+ end
9
+ end
@@ -0,0 +1 @@
1
+ require 'rao/view_helper'
metadata ADDED
@@ -0,0 +1,125 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rao-view_helper
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.3.pre
5
+ platform: ruby
6
+ authors:
7
+ - Roberto Vasquez Angel
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2018-12-20 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rao
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rspec-rails
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
+ - !ruby/object:Gem::Dependency
42
+ name: guard-rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: guard-bundler
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: pry
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ description:
84
+ email:
85
+ - roberto@vasquez-angel.de
86
+ executables: []
87
+ extensions: []
88
+ extra_rdoc_files: []
89
+ files:
90
+ - MIT-LICENSE
91
+ - README.md
92
+ - Rakefile
93
+ - app/concerns/rao/view_helper/controller_concern.rb
94
+ - app/view_helpers/rao/view_helper/base.rb
95
+ - config/initializers/hook_into_application_controller.rb
96
+ - lib/rao-view_helper.rb
97
+ - lib/rao/view_helper.rb
98
+ - lib/rao/view_helper/configuration.rb
99
+ - lib/rao/view_helper/engine.rb
100
+ - lib/rao/view_helper/version.rb
101
+ homepage: https://github.com/rao
102
+ licenses:
103
+ - MIT
104
+ metadata: {}
105
+ post_install_message:
106
+ rdoc_options: []
107
+ require_paths:
108
+ - lib
109
+ required_ruby_version: !ruby/object:Gem::Requirement
110
+ requirements:
111
+ - - ">="
112
+ - !ruby/object:Gem::Version
113
+ version: '0'
114
+ required_rubygems_version: !ruby/object:Gem::Requirement
115
+ requirements:
116
+ - - ">"
117
+ - !ruby/object:Gem::Version
118
+ version: 1.3.1
119
+ requirements: []
120
+ rubyforge_project:
121
+ rubygems_version: 2.6.14
122
+ signing_key:
123
+ specification_version: 4
124
+ summary: View Helper Objects for Ruby on Rails.
125
+ test_files: []