characterize 0.0.1 → 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 (59) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -0
  3. data/Gemfile +3 -1
  4. data/Rakefile +16 -0
  5. data/lib/characterize/controller.rb +41 -47
  6. data/lib/characterize/railtie.rb +25 -0
  7. data/lib/characterize/version.rb +1 -1
  8. data/lib/characterize.rb +1 -14
  9. data/test/characterize_test.rb +8 -0
  10. data/test/internal/README.rdoc +28 -0
  11. data/test/internal/Rakefile +6 -0
  12. data/test/internal/app/assets/images/.keep +0 -0
  13. data/test/internal/app/assets/javascripts/application.js +13 -0
  14. data/test/internal/app/assets/stylesheets/application.css +15 -0
  15. data/test/internal/app/characters/special_character.rb +5 -0
  16. data/test/internal/app/characters/user_character.rb +2 -0
  17. data/test/internal/app/controllers/application_controller.rb +5 -0
  18. data/test/internal/app/controllers/concerns/.keep +0 -0
  19. data/test/internal/app/controllers/users_controller.rb +6 -0
  20. data/test/internal/app/helpers/application_helper.rb +2 -0
  21. data/test/internal/app/mailers/.keep +0 -0
  22. data/test/internal/app/models/.keep +0 -0
  23. data/test/internal/app/models/concerns/.keep +0 -0
  24. data/test/internal/app/models/user.rb +2 -0
  25. data/test/internal/app/views/layouts/application.html.erb +13 -0
  26. data/test/internal/app/views/users/show.html.erb +2 -0
  27. data/test/internal/bin/bundle +3 -0
  28. data/test/internal/bin/rails +4 -0
  29. data/test/internal/bin/rake +4 -0
  30. data/test/internal/config/application.rb +29 -0
  31. data/test/internal/config/boot.rb +5 -0
  32. data/test/internal/config/database.yml +25 -0
  33. data/test/internal/config/environment.rb +5 -0
  34. data/test/internal/config/environments/development.rb +37 -0
  35. data/test/internal/config/environments/production.rb +83 -0
  36. data/test/internal/config/environments/test.rb +39 -0
  37. data/test/internal/config/initializers/backtrace_silencers.rb +7 -0
  38. data/test/internal/config/initializers/cookies_serializer.rb +3 -0
  39. data/test/internal/config/initializers/filter_parameter_logging.rb +4 -0
  40. data/test/internal/config/initializers/inflections.rb +16 -0
  41. data/test/internal/config/initializers/mime_types.rb +4 -0
  42. data/test/internal/config/initializers/session_store.rb +3 -0
  43. data/test/internal/config/initializers/wrap_parameters.rb +14 -0
  44. data/test/internal/config/locales/en.yml +23 -0
  45. data/test/internal/config/routes.rb +3 -0
  46. data/test/internal/config/secrets.yml +22 -0
  47. data/test/internal/config.ru +4 -0
  48. data/test/internal/db/.keep +0 -0
  49. data/test/internal/db/schema.rb +7 -0
  50. data/test/internal/db/seeds.rb +1 -0
  51. data/test/internal/lib/assets/.keep +0 -0
  52. data/test/internal/log/.gitignore +1 -0
  53. data/test/internal/log/.keep +0 -0
  54. data/test/internal/public/404.html +67 -0
  55. data/test/internal/public/422.html +67 -0
  56. data/test/internal/public/500.html +66 -0
  57. data/test/internal/public/favicon.ico +0 -0
  58. data/test/test_helper.rb +15 -0
  59. metadata +104 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 10c960deb342856cf94ab657c4ba6836ff586e04
4
- data.tar.gz: 7d64cdc96d3994ea7d8ef8cb29d3f38c5c791030
3
+ metadata.gz: 00e40cca8ad8624b4a6ab85ab521ecdb08f2f689
4
+ data.tar.gz: c791593bc4a01b224dfc37ee944417239b6e10a7
5
5
  SHA512:
6
- metadata.gz: ecaf97dbfeb7db99663c858993b89c62c3eb2c29eaa1e4866c4626fbe11fc2083fc11ef654f8bc474e115f0c53f2d8aae5a40f8005368efc320d3d2e5b851370
7
- data.tar.gz: 8981402f20455d18a3d44a1f0654384520b650eac8a09179510e1dbda9131cc2c1f467b2ebe45b941ef51329d2ec44c3a323d01ff46b91a2cc47f61e47549bee
6
+ metadata.gz: e690b1251155f2cab4e14ae3a021efa95f68a99ad5ec2881032f7a3b774091b1eecdc45e1beb0ae6760d04a363781165ea6c683e72c68f117a6e824da2a5edf0
7
+ data.tar.gz: f1613c4bd503315e41676a77daa47fe76a32c0a4fc460cb79d973000dc58df6d33a972f78a3c9e1b6ba555fe01ff01fdf9f210758c04b92f98f2255d371bc797
data/.gitignore CHANGED
@@ -9,6 +9,7 @@ _yardoc
9
9
  coverage
10
10
  doc/
11
11
  lib/bundler/man
12
+ *.sqlite3
12
13
  pkg
13
14
  rdoc
14
15
  spec/reports
data/Gemfile CHANGED
@@ -4,5 +4,7 @@ source 'https://rubygems.org'
4
4
  gemspec
5
5
 
6
6
  group :test do
7
- gem 'minitest'
7
+ gem 'sqlite3'
8
+ gem 'rails'
9
+ gem 'minitest-spec-rails'
8
10
  end
data/Rakefile CHANGED
@@ -1 +1,17 @@
1
+ #!/usr/bin/env rake
1
2
  require "bundler/gem_tasks"
3
+ require 'rake/testtask'
4
+
5
+ Rake::TestTask.new do |t|
6
+ t.libs << 'test'
7
+ t.test_files = FileList['test/*_test.rb']
8
+ t.ruby_opts = ["-w"]
9
+ t.verbose = true
10
+ end
11
+
12
+ task :setup_db do |task|
13
+ system("cd test/internal && RAILS_ENV=test bundle exec rake db:reset")
14
+ end
15
+ Rake::Task[:test].enhance [:setup_db]
16
+
17
+ task :default => :test
@@ -7,67 +7,61 @@ module Characterize
7
7
  end
8
8
 
9
9
  private
10
+
10
11
  def characterize(obj, *mods)
11
12
  obj.__set_view__(view_context).cast_as(*mods)
12
13
  obj
13
14
  end
15
+
16
+ def characters_for_action(object_name, action_name)
17
+ if self.respond_to?("#{object_name}_#{action_name}_characters") && action_methods.include?(action_name.to_s)
18
+ Array(self.send("#{object_name}_#{action_name}_characters"))
19
+ else
20
+ self.send("default_#{object_name}_characters")
21
+ end
22
+ end
23
+
24
+ def self.view_features
25
+ [::Characterize::FeatureControls]
26
+ end
14
27
  end
15
28
 
16
29
  module ControllerMacros
17
30
 
18
31
  private
19
32
 
20
- def characterize(*symbols_strings_or_classes)
21
- options = symbols_strings_or_classes.empty? ? [self] : symbols_strings_or_classes
22
- options.map do |identifier|
23
- characterize_item = Converter.new(identifier)
24
- object_name = characterize_item.to_object_name
25
- mod = Module.new
33
+ def characterize(*options)
34
+ object_name = options.shift
35
+ actions_hash = options.last
36
+
37
+ object_constant_name = object_name.to_s.gsub(/(?:^|_)([a-z])/){ $1.upcase }.gsub('/','::')
38
+ default_characters = actions_hash.delete(:default) || ["::#{object_constant_name}Character"]
39
+
40
+ mod = Module.new
41
+ mod.module_eval %{
42
+ def #{object_name}
43
+ return @#{object_name} if defined?(@#{object_name})
44
+ @#{object_name} = characterize(load_#{object_name}, *characters_for_action(:#{object_name}, action_name))
45
+ end
46
+
47
+ def load_#{object_name}
48
+ #{object_constant_name}.find(params[:id])
49
+ end
50
+
51
+ def default_#{object_name}_characters
52
+ [#{default_characters.map(&:to_s).join(', ')}]
53
+ end
54
+ }
55
+ actions_hash.each_pair do |action_name, characters|
26
56
  mod.module_eval %{
27
- def #{object_name}
28
- @#{object_name} ||= characterize(load_#{object_name}, *characterize_#{object_name}_modules)
29
- end
30
-
31
- def load_#{object_name}
32
- #{characterize_item.to_constant_name}.find(params[:id])
33
- end
34
-
35
- def characterize_#{object_name}_modules
36
- [::Characterize::FeatureControls] + #{object_name}_modules
37
- end
38
-
39
- def #{object_name}_modules
40
- [#{object_name}_default_character]
41
- end
42
-
43
- def #{object_name}_default_character
44
- #{Converter.new(object_name).to_constant_name}Character
57
+ def #{object_name}_#{action_name}_characters
58
+ [#{characters.map(&:to_s).join(', ')}]
45
59
  end
46
60
  }
47
- self.const_set(characterize_item.to_constant_name + 'ControllerMethods', mod)
48
- include mod
49
- self.send(:helper_method, object_name)
50
- end
51
- end
52
-
53
- class Converter
54
- def initialize(string)
55
- @string = string.to_s
56
- end
57
-
58
- def to_object_name
59
- to_path.split('/').last
60
- end
61
-
62
- def to_path
63
- # TODO: get platform-specific path delimiter
64
- @string.gsub('::','/').gsub(/([A-Z])/){ "_#{$1.downcase}" }.gsub(/^_|\/_/,'/').sub(/^\//,'')
65
- end
66
-
67
- def to_constant_name
68
- @string.gsub(/(?:^|_)([a-z])/){ $1.upcase }.gsub('/','::')
69
- # TODO: get platform-specific path delimiter
70
61
  end
62
+ self.const_set(object_constant_name + 'ControllerMethods', mod)
63
+ include mod
64
+ self.send(:helper_method, object_name)
71
65
  end
72
66
  end
73
67
  end
@@ -0,0 +1,25 @@
1
+ require "rails"
2
+ module Characterize
3
+ class Railtie < ::Rails::Railtie
4
+
5
+ config.after_initialize do |app|
6
+ app.config.paths.add 'app/characters', eager_load: true
7
+ end
8
+
9
+ if defined?(ActiveRecord)
10
+ initializer 'characterize.active_record' do |app|
11
+ ActiveRecord::Base.send(:include, Characterize)
12
+ end
13
+ end
14
+
15
+ if defined?(Mongoid)
16
+ initializer 'characterize.mongoid' do |app|
17
+ Mongoid::Document.send(:include, Characterize)
18
+ end
19
+ end
20
+
21
+ initializer 'characterize.action_controller' do |app|
22
+ ActionController::Base.send(:include, Characterize::Controller)
23
+ end
24
+ end
25
+ end
@@ -1,3 +1,3 @@
1
1
  module Characterize
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
data/lib/characterize.rb CHANGED
@@ -1,6 +1,7 @@
1
1
  require "characterize/version"
2
2
  require "characterize/controller"
3
3
  require "casting"
4
+ require 'characterize/railtie' if defined?(::Rails)
4
5
 
5
6
  module Characterize
6
7
  def self.included(klass)
@@ -10,10 +11,6 @@ module Characterize
10
11
  }
11
12
  end
12
13
 
13
- def viewable?
14
- !!view
15
- end
16
-
17
14
  def view
18
15
  @view
19
16
  end
@@ -22,14 +19,4 @@ module Characterize
22
19
  @view = obj
23
20
  self
24
21
  end
25
- end
26
-
27
- require 'active_record'
28
- class ActiveRecord::Base
29
- include Characterize
30
- end
31
-
32
- require 'action_controller'
33
- class ActionController::Base
34
- include Characterize::Controller
35
22
  end
@@ -0,0 +1,8 @@
1
+ require 'test_helper'
2
+
3
+ describe UsersController do
4
+ it 'renders views with extra features from characters' do
5
+ get :show, id: '1'
6
+ assert_template :show
7
+ end
8
+ 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
+ module SpecialCharacter
2
+ def special_link
3
+ view.link_to "m( O.O )m", self
4
+ end
5
+ end
@@ -0,0 +1,2 @@
1
+ module UserCharacter
2
+ end
@@ -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,6 @@
1
+ class UsersController < ApplicationController
2
+ characterize :user, default: [SpecialCharacter]
3
+
4
+ def show; end
5
+
6
+ end
@@ -0,0 +1,2 @@
1
+ module ApplicationHelper
2
+ end
File without changes
File without changes
File without changes
@@ -0,0 +1,2 @@
1
+ class User < ActiveRecord::Base
2
+ end
@@ -0,0 +1,13 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Internal</title>
5
+ <%= stylesheet_link_tag 'application', media: 'all' %>
6
+ <%= csrf_meta_tags %>
7
+ </head>
8
+ <body>
9
+
10
+ <%= yield %>
11
+
12
+ </body>
13
+ </html>
@@ -0,0 +1,2 @@
1
+ <h1><%= user.name %></h1>
2
+ <p>Here's a special link: <%= user.special_link %></p>
@@ -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'
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+ require_relative '../config/boot'
3
+ require 'rake'
4
+ Rake.application.run
@@ -0,0 +1,29 @@
1
+ require File.expand_path('../boot', __FILE__)
2
+
3
+ # Pick the frameworks you want:
4
+ require "active_record/railtie"
5
+ require "action_controller/railtie"
6
+ require "action_mailer/railtie"
7
+ require "action_view/railtie"
8
+ # require "sprockets/railtie"
9
+ require "rails/test_unit/railtie"
10
+
11
+ Bundler.require(*Rails.groups)
12
+ require "characterize"
13
+
14
+ module Internal
15
+ class Application < Rails::Application
16
+ # Settings in config/environments/* take precedence over those specified here.
17
+ # Application configuration should go into files in config/initializers
18
+ # -- all .rb files in that directory are automatically loaded.
19
+
20
+ # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
21
+ # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
22
+ # config.time_zone = 'Central Time (US & Canada)'
23
+
24
+ # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
25
+ # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
26
+ # config.i18n.default_locale = :de
27
+ end
28
+ end
29
+
@@ -0,0 +1,5 @@
1
+ # Set up gems listed in the Gemfile.
2
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../../../Gemfile', __FILE__)
3
+
4
+ require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE'])
5
+ $LOAD_PATH.unshift File.expand_path('../../../../lib', __FILE__)
@@ -0,0 +1,25 @@
1
+ # SQLite version 3.x
2
+ # gem install sqlite3
3
+ #
4
+ # Ensure the SQLite 3 gem is defined in your Gemfile
5
+ # gem 'sqlite3'
6
+ #
7
+ default: &default
8
+ adapter: sqlite3
9
+ pool: 5
10
+ timeout: 5000
11
+
12
+ development:
13
+ <<: *default
14
+ database: db/development.sqlite3
15
+
16
+ # Warning: The database defined as "test" will be erased and
17
+ # re-generated from your development database when you run "rake".
18
+ # Do not set this db to the same as development or production.
19
+ test:
20
+ <<: *default
21
+ database: db/test.sqlite3
22
+
23
+ production:
24
+ <<: *default
25
+ database: db/production.sqlite3
@@ -0,0 +1,5 @@
1
+ # Load the Rails application.
2
+ require File.expand_path('../application', __FILE__)
3
+
4
+ # Initialize the Rails application.
5
+ Rails.application.initialize!
@@ -0,0 +1,37 @@
1
+ Rails.application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb.
3
+
4
+ # In the development environment your application's code is reloaded on
5
+ # every request. This slows down response time but is perfect for development
6
+ # since you don't have to restart the web server when you make code changes.
7
+ config.cache_classes = false
8
+
9
+ # Do not eager load code on boot.
10
+ config.eager_load = false
11
+
12
+ # Show full error reports and disable caching.
13
+ config.consider_all_requests_local = true
14
+ config.action_controller.perform_caching = false
15
+
16
+ # Don't care if the mailer can't send.
17
+ config.action_mailer.raise_delivery_errors = false
18
+
19
+ # Print deprecation notices to the Rails logger.
20
+ config.active_support.deprecation = :log
21
+
22
+ # Raise an error on page load if there are pending migrations.
23
+ config.active_record.migration_error = :page_load
24
+
25
+ # Debug mode disables concatenation and preprocessing of assets.
26
+ # This option may cause significant delays in view rendering with a large
27
+ # number of complex assets.
28
+ config.assets.debug = true
29
+
30
+ # Adds additional error checking when serving assets at runtime.
31
+ # Checks for improperly declared sprockets dependencies.
32
+ # Raises helpful error messages.
33
+ config.assets.raise_runtime_errors = true
34
+
35
+ # Raises error for missing translations
36
+ # config.action_view.raise_on_missing_translations = true
37
+ end
@@ -0,0 +1,83 @@
1
+ Rails.application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb.
3
+
4
+ # Code is not reloaded between requests.
5
+ config.cache_classes = true
6
+
7
+ # Eager load code on boot. This eager loads most of Rails and
8
+ # your application in memory, allowing both threaded web servers
9
+ # and those relying on copy on write to perform better.
10
+ # Rake tasks automatically ignore this option for performance.
11
+ config.eager_load = true
12
+
13
+ # Full error reports are disabled and caching is turned on.
14
+ config.consider_all_requests_local = false
15
+ config.action_controller.perform_caching = true
16
+
17
+ # Enable Rack::Cache to put a simple HTTP cache in front of your application
18
+ # Add `rack-cache` to your Gemfile before enabling this.
19
+ # For large-scale production use, consider using a caching reverse proxy like nginx, varnish or squid.
20
+ # config.action_dispatch.rack_cache = true
21
+
22
+ # Disable Rails's static asset server (Apache or nginx will already do this).
23
+ config.serve_static_assets = false
24
+
25
+ # Compress JavaScripts and CSS.
26
+ config.assets.js_compressor = :uglifier
27
+ # config.assets.css_compressor = :sass
28
+
29
+ # Do not fallback to assets pipeline if a precompiled asset is missed.
30
+ config.assets.compile = false
31
+
32
+ # Generate digests for assets URLs.
33
+ config.assets.digest = true
34
+
35
+ # Version of your assets, change this if you want to expire all your assets.
36
+ config.assets.version = '1.0'
37
+
38
+ # Specifies the header that your server uses for sending files.
39
+ # config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
40
+ # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
41
+
42
+ # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
43
+ # config.force_ssl = true
44
+
45
+ # Set to :debug to see everything in the log.
46
+ config.log_level = :info
47
+
48
+ # Prepend all log lines with the following tags.
49
+ # config.log_tags = [ :subdomain, :uuid ]
50
+
51
+ # Use a different logger for distributed setups.
52
+ # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
53
+
54
+ # Use a different cache store in production.
55
+ # config.cache_store = :mem_cache_store
56
+
57
+ # Enable serving of images, stylesheets, and JavaScripts from an asset server.
58
+ # config.action_controller.asset_host = "http://assets.example.com"
59
+
60
+ # Precompile additional assets.
61
+ # application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
62
+ # config.assets.precompile += %w( search.js )
63
+
64
+ # Ignore bad email addresses and do not raise email delivery errors.
65
+ # Set this to true and configure the email server for immediate delivery to raise delivery errors.
66
+ # config.action_mailer.raise_delivery_errors = false
67
+
68
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
69
+ # the I18n.default_locale when a translation cannot be found).
70
+ config.i18n.fallbacks = true
71
+
72
+ # Send deprecation notices to registered listeners.
73
+ config.active_support.deprecation = :notify
74
+
75
+ # Disable automatic flushing of the log to improve performance.
76
+ # config.autoflush_log = false
77
+
78
+ # Use default logging formatter so that PID and timestamp are not suppressed.
79
+ config.log_formatter = ::Logger::Formatter.new
80
+
81
+ # Do not dump schema after migrations.
82
+ config.active_record.dump_schema_after_migration = false
83
+ end
@@ -0,0 +1,39 @@
1
+ Rails.application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb.
3
+
4
+ # The test environment is used exclusively to run your application's
5
+ # test suite. You never need to work with it otherwise. Remember that
6
+ # your test database is "scratch space" for the test suite and is wiped
7
+ # and recreated between test runs. Don't rely on the data there!
8
+ config.cache_classes = true
9
+
10
+ # Do not eager load code on boot. This avoids loading your whole application
11
+ # just for the purpose of running a single test. If you are using a tool that
12
+ # preloads Rails for running tests, you may have to set it to true.
13
+ config.eager_load = false
14
+
15
+ # Configure static asset server for tests with Cache-Control for performance.
16
+ config.serve_static_assets = true
17
+ config.static_cache_control = 'public, max-age=3600'
18
+
19
+ # Show full error reports and disable caching.
20
+ config.consider_all_requests_local = true
21
+ config.action_controller.perform_caching = false
22
+
23
+ # Raise exceptions instead of rendering exception templates.
24
+ config.action_dispatch.show_exceptions = false
25
+
26
+ # Disable request forgery protection in test environment.
27
+ config.action_controller.allow_forgery_protection = false
28
+
29
+ # Tell Action Mailer not to deliver emails to the real world.
30
+ # The :test delivery method accumulates sent emails in the
31
+ # ActionMailer::Base.deliveries array.
32
+ config.action_mailer.delivery_method = :test
33
+
34
+ # Print deprecation notices to the stderr.
35
+ config.active_support.deprecation = :stderr
36
+
37
+ # Raises error for missing translations
38
+ # config.action_view.raise_on_missing_translations = true
39
+ end
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Rails.application.config.action_dispatch.cookies_serializer = :json
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Configure sensitive parameters which will be filtered from the log file.
4
+ Rails.application.config.filter_parameters += [:password]
@@ -0,0 +1,16 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format. Inflections
4
+ # are locale specific, and you may define rules for as many different
5
+ # locales as you wish. All of these examples are active by default:
6
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
7
+ # inflect.plural /^(ox)$/i, '\1en'
8
+ # inflect.singular /^(ox)en/i, '\1'
9
+ # inflect.irregular 'person', 'people'
10
+ # inflect.uncountable %w( fish sheep )
11
+ # end
12
+
13
+ # These inflection rules are supported but not enabled by default:
14
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
15
+ # inflect.acronym 'RESTful'
16
+ # end
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Rails.application.config.session_store :cookie_store, key: '_internal_session'
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
9
+ end
10
+
11
+ # To enable root element in JSON for ActiveRecord objects.
12
+ # ActiveSupport.on_load(:active_record) do
13
+ # self.include_root_in_json = true
14
+ # end
@@ -0,0 +1,23 @@
1
+ # Files in the config/locales directory are used for internationalization
2
+ # and are automatically loaded by Rails. If you want to use locales other
3
+ # than English, add the necessary files in this directory.
4
+ #
5
+ # To use the locales, use `I18n.t`:
6
+ #
7
+ # I18n.t 'hello'
8
+ #
9
+ # In views, this is aliased to just `t`:
10
+ #
11
+ # <%= t('hello') %>
12
+ #
13
+ # To use a different locale, set it with `I18n.locale`:
14
+ #
15
+ # I18n.locale = :es
16
+ #
17
+ # This would use the information in config/locales/es.yml.
18
+ #
19
+ # To learn more, please read the Rails Internationalization guide
20
+ # available at http://guides.rubyonrails.org/i18n.html.
21
+
22
+ en:
23
+ hello: "Hello world"
@@ -0,0 +1,3 @@
1
+ Rails.application.routes.draw do
2
+ resources :users, only: [:show]
3
+ end
@@ -0,0 +1,22 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rake secret` to generate a secure secret key.
9
+
10
+ # Make sure the secrets in this file are kept private
11
+ # if you're sharing your code publicly.
12
+
13
+ development:
14
+ secret_key_base: bb8b3557fd0db04dbb39c52c2796d5eed1aa58983561a51ccd9a3a26ef6bb174334a535084af57e5176b7f94213615c79d91493c72594bb4408ae5860a549d3d
15
+
16
+ test:
17
+ secret_key_base: 2b9178d96f6b220d862f24ab333aa16400be2652c501f571dea0d5b323f7b72c7b64b0324a811af61a1c92f2892f581a96d5a6167539b191e7979311ebe259ab
18
+
19
+ # Do not keep production secrets in the repository,
20
+ # instead read values from the environment.
21
+ production:
22
+ secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
@@ -0,0 +1,4 @@
1
+ # This file is used by Rack-based servers to start the application.
2
+
3
+ require ::File.expand_path('../config/environment', __FILE__)
4
+ run Rails.application
File without changes
@@ -0,0 +1,7 @@
1
+ ActiveRecord::Schema.define do
2
+ create_table "users", :force => true do |t|
3
+ t.string "name", :limit => 25, :null => false
4
+ t.datetime "created_at", :limit => 6, :null => false
5
+ t.datetime "updated_at", :limit => 6, :null => false
6
+ end
7
+ end
@@ -0,0 +1 @@
1
+ User.create!(name: 'Jim')
File without changes
@@ -0,0 +1 @@
1
+ *.log
File without changes
@@ -0,0 +1,67 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body>
58
+ <!-- This file lives in public/404.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>The page you were looking for doesn't exist.</h1>
62
+ <p>You may have mistyped the address or the page may have moved.</p>
63
+ </div>
64
+ <p>If you are the application owner check the logs for more information.</p>
65
+ </div>
66
+ </body>
67
+ </html>
@@ -0,0 +1,67 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body>
58
+ <!-- This file lives in public/422.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>The change you wanted was rejected.</h1>
62
+ <p>Maybe you tried to change something you didn't have access to.</p>
63
+ </div>
64
+ <p>If you are the application owner check the logs for more information.</p>
65
+ </div>
66
+ </body>
67
+ </html>
@@ -0,0 +1,66 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body>
58
+ <!-- This file lives in public/500.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>We're sorry, but something went wrong.</h1>
62
+ </div>
63
+ <p>If you are the application owner check the logs for more information.</p>
64
+ </div>
65
+ </body>
66
+ </html>
File without changes
@@ -0,0 +1,15 @@
1
+ # Configure Rails Environment
2
+ ENV["RAILS_ENV"] = "test"
3
+
4
+ require File.expand_path("../internal/config/environment.rb", __FILE__)
5
+ require "rails/test_help"
6
+
7
+ Rails.backtrace_cleaner.remove_silencers!
8
+
9
+ # Load support files
10
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
11
+
12
+ # Load fixtures from the engine
13
+ if ActiveSupport::TestCase.method_defined?(:fixture_path=)
14
+ ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
15
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: characterize
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - "'Jim Gay'"
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-06-18 00:00:00.000000000 Z
11
+ date: 2014-06-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: casting
@@ -69,8 +69,59 @@ files:
69
69
  - lib/characterize.rb
70
70
  - lib/characterize/controller.rb
71
71
  - lib/characterize/feature_controls.rb
72
+ - lib/characterize/railtie.rb
72
73
  - lib/characterize/version.rb
73
74
  - lib/characterize/view_forwards.rb
75
+ - test/characterize_test.rb
76
+ - test/internal/README.rdoc
77
+ - test/internal/Rakefile
78
+ - test/internal/app/assets/images/.keep
79
+ - test/internal/app/assets/javascripts/application.js
80
+ - test/internal/app/assets/stylesheets/application.css
81
+ - test/internal/app/characters/special_character.rb
82
+ - test/internal/app/characters/user_character.rb
83
+ - test/internal/app/controllers/application_controller.rb
84
+ - test/internal/app/controllers/concerns/.keep
85
+ - test/internal/app/controllers/users_controller.rb
86
+ - test/internal/app/helpers/application_helper.rb
87
+ - test/internal/app/mailers/.keep
88
+ - test/internal/app/models/.keep
89
+ - test/internal/app/models/concerns/.keep
90
+ - test/internal/app/models/user.rb
91
+ - test/internal/app/views/layouts/application.html.erb
92
+ - test/internal/app/views/users/show.html.erb
93
+ - test/internal/bin/bundle
94
+ - test/internal/bin/rails
95
+ - test/internal/bin/rake
96
+ - test/internal/config.ru
97
+ - test/internal/config/application.rb
98
+ - test/internal/config/boot.rb
99
+ - test/internal/config/database.yml
100
+ - test/internal/config/environment.rb
101
+ - test/internal/config/environments/development.rb
102
+ - test/internal/config/environments/production.rb
103
+ - test/internal/config/environments/test.rb
104
+ - test/internal/config/initializers/backtrace_silencers.rb
105
+ - test/internal/config/initializers/cookies_serializer.rb
106
+ - test/internal/config/initializers/filter_parameter_logging.rb
107
+ - test/internal/config/initializers/inflections.rb
108
+ - test/internal/config/initializers/mime_types.rb
109
+ - test/internal/config/initializers/session_store.rb
110
+ - test/internal/config/initializers/wrap_parameters.rb
111
+ - test/internal/config/locales/en.yml
112
+ - test/internal/config/routes.rb
113
+ - test/internal/config/secrets.yml
114
+ - test/internal/db/.keep
115
+ - test/internal/db/schema.rb
116
+ - test/internal/db/seeds.rb
117
+ - test/internal/lib/assets/.keep
118
+ - test/internal/log/.gitignore
119
+ - test/internal/log/.keep
120
+ - test/internal/public/404.html
121
+ - test/internal/public/422.html
122
+ - test/internal/public/500.html
123
+ - test/internal/public/favicon.ico
124
+ - test/test_helper.rb
74
125
  homepage: ''
75
126
  licenses:
76
127
  - MIT
@@ -95,4 +146,54 @@ rubygems_version: 2.2.0
95
146
  signing_key:
96
147
  specification_version: 4
97
148
  summary: Use plain modules like presenters
98
- test_files: []
149
+ test_files:
150
+ - test/characterize_test.rb
151
+ - test/internal/README.rdoc
152
+ - test/internal/Rakefile
153
+ - test/internal/app/assets/images/.keep
154
+ - test/internal/app/assets/javascripts/application.js
155
+ - test/internal/app/assets/stylesheets/application.css
156
+ - test/internal/app/characters/special_character.rb
157
+ - test/internal/app/characters/user_character.rb
158
+ - test/internal/app/controllers/application_controller.rb
159
+ - test/internal/app/controllers/concerns/.keep
160
+ - test/internal/app/controllers/users_controller.rb
161
+ - test/internal/app/helpers/application_helper.rb
162
+ - test/internal/app/mailers/.keep
163
+ - test/internal/app/models/.keep
164
+ - test/internal/app/models/concerns/.keep
165
+ - test/internal/app/models/user.rb
166
+ - test/internal/app/views/layouts/application.html.erb
167
+ - test/internal/app/views/users/show.html.erb
168
+ - test/internal/bin/bundle
169
+ - test/internal/bin/rails
170
+ - test/internal/bin/rake
171
+ - test/internal/config.ru
172
+ - test/internal/config/application.rb
173
+ - test/internal/config/boot.rb
174
+ - test/internal/config/database.yml
175
+ - test/internal/config/environment.rb
176
+ - test/internal/config/environments/development.rb
177
+ - test/internal/config/environments/production.rb
178
+ - test/internal/config/environments/test.rb
179
+ - test/internal/config/initializers/backtrace_silencers.rb
180
+ - test/internal/config/initializers/cookies_serializer.rb
181
+ - test/internal/config/initializers/filter_parameter_logging.rb
182
+ - test/internal/config/initializers/inflections.rb
183
+ - test/internal/config/initializers/mime_types.rb
184
+ - test/internal/config/initializers/session_store.rb
185
+ - test/internal/config/initializers/wrap_parameters.rb
186
+ - test/internal/config/locales/en.yml
187
+ - test/internal/config/routes.rb
188
+ - test/internal/config/secrets.yml
189
+ - test/internal/db/.keep
190
+ - test/internal/db/schema.rb
191
+ - test/internal/db/seeds.rb
192
+ - test/internal/lib/assets/.keep
193
+ - test/internal/log/.gitignore
194
+ - test/internal/log/.keep
195
+ - test/internal/public/404.html
196
+ - test/internal/public/422.html
197
+ - test/internal/public/500.html
198
+ - test/internal/public/favicon.ico
199
+ - test/test_helper.rb