rails_decorate_factory 0.2.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: d6cefec4b466326fbbf872a068c3556829f35724
4
+ data.tar.gz: 7da7871f5500bb2a1c0a435be2e5e0328d9c3114
5
+ SHA512:
6
+ metadata.gz: aeaf6ecab791940a76c2b8f5098e3c77894625b599c822450b71123da6c9e1be3c9b63e23ecd6582089e4f711a1d790c69ab03cb958ba981a4b57212800a5c14
7
+ data.tar.gz: 47b6b8c6501f621dbaf8da9638419f486d025178078f60e24864557c05919cff14473a3f89d04546ad62928491dd99cdd85cd01bdd79fa4309edd7da942a38fe
@@ -0,0 +1 @@
1
+ 0.2.0
@@ -0,0 +1,11 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+
11
+ /.latest_version
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
@@ -0,0 +1,3 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.1.6
data/Capfile ADDED
@@ -0,0 +1,33 @@
1
+ # Load DSL and set up stages
2
+ require 'capistrano/setup'
3
+
4
+ # Include default deployment tasks
5
+ require 'capistrano/deploy'
6
+
7
+ require 'deplo'
8
+
9
+ # Include tasks from other gems included in your Gemfile
10
+ #
11
+ # For documentation on these, see for example:
12
+ #
13
+ # https://github.com/capistrano/rvm
14
+ # https://github.com/capistrano/rbenv
15
+ # https://github.com/capistrano/chruby
16
+ # https://github.com/capistrano/bundler
17
+ # https://github.com/capistrano/rails
18
+ # https://github.com/capistrano/passenger
19
+ #
20
+ # require 'capistrano/rvm'
21
+ # require 'capistrano/rbenv'
22
+ # require 'capistrano/chruby'
23
+ # require 'capistrano/bundler'
24
+ # require 'capistrano/rails/assets'
25
+ # require 'capistrano/rails/migrations'
26
+ # require 'capistrano/passenger'
27
+
28
+ # Load custom tasks from `lib/capistrano/tasks` if you have any defined
29
+ Dir.glob('lib/capistrano/tasks/*.rake').each { |r| import r }
30
+
31
+ Rake::Task[:production].invoke
32
+ invoke :production
33
+ set_cap_tasks_from_deplo
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in rails_decorate_factory.gemspec
4
+ gemspec
data/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015 Shu Fujita
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 all
13
+ 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 THE
21
+ SOFTWARE.
22
+
@@ -0,0 +1,39 @@
1
+ # RailsDecorateFactory
2
+
3
+ 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/rails_decorate_factory`. To experiment with that code, run `bin/console` for an interactive prompt.
4
+
5
+ TODO: Delete this and the text above, and describe your gem
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'rails_decorate_factory'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install rails_decorate_factory
22
+
23
+ ## Usage
24
+
25
+ TODO: Write usage instructions here
26
+
27
+ ## Development
28
+
29
+ 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. Run `bundle exec rails_decorate_factory` to use the code located in this directory, ignoring other installed copies of this gem.
30
+
31
+ 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).
32
+
33
+ ## Contributing
34
+
35
+ 1. Fork it ( https://github.com/[my-github-username]/rails_decorate_factory/fork )
36
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
37
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
38
+ 4. Push to the branch (`git push origin my-new-feature`)
39
+ 5. Create a new Pull Request
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "rails_decorate_factory"
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,38 @@
1
+ # config valid only for current version of Capistrano
2
+ lock '3.4.0'
3
+
4
+ set :application, 'gem_rails_decorate_factory'
5
+ set :repo_url, 'https://github.com/osorubeki-fujita/rails_decorate_factory.git'
6
+
7
+ set :pj_dir , ::File.expand_path( "#{ ::File.dirname( __FILE__ ) }/.." )
8
+ set :github_remote_name , :origin
9
+
10
+ # Default branch is :master
11
+ # ask :branch, `git rev-parse --abbrev-ref HEAD`.chomp
12
+
13
+ # Default deploy_to directory is /var/www/my_app_name
14
+ set :deploy_to, '/'
15
+
16
+ # Default value for :scm is :git
17
+ # set :scm, :git
18
+
19
+ # Default value for :format is :pretty
20
+ # set :format, :pretty
21
+
22
+ # Default value for :log_level is :debug
23
+ # set :log_level, :debug
24
+
25
+ # Default value for :pty is false
26
+ # set :pty, true
27
+
28
+ # Default value for :linked_files is []
29
+ # set :linked_files, fetch(:linked_files, []).push('config/database.yml', 'config/secrets.yml')
30
+
31
+ # Default value for linked_dirs is []
32
+ # set :linked_dirs, fetch(:linked_dirs, []).push('log', 'tmp/pids', 'tmp/cache', 'tmp/sockets', 'vendor/bundle', 'public/system')
33
+
34
+ # Default value for default_env is {}
35
+ # set :default_env, { path: "/opt/ruby/bin:$PATH" }
36
+
37
+ # Default value for keep_releases is 5
38
+ # set :keep_releases, 5
@@ -0,0 +1,61 @@
1
+ # server-based syntax
2
+ # ======================
3
+ # Defines a single server with a list of roles and multiple properties.
4
+ # You can define all roles on a single server, or split them:
5
+
6
+ # server 'example.com', user: 'deploy', roles: %w{app db web}, my_property: :my_value
7
+ # server 'example.com', user: 'deploy', roles: %w{app web}, other_property: :other_value
8
+ # server 'db.example.com', user: 'deploy', roles: %w{db}
9
+
10
+
11
+
12
+ # role-based syntax
13
+ # ==================
14
+
15
+ # Defines a role with one or multiple servers. The primary server in each
16
+ # group is considered to be the first unless any hosts have the primary
17
+ # property set. Specify the username and a domain or IP for the server.
18
+ # Don't use `:all`, it's a meta role.
19
+
20
+ # role :app, %w{deploy@example.com}, my_property: :my_value
21
+ # role :web, %w{user1@primary.com user2@additional.com}, other_property: :other_value
22
+ # role :db, %w{deploy@example.com}
23
+
24
+
25
+
26
+ # Configuration
27
+ # =============
28
+ # You can set any configuration variable like in config/deploy.rb
29
+ # These variables are then only loaded and set in this stage.
30
+ # For available Capistrano configuration variables see the documentation page.
31
+ # http://capistranorb.com/documentation/getting-started/configuration/
32
+ # Feel free to add new variables to customise your setup.
33
+
34
+
35
+
36
+ # Custom SSH Options
37
+ # ==================
38
+ # You may pass any option but keep in mind that net/ssh understands a
39
+ # limited set of options, consult the Net::SSH documentation.
40
+ # http://net-ssh.github.io/net-ssh/classes/Net/SSH.html#method-c-start
41
+ #
42
+ # Global options
43
+ # --------------
44
+ # set :ssh_options, {
45
+ # keys: %w(/home/rlisowski/.ssh/id_rsa),
46
+ # forward_agent: false,
47
+ # auth_methods: %w(password)
48
+ # }
49
+ #
50
+ # The server-based syntax can be used to override options:
51
+ # ------------------------------------
52
+ # server 'example.com',
53
+ # user: 'user_name',
54
+ # roles: %w{web app},
55
+ # ssh_options: {
56
+ # user: 'user_name', # overrides user setting above
57
+ # keys: %w(/home/user_name/.ssh/id_rsa),
58
+ # forward_agent: false,
59
+ # auth_methods: %w(publickey password)
60
+ # # password: 'please use keys'
61
+ # }
@@ -0,0 +1,61 @@
1
+ # server-based syntax
2
+ # ======================
3
+ # Defines a single server with a list of roles and multiple properties.
4
+ # You can define all roles on a single server, or split them:
5
+
6
+ # server 'example.com', user: 'deploy', roles: %w{app db web}, my_property: :my_value
7
+ # server 'example.com', user: 'deploy', roles: %w{app web}, other_property: :other_value
8
+ # server 'db.example.com', user: 'deploy', roles: %w{db}
9
+
10
+
11
+
12
+ # role-based syntax
13
+ # ==================
14
+
15
+ # Defines a role with one or multiple servers. The primary server in each
16
+ # group is considered to be the first unless any hosts have the primary
17
+ # property set. Specify the username and a domain or IP for the server.
18
+ # Don't use `:all`, it's a meta role.
19
+
20
+ # role :app, %w{deploy@example.com}, my_property: :my_value
21
+ # role :web, %w{user1@primary.com user2@additional.com}, other_property: :other_value
22
+ # role :db, %w{deploy@example.com}
23
+
24
+
25
+
26
+ # Configuration
27
+ # =============
28
+ # You can set any configuration variable like in config/deploy.rb
29
+ # These variables are then only loaded and set in this stage.
30
+ # For available Capistrano configuration variables see the documentation page.
31
+ # http://capistranorb.com/documentation/getting-started/configuration/
32
+ # Feel free to add new variables to customise your setup.
33
+
34
+
35
+
36
+ # Custom SSH Options
37
+ # ==================
38
+ # You may pass any option but keep in mind that net/ssh understands a
39
+ # limited set of options, consult the Net::SSH documentation.
40
+ # http://net-ssh.github.io/net-ssh/classes/Net/SSH.html#method-c-start
41
+ #
42
+ # Global options
43
+ # --------------
44
+ # set :ssh_options, {
45
+ # keys: %w(/home/rlisowski/.ssh/id_rsa),
46
+ # forward_agent: false,
47
+ # auth_methods: %w(password)
48
+ # }
49
+ #
50
+ # The server-based syntax can be used to override options:
51
+ # ------------------------------------
52
+ # server 'example.com',
53
+ # user: 'user_name',
54
+ # roles: %w{web app},
55
+ # ssh_options: {
56
+ # user: 'user_name', # overrides user setting above
57
+ # keys: %w(/home/user_name/.ssh/id_rsa),
58
+ # forward_agent: false,
59
+ # auth_methods: %w(publickey password)
60
+ # # password: 'please use keys'
61
+ # }
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "rails_decorate_factory"
@@ -0,0 +1,6 @@
1
+ [
2
+ 'version' ,
3
+ 'meta_class' , 'settings' , 'sub_decorator'
4
+ ].each do | filename |
5
+ require "rails_decorate_factory/#{ filename }"
6
+ end
@@ -0,0 +1,170 @@
1
+ class RailsDecorateFactory::MetaClass
2
+
3
+ def self.initialize_in_rails_app
4
+ self.class_eval do
5
+ # include ::Rails.application.routes.url_helpers
6
+
7
+ # @note link_to , link_to_unless_current , url_for , current_page?
8
+ @@action_view_base = ::ActionView::Base.new
9
+
10
+ # @return [::Module]
11
+ @@action_view_helpers = ::ActionView::Helpers::UrlHelper
12
+
13
+ # @return [::ActionController::Base]
14
+ # @note url_for
15
+ @@action_controller_base = ::ActionController::Base.new
16
+
17
+ # @return [::Module]
18
+ # @note url_for
19
+ @@url_helpers = ::Rails.application.routes.url_helpers
20
+
21
+ # @return [::ActionView::Base]
22
+ # @note オリジナルの helper メソッド
23
+ # @note url_for は利用不可
24
+ @@application_controller_helper = ::ApplicationController.helpers
25
+ end
26
+ end
27
+
28
+ def initialize( request )
29
+ @request = request
30
+ end
31
+
32
+ attr_reader :request
33
+
34
+ def path
35
+ recognize_path( @request.referer )
36
+ end
37
+
38
+ def current_host
39
+ @request.host
40
+ end
41
+
42
+ [ :controller , :action ].each do | method_base_name |
43
+ eval <<-DEF
44
+ def #{ method_base_name }_of( url )
45
+ begin
46
+ recognize_path( url )[ :#{ method_base_name } ]
47
+ rescue ::ActionController::RoutingError
48
+ nil
49
+ end
50
+ end
51
+
52
+ def current_#{ method_base_name }
53
+ current_position( :#{ method_base_name } )
54
+ end
55
+ DEF
56
+ end
57
+
58
+ def fullpath
59
+ @request.fullpath
60
+ end
61
+
62
+ def recognize_path( url )
63
+ ::Rails.application.routes.recognize_path( url )
64
+ end
65
+
66
+ private
67
+
68
+ def current_position( hash_key_name )
69
+ begin
70
+ return recognize_path( fullpath )[ hash_key_name.to_sym ]
71
+ rescue ::ActionController::RoutingError
72
+ return nil
73
+ end
74
+ end
75
+
76
+ def method_missing( method_name , *args )
77
+ if /\Acurrent_([a-z_]+)\Z/ =~ method_name.to_s
78
+ if args.blank?
79
+ current_position( $1 )
80
+ end
81
+ end
82
+ return super( method_name , args )
83
+ end
84
+
85
+ def default_url_options
86
+ ::ActionController::Base.default_url_options
87
+ end
88
+
89
+ def h_locals
90
+ {
91
+ request: @request ,
92
+ default_url_options: default_url_options ,
93
+ h: h ,
94
+ u: u ,
95
+ c: c ,
96
+ v: v
97
+ }
98
+ end
99
+
100
+ def v
101
+ @@action_view_base
102
+ end
103
+
104
+ def c
105
+ @@action_controller_base
106
+ end
107
+
108
+ def u
109
+ @@url_helpers
110
+ end
111
+
112
+ def url_helpers
113
+ @@url_helpers
114
+ end
115
+
116
+ def h
117
+ @@application_controller_helper
118
+ end
119
+
120
+ def current_page?( arg )
121
+ if arg.instance_of?( ::String )
122
+ fullpath == arg
123
+
124
+ elsif arg.instance_of?( ::Hash )
125
+ arg.all? { | key ,value |
126
+ current_info = send( "current_#{ key }" )
127
+
128
+ if value.instance_of?( ::Array )
129
+ value.flatten.map( &:to_s ).include?( current_info.to_s )
130
+ else
131
+ current_info.to_s == value.to_s
132
+ end
133
+ }
134
+
135
+ else
136
+ raise "Error"
137
+ end
138
+ end
139
+
140
+ class << self
141
+
142
+ private
143
+
144
+ def default_url_options
145
+ ::ActionController::Base.default_url_options
146
+ end
147
+
148
+ def v
149
+ @@action_view_base
150
+ end
151
+
152
+ def c
153
+ @@action_controller_base
154
+ end
155
+
156
+ def u
157
+ @@url_helpers
158
+ end
159
+
160
+ def url_helpers
161
+ @@url_helpers
162
+ end
163
+
164
+ def h
165
+ @@application_controller_helper
166
+ end
167
+
168
+ end
169
+
170
+ end
@@ -0,0 +1,14 @@
1
+ class RailsDecorateFactory::Settings < RailsDecorateFactory::MetaClass
2
+
3
+ def initialize( decorator , request = nil )
4
+ super( request )
5
+ @decorator = decorator
6
+ end
7
+
8
+ attr_reader :decorator
9
+
10
+ def object
11
+ @decorator.object
12
+ end
13
+
14
+ end
@@ -0,0 +1,31 @@
1
+ class RailsDecorateFactory::SubDecorator < RailsDecorateFactory::Settings
2
+
3
+ def on( request )
4
+ @request = request
5
+
6
+ return self
7
+ end
8
+
9
+ private
10
+
11
+ def method_missing( method_name , *args )
12
+ begin
13
+ @decorator.send( method_name , *args )
14
+ rescue
15
+ super( method_name , *args )
16
+ end
17
+ end
18
+
19
+ def h_this
20
+ { this: self }
21
+ end
22
+
23
+ def h_object
24
+ { o: object }
25
+ end
26
+
27
+ def h_decorator
28
+ { d: decorator }
29
+ end
30
+
31
+ end
@@ -0,0 +1,3 @@
1
+ module RailsDecorateFactory
2
+ VERSION = ::File.open( "#{ ::File.dirname( __FILE__ ) }/../../.current_version" , "r:utf-8" ).read.chomp
3
+ end
@@ -0,0 +1,37 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'rails_decorate_factory/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "rails_decorate_factory"
8
+ spec.version = RailsDecorateFactory::VERSION
9
+ spec.authors = ["Shu Fujita"]
10
+ spec.email = ["osorubeki.fujita@gmail.com"]
11
+
12
+ spec.summary = "This gem provides functions to render complex information on Rails applications."
13
+ # spec.description = %q{TODO: Write a longer description or delete this line.}
14
+ spec.homepage = "https://github.com/osorubeki-fujita/rails_decorate_factory"
15
+
16
+ # Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
17
+ # delete this section to allow pushing this gem to any host.
18
+ # if spec.respond_to?(:metadata)
19
+ # spec.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com'"
20
+ # else
21
+ # raise "RubyGems 2.0 or newer is required to protect against public gem pushes."
22
+ # end
23
+
24
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
25
+ spec.bindir = "exe"
26
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
27
+ spec.require_paths = ["lib"]
28
+
29
+ spec.add_development_dependency "bundler", "~> 1.9"
30
+ spec.add_development_dependency "rake", "~> 10.0"
31
+ spec.add_development_dependency "rspec"
32
+
33
+ spec.add_development_dependency "capistrano"
34
+ spec.add_development_dependency "deplo", ">= 0.1.4"
35
+
36
+ spec.add_runtime_dependency "draper"
37
+ end
metadata ADDED
@@ -0,0 +1,150 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rails_decorate_factory
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.2.0
5
+ platform: ruby
6
+ authors:
7
+ - Shu Fujita
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2015-07-26 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.9'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.9'
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: '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: capistrano
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: "deplo\x81"
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: 0.1.4
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: 0.1.4
83
+ - !ruby/object:Gem::Dependency
84
+ name: draper
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ description:
98
+ email:
99
+ - osorubeki.fujita@gmail.com
100
+ executables:
101
+ - rails_decorate_factory
102
+ extensions: []
103
+ extra_rdoc_files: []
104
+ files:
105
+ - ".current_version"
106
+ - ".gitignore"
107
+ - ".rspec"
108
+ - ".travis.yml"
109
+ - Capfile
110
+ - Gemfile
111
+ - LICENSE
112
+ - README.md
113
+ - Rakefile
114
+ - bin/console
115
+ - bin/setup
116
+ - config/deploy.rb
117
+ - config/deploy/production.rb
118
+ - config/deploy/staging.rb
119
+ - exe/rails_decorate_factory
120
+ - lib/rails_decorate_factory.rb
121
+ - lib/rails_decorate_factory/meta_class.rb
122
+ - lib/rails_decorate_factory/settings.rb
123
+ - lib/rails_decorate_factory/sub_decorator.rb
124
+ - lib/rails_decorate_factory/version.rb
125
+ - rails_decorate_factory.gemspec
126
+ homepage: https://github.com/osorubeki-fujita/rails_decorate_factory
127
+ licenses: []
128
+ metadata: {}
129
+ post_install_message:
130
+ rdoc_options: []
131
+ require_paths:
132
+ - lib
133
+ required_ruby_version: !ruby/object:Gem::Requirement
134
+ requirements:
135
+ - - ">="
136
+ - !ruby/object:Gem::Version
137
+ version: '0'
138
+ required_rubygems_version: !ruby/object:Gem::Requirement
139
+ requirements:
140
+ - - ">="
141
+ - !ruby/object:Gem::Version
142
+ version: '0'
143
+ requirements: []
144
+ rubyforge_project:
145
+ rubygems_version: 2.2.3
146
+ signing_key:
147
+ specification_version: 4
148
+ summary: This gem provides functions to render complex information on Rails applications.
149
+ test_files: []
150
+ has_rdoc: