kanaui 0.5.1 → 0.6.0
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.
- checksums.yaml +4 -4
- data/README.md +13 -9
- data/app/assets/javascripts/application.js +0 -1
- data/app/assets/stylesheets/application.css +1 -0
- data/app/assets/stylesheets/bootstrap_and_overrides.css +0 -4
- data/app/controllers/kanaui/dashboard_controller.rb +13 -7
- data/app/views/kanaui/dashboard/index.html.erb +10 -10
- data/lib/kanaui/engine.rb +3 -1
- data/lib/kanaui/version.rb +1 -1
- data/test/dummy/bin/bundle +3 -0
- data/test/dummy/bin/rails +4 -0
- data/test/dummy/bin/rake +4 -0
- data/test/dummy/bin/setup +38 -0
- data/test/dummy/bin/update +29 -0
- data/test/dummy/bin/yarn +11 -0
- data/test/dummy/config/application.rb +15 -47
- data/test/dummy/config/boot.rb +2 -9
- data/test/dummy/config/environment.rb +4 -4
- data/test/dummy/config/environments/development.rb +38 -18
- data/test/dummy/config/environments/production.rb +61 -39
- data/test/dummy/config/environments/test.rb +20 -14
- data/test/dummy/config/initializers/application_controller_renderer.rb +6 -0
- data/test/dummy/config/initializers/assets.rb +14 -0
- data/test/dummy/config/initializers/cookies_serializer.rb +5 -0
- data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/dummy/config/initializers/inflections.rb +6 -5
- data/test/dummy/config/initializers/mime_types.rb +0 -1
- data/test/dummy/config/initializers/new_framework_defaults_5_1.rb +14 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +5 -5
- data/test/dummy/config/locales/en.yml +30 -2
- data/test/dummy/config/secrets.yml +32 -0
- data/test/integration/navigation_test.rb +6 -4
- metadata +81 -186
- data/app/models/kanaui/dashboard.rb +0 -5
- data/test/dummy/config/database.yml +0 -25
@@ -1,69 +1,91 @@
|
|
1
|
-
|
2
|
-
# Settings specified here will take precedence over those in config/application.rb
|
1
|
+
Rails.application.configure do
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb.
|
3
3
|
|
4
|
-
# Code is not reloaded between requests
|
4
|
+
# Code is not reloaded between requests.
|
5
5
|
config.cache_classes = true
|
6
6
|
|
7
|
-
#
|
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.
|
8
14
|
config.consider_all_requests_local = false
|
9
15
|
config.action_controller.perform_caching = true
|
10
16
|
|
11
|
-
#
|
12
|
-
|
17
|
+
# Attempt to read encrypted secrets from `config/secrets.yml.enc`.
|
18
|
+
# Requires an encryption key in `ENV["RAILS_MASTER_KEY"]` or
|
19
|
+
# `config/secrets.yml.key`.
|
20
|
+
config.read_encrypted_secrets = true
|
21
|
+
|
22
|
+
# Disable serving static files from the `/public` folder by default since
|
23
|
+
# Apache or NGINX already handles this.
|
24
|
+
config.public_file_server.enabled = ENV['RAILS_SERVE_STATIC_FILES'].present?
|
13
25
|
|
14
|
-
# Compress JavaScripts and CSS
|
15
|
-
config.assets.
|
26
|
+
# Compress JavaScripts and CSS.
|
27
|
+
config.assets.js_compressor = :uglifier
|
28
|
+
# config.assets.css_compressor = :sass
|
16
29
|
|
17
|
-
#
|
30
|
+
# Do not fallback to assets pipeline if a precompiled asset is missed.
|
18
31
|
config.assets.compile = false
|
19
32
|
|
20
|
-
#
|
21
|
-
config.assets.digest = true
|
33
|
+
# `config.assets.precompile` and `config.assets.version` have moved to config/initializers/assets.rb
|
22
34
|
|
23
|
-
#
|
24
|
-
# config.
|
35
|
+
# Enable serving of images, stylesheets, and JavaScripts from an asset server.
|
36
|
+
# config.action_controller.asset_host = 'http://assets.example.com'
|
25
37
|
|
26
|
-
# Specifies the header that your server uses for sending files
|
27
|
-
# config.action_dispatch.x_sendfile_header =
|
28
|
-
# config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for
|
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
|
+
# Mount Action Cable outside main process or domain
|
43
|
+
# config.action_cable.mount_path = nil
|
44
|
+
# config.action_cable.url = 'wss://example.com/cable'
|
45
|
+
# config.action_cable.allowed_request_origins = [ 'http://example.com', /http:\/\/example.*/ ]
|
29
46
|
|
30
47
|
# Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
|
31
48
|
# config.force_ssl = true
|
32
49
|
|
33
|
-
#
|
34
|
-
#
|
35
|
-
|
36
|
-
# Prepend all log lines with the following tags
|
37
|
-
# config.log_tags = [ :subdomain, :uuid ]
|
50
|
+
# Use the lowest log level to ensure availability of diagnostic information
|
51
|
+
# when problems arise.
|
52
|
+
config.log_level = :debug
|
38
53
|
|
39
|
-
#
|
40
|
-
|
54
|
+
# Prepend all log lines with the following tags.
|
55
|
+
config.log_tags = [ :request_id ]
|
41
56
|
|
42
|
-
# Use a different cache store in production
|
57
|
+
# Use a different cache store in production.
|
43
58
|
# config.cache_store = :mem_cache_store
|
44
59
|
|
45
|
-
#
|
46
|
-
# config.
|
60
|
+
# Use a real queuing backend for Active Job (and separate queues per environment)
|
61
|
+
# config.active_job.queue_adapter = :resque
|
62
|
+
# config.active_job.queue_name_prefix = "dummy_#{Rails.env}"
|
63
|
+
# config.action_mailer.perform_caching = false
|
47
64
|
|
48
|
-
#
|
49
|
-
#
|
50
|
-
|
51
|
-
# Disable delivery errors, bad email addresses will be ignored
|
65
|
+
# Ignore bad email addresses and do not raise email delivery errors.
|
66
|
+
# Set this to true and configure the email server for immediate delivery to raise delivery errors.
|
52
67
|
# config.action_mailer.raise_delivery_errors = false
|
53
68
|
|
54
|
-
# Enable threaded mode
|
55
|
-
# config.threadsafe!
|
56
|
-
|
57
69
|
# Enable locale fallbacks for I18n (makes lookups for any locale fall back to
|
58
|
-
# the I18n.default_locale when a translation
|
70
|
+
# the I18n.default_locale when a translation cannot be found).
|
59
71
|
config.i18n.fallbacks = true
|
60
72
|
|
61
|
-
# Send deprecation notices to registered listeners
|
73
|
+
# Send deprecation notices to registered listeners.
|
62
74
|
config.active_support.deprecation = :notify
|
63
75
|
|
64
|
-
#
|
65
|
-
|
66
|
-
# config.active_record.auto_explain_threshold_in_seconds = 0.5
|
76
|
+
# Use default logging formatter so that PID and timestamp are not suppressed.
|
77
|
+
config.log_formatter = ::Logger::Formatter.new
|
67
78
|
|
68
|
-
|
79
|
+
# Use a different logger for distributed setups.
|
80
|
+
# require 'syslog/logger'
|
81
|
+
# config.logger = ActiveSupport::TaggedLogging.new(Syslog::Logger.new 'app-name')
|
82
|
+
|
83
|
+
if ENV["RAILS_LOG_TO_STDOUT"].present?
|
84
|
+
logger = ActiveSupport::Logger.new(STDOUT)
|
85
|
+
logger.formatter = config.log_formatter
|
86
|
+
config.logger = ActiveSupport::TaggedLogging.new(logger)
|
87
|
+
end
|
88
|
+
|
89
|
+
# Do not dump schema after migrations.
|
90
|
+
# config.active_record.dump_schema_after_migration = false
|
69
91
|
end
|
@@ -1,5 +1,5 @@
|
|
1
|
-
|
2
|
-
# Settings specified here will take precedence over those in config/application.rb
|
1
|
+
Rails.application.configure do
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb.
|
3
3
|
|
4
4
|
# The test environment is used exclusively to run your application's
|
5
5
|
# test suite. You never need to work with it otherwise. Remember that
|
@@ -7,30 +7,36 @@ Dummy::Application.configure do
|
|
7
7
|
# and recreated between test runs. Don't rely on the data there!
|
8
8
|
config.cache_classes = true
|
9
9
|
|
10
|
-
#
|
11
|
-
|
12
|
-
|
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
|
13
14
|
|
14
|
-
#
|
15
|
-
config.
|
15
|
+
# Configure public file server for tests with Cache-Control for performance.
|
16
|
+
config.public_file_server.enabled = true
|
17
|
+
config.public_file_server.headers = {
|
18
|
+
'Cache-Control' => "public, max-age=#{1.hour.seconds.to_i}"
|
19
|
+
}
|
16
20
|
|
17
|
-
# Show full error reports and disable caching
|
21
|
+
# Show full error reports and disable caching.
|
18
22
|
config.consider_all_requests_local = true
|
19
23
|
config.action_controller.perform_caching = false
|
20
24
|
|
21
|
-
# Raise exceptions instead of rendering exception templates
|
25
|
+
# Raise exceptions instead of rendering exception templates.
|
22
26
|
config.action_dispatch.show_exceptions = false
|
23
27
|
|
24
|
-
# Disable request forgery protection in test environment
|
25
|
-
config.action_controller.allow_forgery_protection
|
28
|
+
# Disable request forgery protection in test environment.
|
29
|
+
config.action_controller.allow_forgery_protection = false
|
30
|
+
# config.action_mailer.perform_caching = false
|
26
31
|
|
27
32
|
# Tell Action Mailer not to deliver emails to the real world.
|
28
33
|
# The :test delivery method accumulates sent emails in the
|
29
34
|
# ActionMailer::Base.deliveries array.
|
30
|
-
config.action_mailer.delivery_method = :test
|
35
|
+
# config.action_mailer.delivery_method = :test
|
31
36
|
|
32
|
-
# Print deprecation notices to the stderr
|
37
|
+
# Print deprecation notices to the stderr.
|
33
38
|
config.active_support.deprecation = :stderr
|
34
39
|
|
35
|
-
|
40
|
+
# Raises error for missing translations
|
41
|
+
# config.action_view.raise_on_missing_translations = true
|
36
42
|
end
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Version of your assets, change this if you want to expire all your assets.
|
4
|
+
Rails.application.config.assets.version = '1.0'
|
5
|
+
|
6
|
+
# Add additional assets to the asset load path.
|
7
|
+
# Rails.application.config.assets.paths << Emoji.images_path
|
8
|
+
# Add Yarn node_modules folder to the asset load path.
|
9
|
+
Rails.application.config.assets.paths << Rails.root.join('node_modules')
|
10
|
+
|
11
|
+
# Precompile additional assets.
|
12
|
+
# application.js, application.css, and all non-JS/CSS in the app/assets
|
13
|
+
# folder are already added.
|
14
|
+
# Rails.application.config.assets.precompile += %w( admin.js admin.css )
|
@@ -1,15 +1,16 @@
|
|
1
1
|
# Be sure to restart your server when you modify this file.
|
2
2
|
|
3
|
-
# Add new inflection rules using the following format
|
4
|
-
#
|
5
|
-
#
|
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|
|
6
7
|
# inflect.plural /^(ox)$/i, '\1en'
|
7
8
|
# inflect.singular /^(ox)en/i, '\1'
|
8
9
|
# inflect.irregular 'person', 'people'
|
9
10
|
# inflect.uncountable %w( fish sheep )
|
10
11
|
# end
|
11
|
-
|
12
|
+
|
12
13
|
# These inflection rules are supported but not enabled by default:
|
13
|
-
# ActiveSupport::Inflector.inflections do |inflect|
|
14
|
+
# ActiveSupport::Inflector.inflections(:en) do |inflect|
|
14
15
|
# inflect.acronym 'RESTful'
|
15
16
|
# end
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
#
|
3
|
+
# This file contains migration options to ease your Rails 5.1 upgrade.
|
4
|
+
#
|
5
|
+
# Once upgraded flip defaults one by one to migrate to the new default.
|
6
|
+
#
|
7
|
+
# Read the Guide for Upgrading Ruby on Rails for more info on each option.
|
8
|
+
|
9
|
+
# Make `form_with` generate non-remote forms.
|
10
|
+
Rails.application.config.action_view.form_with_generates_remote_forms = false
|
11
|
+
|
12
|
+
# Unknown asset fallback will return the path passed in when the given
|
13
|
+
# asset is not present in the asset pipeline.
|
14
|
+
# Rails.application.config.assets.unknown_asset_fallback = false
|
@@ -1,5 +1,5 @@
|
|
1
1
|
# Be sure to restart your server when you modify this file.
|
2
|
-
|
2
|
+
|
3
3
|
# This file contains settings for ActionController::ParamsWrapper which
|
4
4
|
# is enabled by default.
|
5
5
|
|
@@ -8,7 +8,7 @@ ActiveSupport.on_load(:action_controller) do
|
|
8
8
|
wrap_parameters format: [:json]
|
9
9
|
end
|
10
10
|
|
11
|
-
#
|
12
|
-
ActiveSupport.on_load(:active_record) do
|
13
|
-
|
14
|
-
end
|
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
|
@@ -1,5 +1,33 @@
|
|
1
|
-
#
|
2
|
-
#
|
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
|
+
# The following keys must be escaped otherwise they will not be retrieved by
|
20
|
+
# the default I18n backend:
|
21
|
+
#
|
22
|
+
# true, false, on, off, yes, no
|
23
|
+
#
|
24
|
+
# Instead, surround them with single quotes.
|
25
|
+
#
|
26
|
+
# en:
|
27
|
+
# 'true': 'foo'
|
28
|
+
#
|
29
|
+
# To learn more, please read the Rails Internationalization guide
|
30
|
+
# available at http://guides.rubyonrails.org/i18n.html.
|
3
31
|
|
4
32
|
en:
|
5
33
|
hello: "Hello world"
|
@@ -0,0 +1,32 @@
|
|
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 `rails 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
|
+
# Shared secrets are available across all environments.
|
14
|
+
|
15
|
+
# shared:
|
16
|
+
# api_key: a1B2c3D4e5F6
|
17
|
+
|
18
|
+
# Environmental secrets are only available for that specific environment.
|
19
|
+
|
20
|
+
development:
|
21
|
+
secret_key_base: 16ee8eb8b144df979bd2a6e3d436cb5ee1522b4fa547bf99ae6722a704cf586e5b7a3a0bdac3a2071fe69fdd37833047ab6471c6bf2c63a996779bcaaa614f5f
|
22
|
+
|
23
|
+
test:
|
24
|
+
secret_key_base: d72c2862657e1ba5deb11deb13a9ebd99b2825afccc1b60f24c197d5fe222426972517c08734c6731688afd7d7fcd3f44e43e4b71df896141be1a095e3fa9a20
|
25
|
+
|
26
|
+
# Do not keep production secrets in the unencrypted secrets file.
|
27
|
+
# Instead, either read values from the environment.
|
28
|
+
# Or, use `bin/rails secrets:setup` to configure encrypted secrets
|
29
|
+
# and move the `production:` environment over there.
|
30
|
+
|
31
|
+
production:
|
32
|
+
secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
|
@@ -1,10 +1,12 @@
|
|
1
1
|
require 'test_helper'
|
2
2
|
|
3
3
|
class NavigationTest < ActionDispatch::IntegrationTest
|
4
|
-
fixtures :all
|
5
4
|
|
6
|
-
|
7
|
-
|
8
|
-
|
5
|
+
include Kanaui::Engine.routes.url_helpers
|
6
|
+
|
7
|
+
test 'can see the dashboard page' do
|
8
|
+
get '/kanaui'
|
9
|
+
assert_response :redirect
|
10
|
+
end
|
9
11
|
end
|
10
12
|
|
metadata
CHANGED
@@ -1,323 +1,197 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: kanaui
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kill Bill core team
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-11-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
|
+
name: rails
|
14
15
|
requirement: !ruby/object:Gem::Requirement
|
15
16
|
requirements:
|
16
17
|
- - "~>"
|
17
18
|
- !ruby/object:Gem::Version
|
18
|
-
version:
|
19
|
-
name: rails
|
20
|
-
prerelease: false
|
19
|
+
version: '5.1'
|
21
20
|
type: :runtime
|
21
|
+
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
26
|
+
version: '5.1'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
|
+
name: js-routes
|
28
29
|
requirement: !ruby/object:Gem::Requirement
|
29
30
|
requirements:
|
30
31
|
- - "~>"
|
31
32
|
- !ruby/object:Gem::Version
|
32
33
|
version: '1.1'
|
33
|
-
name: js-routes
|
34
|
-
prerelease: false
|
35
34
|
type: :runtime
|
35
|
+
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '1.1'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
|
-
requirement: !ruby/object:Gem::Requirement
|
43
|
-
requirements:
|
44
|
-
- - "~>"
|
45
|
-
- !ruby/object:Gem::Version
|
46
|
-
version: 3.0.4
|
47
42
|
name: jquery-rails
|
48
|
-
prerelease: false
|
49
|
-
type: :runtime
|
50
|
-
version_requirements: !ruby/object:Gem::Requirement
|
51
|
-
requirements:
|
52
|
-
- - "~>"
|
53
|
-
- !ruby/object:Gem::Version
|
54
|
-
version: 3.0.4
|
55
|
-
- !ruby/object:Gem::Dependency
|
56
43
|
requirement: !ruby/object:Gem::Requirement
|
57
44
|
requirements:
|
58
45
|
- - "~>"
|
59
46
|
- !ruby/object:Gem::Version
|
60
|
-
version:
|
61
|
-
name: jquery-datatables-rails
|
62
|
-
prerelease: false
|
47
|
+
version: '4.3'
|
63
48
|
type: :runtime
|
49
|
+
prerelease: false
|
64
50
|
version_requirements: !ruby/object:Gem::Requirement
|
65
51
|
requirements:
|
66
52
|
- - "~>"
|
67
53
|
- !ruby/object:Gem::Version
|
68
|
-
version:
|
54
|
+
version: '4.3'
|
69
55
|
- !ruby/object:Gem::Dependency
|
56
|
+
name: jquery-datatables-rails
|
70
57
|
requirement: !ruby/object:Gem::Requirement
|
71
58
|
requirements:
|
72
59
|
- - "~>"
|
73
60
|
- !ruby/object:Gem::Version
|
74
|
-
version:
|
75
|
-
name: money-rails
|
76
|
-
prerelease: false
|
61
|
+
version: '3.3'
|
77
62
|
type: :runtime
|
63
|
+
prerelease: false
|
78
64
|
version_requirements: !ruby/object:Gem::Requirement
|
79
65
|
requirements:
|
80
66
|
- - "~>"
|
81
67
|
- !ruby/object:Gem::Version
|
82
|
-
version:
|
68
|
+
version: '3.3'
|
83
69
|
- !ruby/object:Gem::Dependency
|
70
|
+
name: d3_rails
|
84
71
|
requirement: !ruby/object:Gem::Requirement
|
85
72
|
requirements:
|
86
73
|
- - "~>"
|
87
74
|
- !ruby/object:Gem::Version
|
88
75
|
version: 3.2.8
|
89
|
-
name: d3_rails
|
90
|
-
prerelease: false
|
91
76
|
type: :runtime
|
77
|
+
prerelease: false
|
92
78
|
version_requirements: !ruby/object:Gem::Requirement
|
93
79
|
requirements:
|
94
80
|
- - "~>"
|
95
81
|
- !ruby/object:Gem::Version
|
96
82
|
version: 3.2.8
|
97
83
|
- !ruby/object:Gem::Dependency
|
98
|
-
requirement: !ruby/object:Gem::Requirement
|
99
|
-
requirements:
|
100
|
-
- - "~>"
|
101
|
-
- !ruby/object:Gem::Version
|
102
|
-
version: 3.2.0
|
103
84
|
name: twitter-bootstrap-rails
|
104
|
-
prerelease: false
|
105
|
-
type: :runtime
|
106
|
-
version_requirements: !ruby/object:Gem::Requirement
|
107
|
-
requirements:
|
108
|
-
- - "~>"
|
109
|
-
- !ruby/object:Gem::Version
|
110
|
-
version: 3.2.0
|
111
|
-
- !ruby/object:Gem::Dependency
|
112
85
|
requirement: !ruby/object:Gem::Requirement
|
113
86
|
requirements:
|
114
|
-
- - "
|
87
|
+
- - ">="
|
115
88
|
- !ruby/object:Gem::Version
|
116
|
-
version: '
|
117
|
-
name: spinjs-rails
|
118
|
-
prerelease: false
|
89
|
+
version: '0'
|
119
90
|
type: :runtime
|
120
|
-
version_requirements: !ruby/object:Gem::Requirement
|
121
|
-
requirements:
|
122
|
-
- - "~>"
|
123
|
-
- !ruby/object:Gem::Version
|
124
|
-
version: '1.4'
|
125
|
-
- !ruby/object:Gem::Dependency
|
126
|
-
requirement: !ruby/object:Gem::Requirement
|
127
|
-
requirements:
|
128
|
-
- - "~>"
|
129
|
-
- !ruby/object:Gem::Version
|
130
|
-
version: 1.4.0
|
131
|
-
name: bootstrap-datepicker-rails
|
132
91
|
prerelease: false
|
133
|
-
type: :runtime
|
134
92
|
version_requirements: !ruby/object:Gem::Requirement
|
135
93
|
requirements:
|
136
|
-
- - "
|
94
|
+
- - ">="
|
137
95
|
- !ruby/object:Gem::Version
|
138
|
-
version:
|
96
|
+
version: '0'
|
139
97
|
- !ruby/object:Gem::Dependency
|
98
|
+
name: font-awesome-rails
|
140
99
|
requirement: !ruby/object:Gem::Requirement
|
141
100
|
requirements:
|
142
101
|
- - "~>"
|
143
102
|
- !ruby/object:Gem::Version
|
144
|
-
version:
|
145
|
-
name: momentjs-rails
|
146
|
-
prerelease: false
|
103
|
+
version: '4.7'
|
147
104
|
type: :runtime
|
148
|
-
version_requirements: !ruby/object:Gem::Requirement
|
149
|
-
requirements:
|
150
|
-
- - "~>"
|
151
|
-
- !ruby/object:Gem::Version
|
152
|
-
version: 2.10.6
|
153
|
-
- !ruby/object:Gem::Dependency
|
154
|
-
requirement: !ruby/object:Gem::Requirement
|
155
|
-
requirements:
|
156
|
-
- - "~>"
|
157
|
-
- !ruby/object:Gem::Version
|
158
|
-
version: '1.0'
|
159
|
-
name: killbill-client
|
160
105
|
prerelease: false
|
161
|
-
type: :runtime
|
162
106
|
version_requirements: !ruby/object:Gem::Requirement
|
163
107
|
requirements:
|
164
108
|
- - "~>"
|
165
109
|
- !ruby/object:Gem::Version
|
166
|
-
version: '
|
110
|
+
version: '4.7'
|
167
111
|
- !ruby/object:Gem::Dependency
|
112
|
+
name: spinjs-rails
|
168
113
|
requirement: !ruby/object:Gem::Requirement
|
169
114
|
requirements:
|
170
115
|
- - "~>"
|
171
116
|
- !ruby/object:Gem::Version
|
172
|
-
version:
|
173
|
-
name: devise
|
174
|
-
prerelease: false
|
117
|
+
version: '1.4'
|
175
118
|
type: :runtime
|
176
|
-
version_requirements: !ruby/object:Gem::Requirement
|
177
|
-
requirements:
|
178
|
-
- - "~>"
|
179
|
-
- !ruby/object:Gem::Version
|
180
|
-
version: 3.4.1
|
181
|
-
- !ruby/object:Gem::Dependency
|
182
|
-
requirement: !ruby/object:Gem::Requirement
|
183
|
-
requirements:
|
184
|
-
- - "~>"
|
185
|
-
- !ruby/object:Gem::Version
|
186
|
-
version: 1.6.10
|
187
|
-
name: cancan
|
188
119
|
prerelease: false
|
189
|
-
type: :runtime
|
190
120
|
version_requirements: !ruby/object:Gem::Requirement
|
191
121
|
requirements:
|
192
122
|
- - "~>"
|
193
123
|
- !ruby/object:Gem::Version
|
194
|
-
version: 1.
|
124
|
+
version: '1.4'
|
195
125
|
- !ruby/object:Gem::Dependency
|
126
|
+
name: bootstrap-datepicker-rails
|
196
127
|
requirement: !ruby/object:Gem::Requirement
|
197
128
|
requirements:
|
198
129
|
- - "~>"
|
199
130
|
- !ruby/object:Gem::Version
|
200
|
-
version: 1.
|
201
|
-
name: carmen-rails
|
202
|
-
prerelease: false
|
131
|
+
version: '1.6'
|
203
132
|
type: :runtime
|
204
|
-
version_requirements: !ruby/object:Gem::Requirement
|
205
|
-
requirements:
|
206
|
-
- - "~>"
|
207
|
-
- !ruby/object:Gem::Version
|
208
|
-
version: 1.0.0
|
209
|
-
- !ruby/object:Gem::Dependency
|
210
|
-
requirement: !ruby/object:Gem::Requirement
|
211
|
-
requirements:
|
212
|
-
- - "~>"
|
213
|
-
- !ruby/object:Gem::Version
|
214
|
-
version: 3.6.0
|
215
|
-
name: symmetric-encryption
|
216
133
|
prerelease: false
|
217
|
-
type: :runtime
|
218
134
|
version_requirements: !ruby/object:Gem::Requirement
|
219
135
|
requirements:
|
220
136
|
- - "~>"
|
221
137
|
- !ruby/object:Gem::Version
|
222
|
-
version:
|
138
|
+
version: '1.6'
|
223
139
|
- !ruby/object:Gem::Dependency
|
140
|
+
name: killbill-client
|
224
141
|
requirement: !ruby/object:Gem::Requirement
|
225
142
|
requirements:
|
226
143
|
- - "~>"
|
227
144
|
- !ruby/object:Gem::Version
|
228
|
-
version: '1.
|
229
|
-
|
145
|
+
version: '1.0'
|
146
|
+
type: :runtime
|
230
147
|
prerelease: false
|
231
|
-
type: :development
|
232
148
|
version_requirements: !ruby/object:Gem::Requirement
|
233
149
|
requirements:
|
234
150
|
- - "~>"
|
235
151
|
- !ruby/object:Gem::Version
|
236
|
-
version: '1.
|
152
|
+
version: '1.0'
|
237
153
|
- !ruby/object:Gem::Dependency
|
238
|
-
requirement: !ruby/object:Gem::Requirement
|
239
|
-
requirements:
|
240
|
-
- - ">="
|
241
|
-
- !ruby/object:Gem::Version
|
242
|
-
version: 0.8.7
|
243
154
|
name: rake
|
244
|
-
prerelease: false
|
245
|
-
type: :development
|
246
|
-
version_requirements: !ruby/object:Gem::Requirement
|
247
|
-
requirements:
|
248
|
-
- - ">="
|
249
|
-
- !ruby/object:Gem::Version
|
250
|
-
version: 0.8.7
|
251
|
-
- !ruby/object:Gem::Dependency
|
252
155
|
requirement: !ruby/object:Gem::Requirement
|
253
156
|
requirements:
|
254
157
|
- - ">="
|
255
158
|
- !ruby/object:Gem::Version
|
256
159
|
version: '0'
|
257
|
-
name: simplecov
|
258
|
-
prerelease: false
|
259
160
|
type: :development
|
161
|
+
prerelease: false
|
260
162
|
version_requirements: !ruby/object:Gem::Requirement
|
261
163
|
requirements:
|
262
164
|
- - ">="
|
263
165
|
- !ruby/object:Gem::Version
|
264
166
|
version: '0'
|
265
167
|
- !ruby/object:Gem::Dependency
|
168
|
+
name: simplecov
|
266
169
|
requirement: !ruby/object:Gem::Requirement
|
267
170
|
requirements:
|
268
|
-
- - "
|
171
|
+
- - ">="
|
269
172
|
- !ruby/object:Gem::Version
|
270
|
-
version:
|
271
|
-
name: activerecord-jdbc-adapter
|
272
|
-
prerelease: false
|
173
|
+
version: '0'
|
273
174
|
type: :development
|
274
|
-
version_requirements: !ruby/object:Gem::Requirement
|
275
|
-
requirements:
|
276
|
-
- - "~>"
|
277
|
-
- !ruby/object:Gem::Version
|
278
|
-
version: 1.3.9
|
279
|
-
- !ruby/object:Gem::Dependency
|
280
|
-
requirement: !ruby/object:Gem::Requirement
|
281
|
-
requirements:
|
282
|
-
- - "~>"
|
283
|
-
- !ruby/object:Gem::Version
|
284
|
-
version: 1.3.9
|
285
|
-
name: activerecord-jdbcmysql-adapter
|
286
175
|
prerelease: false
|
287
|
-
type: :development
|
288
176
|
version_requirements: !ruby/object:Gem::Requirement
|
289
177
|
requirements:
|
290
|
-
- - "
|
178
|
+
- - ">="
|
291
179
|
- !ruby/object:Gem::Version
|
292
|
-
version:
|
180
|
+
version: '0'
|
293
181
|
- !ruby/object:Gem::Dependency
|
182
|
+
name: listen
|
294
183
|
requirement: !ruby/object:Gem::Requirement
|
295
184
|
requirements:
|
296
|
-
- - "
|
185
|
+
- - ">="
|
297
186
|
- !ruby/object:Gem::Version
|
298
|
-
version:
|
299
|
-
name: activerecord-jdbcsqlite3-adapter
|
300
|
-
prerelease: false
|
187
|
+
version: '0'
|
301
188
|
type: :development
|
302
|
-
version_requirements: !ruby/object:Gem::Requirement
|
303
|
-
requirements:
|
304
|
-
- - "~>"
|
305
|
-
- !ruby/object:Gem::Version
|
306
|
-
version: 1.3.9
|
307
|
-
- !ruby/object:Gem::Dependency
|
308
|
-
requirement: !ruby/object:Gem::Requirement
|
309
|
-
requirements:
|
310
|
-
- - "~>"
|
311
|
-
- !ruby/object:Gem::Version
|
312
|
-
version: 5.1.25
|
313
|
-
name: jdbc-mysql
|
314
189
|
prerelease: false
|
315
|
-
type: :development
|
316
190
|
version_requirements: !ruby/object:Gem::Requirement
|
317
191
|
requirements:
|
318
|
-
- - "
|
192
|
+
- - ">="
|
319
193
|
- !ruby/object:Gem::Version
|
320
|
-
version:
|
194
|
+
version: '0'
|
321
195
|
description: Rails UI plugin for the Analytics plugin.
|
322
196
|
email: killbilling-users@googlegroups.com
|
323
197
|
executables: []
|
@@ -360,7 +234,6 @@ files:
|
|
360
234
|
- app/controllers/kanaui/reports_controller.rb
|
361
235
|
- app/helpers/kanaui/application_helper.rb
|
362
236
|
- app/helpers/kanaui/dashboard_helper.rb
|
363
|
-
- app/models/kanaui/dashboard.rb
|
364
237
|
- app/views/kanaui/dashboard/index.html.erb
|
365
238
|
- app/views/kanaui/layouts/kanaui_application.html.erb
|
366
239
|
- app/views/kanaui/reports/_form.html.erb
|
@@ -380,23 +253,34 @@ files:
|
|
380
253
|
- test/dummy/Rakefile
|
381
254
|
- test/dummy/app/controllers/application_controller.rb
|
382
255
|
- test/dummy/app/helpers/application_helper.rb
|
256
|
+
- test/dummy/bin/bundle
|
257
|
+
- test/dummy/bin/rails
|
258
|
+
- test/dummy/bin/rake
|
259
|
+
- test/dummy/bin/setup
|
260
|
+
- test/dummy/bin/update
|
261
|
+
- test/dummy/bin/yarn
|
383
262
|
- test/dummy/config.ru
|
384
263
|
- test/dummy/config/application.rb
|
385
264
|
- test/dummy/config/boot.rb
|
386
|
-
- test/dummy/config/database.yml
|
387
265
|
- test/dummy/config/environment.rb
|
388
266
|
- test/dummy/config/environments/development.rb
|
389
267
|
- test/dummy/config/environments/production.rb
|
390
268
|
- test/dummy/config/environments/test.rb
|
269
|
+
- test/dummy/config/initializers/application_controller_renderer.rb
|
270
|
+
- test/dummy/config/initializers/assets.rb
|
391
271
|
- test/dummy/config/initializers/backtrace_silencers.rb
|
272
|
+
- test/dummy/config/initializers/cookies_serializer.rb
|
273
|
+
- test/dummy/config/initializers/filter_parameter_logging.rb
|
392
274
|
- test/dummy/config/initializers/inflections.rb
|
393
275
|
- test/dummy/config/initializers/killbill_client.rb
|
394
276
|
- test/dummy/config/initializers/mime_types.rb
|
277
|
+
- test/dummy/config/initializers/new_framework_defaults_5_1.rb
|
395
278
|
- test/dummy/config/initializers/secret_token.rb
|
396
279
|
- test/dummy/config/initializers/session_store.rb
|
397
280
|
- test/dummy/config/initializers/wrap_parameters.rb
|
398
281
|
- test/dummy/config/locales/en.yml
|
399
282
|
- test/dummy/config/routes.rb
|
283
|
+
- test/dummy/config/secrets.yml
|
400
284
|
- test/dummy/public/404.html
|
401
285
|
- test/dummy/public/422.html
|
402
286
|
- test/dummy/public/500.html
|
@@ -412,7 +296,7 @@ homepage: http://www.killbill.io
|
|
412
296
|
licenses:
|
413
297
|
- MIT
|
414
298
|
metadata: {}
|
415
|
-
post_install_message:
|
299
|
+
post_install_message:
|
416
300
|
rdoc_options: []
|
417
301
|
require_paths:
|
418
302
|
- lib
|
@@ -427,41 +311,52 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
427
311
|
- !ruby/object:Gem::Version
|
428
312
|
version: '0'
|
429
313
|
requirements: []
|
430
|
-
rubyforge_project:
|
431
|
-
rubygems_version: 2.
|
432
|
-
signing_key:
|
314
|
+
rubyforge_project:
|
315
|
+
rubygems_version: 2.6.13
|
316
|
+
signing_key:
|
433
317
|
specification_version: 4
|
434
318
|
summary: Kill Bill Analytics UI mountable engine
|
435
319
|
test_files:
|
436
320
|
- test/kanaui_test.rb
|
437
|
-
- test/test_helper.rb
|
438
321
|
- test/fixtures/kanaui/dashboards.yml
|
439
322
|
- test/unit/helpers/kanaui/tests_helper_test.rb
|
323
|
+
- test/test_helper.rb
|
440
324
|
- test/integration/navigation_test.rb
|
441
|
-
- test/dummy/Rakefile
|
442
|
-
- test/dummy/README.rdoc
|
443
|
-
- test/dummy/config.ru
|
444
325
|
- test/dummy/public/404.html
|
445
326
|
- test/dummy/public/422.html
|
446
327
|
- test/dummy/public/500.html
|
447
328
|
- test/dummy/public/favicon.ico
|
329
|
+
- test/dummy/config/secrets.yml
|
330
|
+
- test/dummy/config/locales/en.yml
|
448
331
|
- test/dummy/config/environment.rb
|
449
332
|
- test/dummy/config/routes.rb
|
450
|
-
- test/dummy/config/database.yml
|
451
|
-
- test/dummy/config/boot.rb
|
452
|
-
- test/dummy/config/application.rb
|
453
|
-
- test/dummy/config/locales/en.yml
|
454
333
|
- test/dummy/config/environments/test.rb
|
455
334
|
- test/dummy/config/environments/production.rb
|
456
335
|
- test/dummy/config/environments/development.rb
|
336
|
+
- test/dummy/config/initializers/new_framework_defaults_5_1.rb
|
457
337
|
- test/dummy/config/initializers/inflections.rb
|
338
|
+
- test/dummy/config/initializers/assets.rb
|
458
339
|
- test/dummy/config/initializers/backtrace_silencers.rb
|
459
340
|
- test/dummy/config/initializers/killbill_client.rb
|
341
|
+
- test/dummy/config/initializers/filter_parameter_logging.rb
|
460
342
|
- test/dummy/config/initializers/mime_types.rb
|
343
|
+
- test/dummy/config/initializers/application_controller_renderer.rb
|
461
344
|
- test/dummy/config/initializers/secret_token.rb
|
345
|
+
- test/dummy/config/initializers/cookies_serializer.rb
|
462
346
|
- test/dummy/config/initializers/session_store.rb
|
463
347
|
- test/dummy/config/initializers/wrap_parameters.rb
|
348
|
+
- test/dummy/config/boot.rb
|
349
|
+
- test/dummy/config/application.rb
|
350
|
+
- test/dummy/Rakefile
|
464
351
|
- test/dummy/script/rails
|
352
|
+
- test/dummy/README.rdoc
|
465
353
|
- test/dummy/app/controllers/application_controller.rb
|
466
354
|
- test/dummy/app/helpers/application_helper.rb
|
355
|
+
- test/dummy/config.ru
|
356
|
+
- test/dummy/bin/rake
|
357
|
+
- test/dummy/bin/bundle
|
358
|
+
- test/dummy/bin/update
|
359
|
+
- test/dummy/bin/setup
|
360
|
+
- test/dummy/bin/yarn
|
361
|
+
- test/dummy/bin/rails
|
467
362
|
- test/functional/kanaui/tests_controller_test.rb
|