uber_presenter 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (79) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +11 -0
  3. data/.idea/.generators +8 -0
  4. data/.idea/.name +1 -0
  5. data/.idea/.rakeTasks +7 -0
  6. data/.idea/encodings.xml +5 -0
  7. data/.idea/inspectionProfiles/Project_Default.xml +11 -0
  8. data/.idea/inspectionProfiles/profiles_settings.xml +7 -0
  9. data/.idea/misc.xml +5 -0
  10. data/.idea/modules.xml +9 -0
  11. data/.idea/scopes/scope_settings.xml +5 -0
  12. data/.idea/uber_presenter.iml +131 -0
  13. data/.idea/vcs.xml +7 -0
  14. data/.idea/workspace.xml +727 -0
  15. data/Gemfile +2 -0
  16. data/Gemfile.lock +93 -0
  17. data/MIT-LICENSE +20 -0
  18. data/README.md +25 -0
  19. data/README.rdoc +3 -0
  20. data/Rakefile +34 -0
  21. data/app/assets/.keep +0 -0
  22. data/bin/rails +12 -0
  23. data/lib/generators/presenter/USAGE +8 -0
  24. data/lib/generators/presenter/presenter_generator.rb +17 -0
  25. data/lib/generators/presenter/templates/presenter.rb +0 -0
  26. data/lib/generators/uber_presenter/install_generator.rb +14 -0
  27. data/lib/generators/uber_presenter/templates/.keep +0 -0
  28. data/lib/tasks/uber_presenter_tasks.rake +4 -0
  29. data/lib/uber_presenter.rb +6 -0
  30. data/lib/uber_presenter/base.rb +43 -0
  31. data/lib/uber_presenter/engine.rb +5 -0
  32. data/lib/uber_presenter/version.rb +3 -0
  33. data/test/dummy/README.rdoc +28 -0
  34. data/test/dummy/Rakefile +6 -0
  35. data/test/dummy/app/assets/images/.keep +0 -0
  36. data/test/dummy/app/assets/javascripts/application.js +13 -0
  37. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  38. data/test/dummy/app/controllers/application_controller.rb +5 -0
  39. data/test/dummy/app/controllers/concerns/.keep +0 -0
  40. data/test/dummy/app/helpers/application_helper.rb +2 -0
  41. data/test/dummy/app/mailers/.keep +0 -0
  42. data/test/dummy/app/models/.keep +0 -0
  43. data/test/dummy/app/models/concerns/.keep +0 -0
  44. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  45. data/test/dummy/bin/bundle +3 -0
  46. data/test/dummy/bin/rails +4 -0
  47. data/test/dummy/bin/rake +4 -0
  48. data/test/dummy/config.ru +4 -0
  49. data/test/dummy/config/application.rb +23 -0
  50. data/test/dummy/config/boot.rb +5 -0
  51. data/test/dummy/config/database.yml +25 -0
  52. data/test/dummy/config/environment.rb +5 -0
  53. data/test/dummy/config/environments/development.rb +37 -0
  54. data/test/dummy/config/environments/production.rb +82 -0
  55. data/test/dummy/config/environments/test.rb +39 -0
  56. data/test/dummy/config/initializers/assets.rb +8 -0
  57. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  58. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  59. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  60. data/test/dummy/config/initializers/inflections.rb +16 -0
  61. data/test/dummy/config/initializers/mime_types.rb +4 -0
  62. data/test/dummy/config/initializers/session_store.rb +3 -0
  63. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  64. data/test/dummy/config/locales/en.yml +23 -0
  65. data/test/dummy/config/routes.rb +4 -0
  66. data/test/dummy/config/secrets.yml +22 -0
  67. data/test/dummy/lib/assets/.keep +0 -0
  68. data/test/dummy/log/.keep +0 -0
  69. data/test/dummy/public/404.html +67 -0
  70. data/test/dummy/public/422.html +67 -0
  71. data/test/dummy/public/500.html +66 -0
  72. data/test/dummy/public/favicon.ico +0 -0
  73. data/test/integration/navigation_test.rb +10 -0
  74. data/test/lib/generators/uber_presenter/install_generator_test.rb +16 -0
  75. data/test/lib/generators/uber_presenter/presenter_generator_test.rb +16 -0
  76. data/test/test_helper.rb +15 -0
  77. data/test/uber_presenter_test.rb +7 -0
  78. data/uber_presenter.gemspec +27 -0
  79. metadata +208 -0
data/Gemfile ADDED
@@ -0,0 +1,2 @@
1
+ source 'https://rubygems.org'
2
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,93 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ uber_presenter (0.0.2)
5
+ memoist (~> 0.9.3)
6
+ rails (>= 3.2.12)
7
+ railties (>= 3.2.6)
8
+
9
+ GEM
10
+ remote: https://rubygems.org/
11
+ specs:
12
+ actionmailer (4.1.4)
13
+ actionpack (= 4.1.4)
14
+ actionview (= 4.1.4)
15
+ mail (~> 2.5.4)
16
+ actionpack (4.1.4)
17
+ actionview (= 4.1.4)
18
+ activesupport (= 4.1.4)
19
+ rack (~> 1.5.2)
20
+ rack-test (~> 0.6.2)
21
+ actionview (4.1.4)
22
+ activesupport (= 4.1.4)
23
+ builder (~> 3.1)
24
+ erubis (~> 2.7.0)
25
+ activemodel (4.1.4)
26
+ activesupport (= 4.1.4)
27
+ builder (~> 3.1)
28
+ activerecord (4.1.4)
29
+ activemodel (= 4.1.4)
30
+ activesupport (= 4.1.4)
31
+ arel (~> 5.0.0)
32
+ activesupport (4.1.4)
33
+ i18n (~> 0.6, >= 0.6.9)
34
+ json (~> 1.7, >= 1.7.7)
35
+ minitest (~> 5.1)
36
+ thread_safe (~> 0.1)
37
+ tzinfo (~> 1.1)
38
+ arel (5.0.1.20140414130214)
39
+ builder (3.2.2)
40
+ erubis (2.7.0)
41
+ hike (1.2.3)
42
+ i18n (0.6.11)
43
+ json (1.8.1)
44
+ mail (2.5.4)
45
+ mime-types (~> 1.16)
46
+ treetop (~> 1.4.8)
47
+ memoist (0.9.3)
48
+ mime-types (1.25.1)
49
+ minitest (5.4.0)
50
+ multi_json (1.10.1)
51
+ polyglot (0.3.5)
52
+ rack (1.5.2)
53
+ rack-test (0.6.2)
54
+ rack (>= 1.0)
55
+ rails (4.1.4)
56
+ actionmailer (= 4.1.4)
57
+ actionpack (= 4.1.4)
58
+ actionview (= 4.1.4)
59
+ activemodel (= 4.1.4)
60
+ activerecord (= 4.1.4)
61
+ activesupport (= 4.1.4)
62
+ bundler (>= 1.3.0, < 2.0)
63
+ railties (= 4.1.4)
64
+ sprockets-rails (~> 2.0)
65
+ railties (4.1.4)
66
+ actionpack (= 4.1.4)
67
+ activesupport (= 4.1.4)
68
+ rake (>= 0.8.7)
69
+ thor (>= 0.18.1, < 2.0)
70
+ rake (10.3.2)
71
+ sprockets (2.12.1)
72
+ hike (~> 1.2)
73
+ multi_json (~> 1.0)
74
+ rack (~> 1.0)
75
+ tilt (~> 1.1, != 1.3.0)
76
+ sprockets-rails (2.1.3)
77
+ actionpack (>= 3.0)
78
+ activesupport (>= 3.0)
79
+ sprockets (~> 2.8)
80
+ thor (0.19.1)
81
+ thread_safe (0.3.4)
82
+ tilt (1.4.1)
83
+ treetop (1.4.15)
84
+ polyglot
85
+ polyglot (>= 0.3.1)
86
+ tzinfo (1.2.1)
87
+ thread_safe (~> 0.1)
88
+
89
+ PLATFORMS
90
+ ruby
91
+
92
+ DEPENDENCIES
93
+ uber_presenter!
data/MIT-LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright 2014 Alexander Gorbunov
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,25 @@
1
+ # UberPresenter
2
+
3
+ UberPresenter это библиотека для огранизации презентеров в проектах на Ruby On Rails
4
+
5
+ ## Установка (Installation)
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'uber-presenter'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ To keep your code organized, create a directory “app/presenters” in your project and add this line to your application.rb:
16
+
17
+ config.autoload_paths << Rails.root.join("app", "presenters").to_s
18
+
19
+ ## Для разработчиков (Contributing)
20
+
21
+ 1. Fork it
22
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
23
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
24
+ 4. Push to the branch (`git push origin my-new-feature`)
25
+ 5. Create new Pull Request
data/README.rdoc ADDED
@@ -0,0 +1,3 @@
1
+ = UberPresenter
2
+
3
+ This project rocks and uses MIT-LICENSE.
data/Rakefile ADDED
@@ -0,0 +1,34 @@
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 = 'UberPresenter'
12
+ rdoc.options << '--line-numbers'
13
+ rdoc.rdoc_files.include('README.rdoc')
14
+ rdoc.rdoc_files.include('lib/**/*.rb')
15
+ end
16
+
17
+ APP_RAKEFILE = File.expand_path('../test/dummy/Rakefile', __FILE__)
18
+ load 'rails/tasks/engine.rake'
19
+
20
+
21
+
22
+ Bundler::GemHelper.install_tasks
23
+
24
+ require 'rake/testtask'
25
+
26
+ Rake::TestTask.new(:test) do |t|
27
+ t.libs << 'lib'
28
+ t.libs << 'test'
29
+ t.pattern = 'test/**/*_test.rb'
30
+ t.verbose = false
31
+ end
32
+
33
+
34
+ task default: :test
data/app/assets/.keep ADDED
File without changes
data/bin/rails ADDED
@@ -0,0 +1,12 @@
1
+ #!/usr/bin/env ruby
2
+ # This command will automatically be run when you run "rails" with Rails 4 gems installed from the root of your application.
3
+
4
+ ENGINE_ROOT = File.expand_path('../..', __FILE__)
5
+ ENGINE_PATH = File.expand_path('../../lib/uber_presenter/engine', __FILE__)
6
+
7
+ # Set up gems listed in the Gemfile.
8
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
9
+ require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE'])
10
+
11
+ require 'rails/all'
12
+ require 'rails/engine/commands'
@@ -0,0 +1,8 @@
1
+ Description:
2
+ Explain the generator
3
+
4
+ Example:
5
+ rails generate presenter Thing
6
+
7
+ This will create:
8
+ what/will/it/create
@@ -0,0 +1,17 @@
1
+ class PresenterGenerator < Rails::Generators::Base
2
+ source_root File.expand_path('../templates', __FILE__)
3
+ argument :presenter_name, type: :string
4
+
5
+ def generate
6
+ name = presenter_name.singularize
7
+ create_file "app/presenters/#{name.classify}.rb", <<-FILE
8
+ class #{name.classify} < UberPresenter::Base
9
+ # def posts
10
+ # # ...
11
+ # end
12
+ # Кэширование результатов
13
+ # memoist :method
14
+ end
15
+ FILE
16
+ end
17
+ end
File without changes
@@ -0,0 +1,14 @@
1
+ module UberPresenter
2
+ class InstallGenerator < Rails::Generators::Base
3
+ source_root File.expand_path('../templates', __FILE__)
4
+
5
+ desc 'Включает поддержку презентеров'
6
+
7
+ def install
8
+ copy_file '.keep', 'app/presenters/.keep'
9
+ inject_into_file('config/application.rb', after: "class Application < Rails::Application\n") do
10
+ " config.autoload_paths << Rails.root.join('app', 'presenters').to_s\n"
11
+ end
12
+ end
13
+ end
14
+ end
File without changes
@@ -0,0 +1,4 @@
1
+ # desc "Explaining what the task does"
2
+ # task :uber_presenter do
3
+ # # Task goes here
4
+ # end
@@ -0,0 +1,6 @@
1
+ require 'uber_presenter/engine'
2
+
3
+ module UberPresenter
4
+ autoload :Base, 'uber_presenter/base'
5
+ require 'memoist'
6
+ end
@@ -0,0 +1,43 @@
1
+ # class UberPresenter::PresenterFactory
2
+ class UberPresenter::Base
3
+ extend Memoist
4
+
5
+ # Доступ к объекту контроллера
6
+ attr_reader :controller
7
+ delegate :params, :action_name, :controller_name, to: :controller
8
+
9
+ class << self
10
+ # Создаем экземпляр презенера, уникальный для объекта controller
11
+ #
12
+ # @param [Object] controller
13
+ # @param [Object] args Набор аргументов для презентора
14
+ # @return [Object] Экземпляр презентера
15
+ #
16
+ def new(controller, *args)
17
+ storage = storage_from(controller)
18
+ (instance = storage[self.name]).present? ? instance : (storage[self.name] = super(*args)).tap { |inst| inst.instance_variable_set(:@controller, controller) }
19
+ end
20
+
21
+ # Получаем хранилище презенторов из контроллера controller
22
+ #
23
+ # @param [Object] controller
24
+ # @return [Hash]
25
+ #
26
+ def storage_from(controller)
27
+ controller.instance_variable_set(:@presenters, {}) unless controller.instance_variable_names.include?('@presenters')
28
+ controller.instance_variable_get(:@presenters)
29
+ end
30
+ end
31
+
32
+ # Получаем хранилище презенторов
33
+ #
34
+ # @return [Hash]
35
+ #
36
+ def presenters
37
+ @presenters.present? ? @presenters : self.class.storage_from(controller)
38
+ end
39
+
40
+ def inspect
41
+ "#<#{self.class.name}:#{self.object_id} @controller=#<#{controller.class.name}:#{controller.object_id}>>"
42
+ end
43
+ end
@@ -0,0 +1,5 @@
1
+ module UberPresenter
2
+ class Engine < ::Rails::Engine
3
+ isolate_namespace UberPresenter
4
+ end
5
+ end
@@ -0,0 +1,3 @@
1
+ module UberPresenter
2
+ VERSION = '0.0.2'
3
+ end
@@ -0,0 +1,28 @@
1
+ == README
2
+
3
+ This README would normally document whatever steps are necessary to get the
4
+ application up and running.
5
+
6
+ Things you may want to cover:
7
+
8
+ * Ruby version
9
+
10
+ * System dependencies
11
+
12
+ * Configuration
13
+
14
+ * Database creation
15
+
16
+ * Database initialization
17
+
18
+ * How to run the test suite
19
+
20
+ * Services (job queues, cache servers, search engines, etc.)
21
+
22
+ * Deployment instructions
23
+
24
+ * ...
25
+
26
+
27
+ Please feel free to use a different markup language if you do not plan to run
28
+ <tt>rake doc:app</tt>.
@@ -0,0 +1,6 @@
1
+ # Add your own tasks in files placed in lib/tasks ending in .rake,
2
+ # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
3
+
4
+ require File.expand_path('../config/application', __FILE__)
5
+
6
+ Rails.application.load_tasks
File without changes
@@ -0,0 +1,13 @@
1
+ // This is a manifest file that'll be compiled into application.js, which will include all the files
2
+ // listed below.
3
+ //
4
+ // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
5
+ // or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path.
6
+ //
7
+ // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
8
+ // compiled file.
9
+ //
10
+ // Read Sprockets README (https://github.com/sstephenson/sprockets#sprockets-directives) for details
11
+ // about supported directives.
12
+ //
13
+ //= require_tree .
@@ -0,0 +1,15 @@
1
+ /*
2
+ * This is a manifest file that'll be compiled into application.css, which will include all the files
3
+ * listed below.
4
+ *
5
+ * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6
+ * or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
7
+ *
8
+ * You're free to add application-wide styles to this file and they'll appear at the bottom of the
9
+ * compiled file so the styles you add here take precedence over styles defined in any styles
10
+ * defined in the other CSS/SCSS files in this directory. It is generally better to create a new
11
+ * file per style scope.
12
+ *
13
+ *= require_tree .
14
+ *= require_self
15
+ */
@@ -0,0 +1,5 @@
1
+ class ApplicationController < ActionController::Base
2
+ # Prevent CSRF attacks by raising an exception.
3
+ # For APIs, you may want to use :null_session instead.
4
+ protect_from_forgery with: :exception
5
+ end
File without changes
@@ -0,0 +1,2 @@
1
+ module ApplicationHelper
2
+ end
File without changes
File without changes
File without changes
@@ -0,0 +1,14 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Dummy</title>
5
+ <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
6
+ <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
7
+ <%= csrf_meta_tags %>
8
+ </head>
9
+ <body>
10
+
11
+ <%= yield %>
12
+
13
+ </body>
14
+ </html>
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
3
+ load Gem.bin_path('bundler', 'bundle')
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+ APP_PATH = File.expand_path('../../config/application', __FILE__)
3
+ require_relative '../config/boot'
4
+ require 'rails/commands'