lanes 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +19 -0
- data/.jshintrc +3 -0
- data/Gemfile +9 -0
- data/Guardfile +15 -0
- data/LICENSE-MIT.txt +21 -0
- data/README.md +15 -0
- data/Rakefile +74 -0
- data/bin/lanes +5 -0
- data/client/images/ajax-loader.gif +0 -0
- data/client/images/dataTables/Sorting icons.psd +0 -0
- data/client/images/dataTables/back_disabled.png +0 -0
- data/client/images/dataTables/back_enabled.png +0 -0
- data/client/images/dataTables/back_enabled_hover.png +0 -0
- data/client/images/dataTables/favicon.ico +0 -0
- data/client/images/dataTables/forward_disabled.png +0 -0
- data/client/images/dataTables/forward_enabled.png +0 -0
- data/client/images/dataTables/forward_enabled_hover.png +0 -0
- data/client/images/dataTables/loading-background.png +0 -0
- data/client/images/dataTables/sort_asc.png +0 -0
- data/client/images/dataTables/sort_asc_disabled.png +0 -0
- data/client/images/dataTables/sort_both.png +0 -0
- data/client/images/dataTables/sort_desc.png +0 -0
- data/client/images/dataTables/sort_desc_disabled.png +0 -0
- data/client/images/logo-sm.png +0 -0
- data/client/javascripts/component/Base.coffee +39 -0
- data/client/javascripts/component/ChoicesInput.coffee +47 -0
- data/client/javascripts/component/Grid.coffee +199 -0
- data/client/javascripts/component/ModalDialog.coffee +44 -0
- data/client/javascripts/component/PopOver.coffee +52 -0
- data/client/javascripts/component/RadioGroup.coffee +59 -0
- data/client/javascripts/component/RecordFinder.coffee +143 -0
- data/client/javascripts/component/SelectField.coffee +43 -0
- data/client/javascripts/component/TaggedField.coffee +27 -0
- data/client/javascripts/component/grid/Editor.coffee +65 -0
- data/client/javascripts/component/grid/PopOverEditor.coffee +29 -0
- data/client/javascripts/component/grid/RowEditor.coffee +31 -0
- data/client/javascripts/component/grid/popover-editor.html +18 -0
- data/client/javascripts/component/grid/row-editor.html +16 -0
- data/client/javascripts/component/grid.html +4 -0
- data/client/javascripts/component/index.js +5 -0
- data/client/javascripts/component/modal.html +17 -0
- data/client/javascripts/component/popover.html +5 -0
- data/client/javascripts/component/record-finder/clause.skr +35 -0
- data/client/javascripts/component/record-finder/dialog.skr +4 -0
- data/client/javascripts/component/record-finder/field.skr +8 -0
- data/client/javascripts/data/Bootstrap.coffee +8 -0
- data/client/javascripts/data/ChangeSet.coffee +50 -0
- data/client/javascripts/data/Collection.coffee +111 -0
- data/client/javascripts/data/Config.coffee +15 -0
- data/client/javascripts/data/Model.coffee +269 -0
- data/client/javascripts/data/PubSub.coffee +68 -0
- data/client/javascripts/data/Query.coffee +184 -0
- data/client/javascripts/data/Roles.coffee +91 -0
- data/client/javascripts/data/Screens.coffee +157 -0
- data/client/javascripts/data/Sync.coffee +62 -0
- data/client/javascripts/data/User.coffee +70 -0
- data/client/javascripts/data/index.js +7 -0
- data/client/javascripts/data/mixins/HasCodeField.coffee +13 -0
- data/client/javascripts/extension/Base.coffee +9 -0
- data/client/javascripts/extension/Extensions.coffee +17 -0
- data/client/javascripts/extension/GlAccounts.coffee +9 -0
- data/client/javascripts/extension/index.js +6 -0
- data/client/javascripts/extension/load.js.erb +3 -0
- data/client/javascripts/lanes-complete.js +3 -0
- data/client/javascripts/lanes-workspace.js +1 -0
- data/client/javascripts/lib/MakeBaseClass.coffee +55 -0
- data/client/javascripts/lib/ModuleSupport.coffee +22 -0
- data/client/javascripts/lib/Templates.coffee +47 -0
- data/client/javascripts/lib/create-namespace.js +0 -0
- data/client/javascripts/lib/debounce.coffee +15 -0
- data/client/javascripts/lib/defer.coffee +7 -0
- data/client/javascripts/lib/el.js +115 -0
- data/client/javascripts/lib/index.js +9 -0
- data/client/javascripts/lib/loader.coffee +95 -0
- data/client/javascripts/lib/namespace.coffee +9 -0
- data/client/javascripts/lib/noConflict.coffee +14 -0
- data/client/javascripts/lib/promise_helpers.coffee +4 -0
- data/client/javascripts/lib/results.coffee +15 -0
- data/client/javascripts/lib/underscore.inflection.js +210 -0
- data/client/javascripts/lib/utilFunctions.coffee +51 -0
- data/client/javascripts/plugins/ResizeSensor.js +144 -0
- data/client/javascripts/plugins/index.js +4 -0
- data/client/javascripts/plugins/overlay.coffee +41 -0
- data/client/javascripts/plugins/trigger.coffee +15 -0
- data/client/javascripts/vendor/bootstrap/affix.js +142 -0
- data/client/javascripts/vendor/bootstrap/alert.js +92 -0
- data/client/javascripts/vendor/bootstrap/button.js +110 -0
- data/client/javascripts/vendor/bootstrap/carousel.js +223 -0
- data/client/javascripts/vendor/bootstrap/collapse.js +170 -0
- data/client/javascripts/vendor/bootstrap/dropdown.js +151 -0
- data/client/javascripts/vendor/bootstrap/modal.js +280 -0
- data/client/javascripts/vendor/bootstrap/popover.js +113 -0
- data/client/javascripts/vendor/bootstrap/scrollspy.js +170 -0
- data/client/javascripts/vendor/bootstrap/tab.js +128 -0
- data/client/javascripts/vendor/bootstrap/tooltip.js +457 -0
- data/client/javascripts/vendor/bootstrap/transition.js +59 -0
- data/client/javascripts/vendor/dataTables/dataTables.bootstrap.js +156 -0
- data/client/javascripts/vendor/dataTables/dataTables.scroller.js +1185 -0
- data/client/javascripts/vendor/dataTables/datatables.responsive.js +666 -0
- data/client/javascripts/vendor/dataTables/index.js +2 -0
- data/client/javascripts/vendor/dataTables/jquery.dataTables.js +14380 -0
- data/client/javascripts/vendor/jquery-2.js +9190 -0
- data/client/javascripts/vendor/jquery.tap.js +401 -0
- data/client/javascripts/vendor/magicsuggest.js +1565 -0
- data/client/javascripts/vendor/message-bus.js +285 -0
- data/client/javascripts/vendor/modern-stack.js +14 -0
- data/client/javascripts/vendor/packaged.js +13769 -0
- data/client/javascripts/view/Assets.coffee +9 -0
- data/client/javascripts/view/Base.coffee +231 -0
- data/client/javascripts/view/FormBindings.coffee +98 -0
- data/client/javascripts/view/Functions.coffee +13 -0
- data/client/javascripts/view/Helpers.coffee +77 -0
- data/client/javascripts/view/InterfaceState.coffee +88 -0
- data/client/javascripts/view/Keys.coffee +59 -0
- data/client/javascripts/view/ModelObserver.coffee +31 -0
- data/client/javascripts/view/ModelUpdate.coffee +8 -0
- data/client/javascripts/view/PubSub.coffee +29 -0
- data/client/javascripts/view/RenderContext.coffee +32 -0
- data/client/javascripts/view/SaveNotify.coffee +30 -0
- data/client/javascripts/view/Screen.coffee +30 -0
- data/client/javascripts/view/TimedHighlight.coffee +38 -0
- data/client/javascripts/view/TimedMask.coffee +65 -0
- data/client/javascripts/view/_button.html +3 -0
- data/client/javascripts/view/_toolbar.html +27 -0
- data/client/javascripts/view/index.js +10 -0
- data/client/javascripts/view/mixins/ScreenChangeListener.coffee +43 -0
- data/client/javascripts/view/model-update.html +13 -0
- data/client/javascripts/view/screen-definitions.js.erb +7 -0
- data/client/javascripts/workspace/ActiveScreensSwitcher.coffee +117 -0
- data/client/javascripts/workspace/Instance.es6 +60 -0
- data/client/javascripts/workspace/Layout.coffee +18 -0
- data/client/javascripts/workspace/LoginDialog.coffee +33 -0
- data/client/javascripts/workspace/Navbar.coffee +44 -0
- data/client/javascripts/workspace/Pages.coffee +46 -0
- data/client/javascripts/workspace/ScreensMenu.coffee +126 -0
- data/client/javascripts/workspace/index.js +12 -0
- data/client/javascripts/workspace/layout.html +4 -0
- data/client/javascripts/workspace/login-dialog.html +16 -0
- data/client/javascripts/workspace/menu.html +356 -0
- data/client/javascripts/workspace/menu_toggle.html +9 -0
- data/client/javascripts/workspace/navbar.html +19 -0
- data/client/javascripts/workspace/pages.html +6 -0
- data/client/javascripts/workspace/screens-menu.html +11 -0
- data/client/javascripts/workspace/screens-switcher.html +7 -0
- data/client/javascripts/workspace/tab.html +0 -0
- data/client/screens/user-management/UserEditScreen.coffee +21 -0
- data/client/screens/user-management/UserManagement.coffee +24 -0
- data/client/screens/user-management/grid-popover-editor.html +33 -0
- data/client/screens/user-management/index.css +4 -0
- data/client/screens/user-management/index.js +2 -0
- data/client/screens/user-management/user-management-styles.scss +7 -0
- data/client/screens/user-management/user-management.html +8 -0
- data/client/stylesheets/compoonents/all.scss +6 -0
- data/client/stylesheets/compoonents/changes-notification.scss +44 -0
- data/client/stylesheets/compoonents/grid-editors.scss +65 -0
- data/client/stylesheets/compoonents/grid.scss +301 -0
- data/client/stylesheets/compoonents/modal-dialog.scss +23 -0
- data/client/stylesheets/compoonents/record-finder.scss +71 -0
- data/client/stylesheets/compoonents/suggest.scss +266 -0
- data/client/stylesheets/fonts/icomoon.eot +0 -0
- data/client/stylesheets/fonts/icomoon.svg +160 -0
- data/client/stylesheets/fonts/icomoon.ttf +0 -0
- data/client/stylesheets/fonts/icomoon.woff +0 -0
- data/client/stylesheets/fonts/selection.json +3565 -0
- data/client/stylesheets/fonts/style.css +451 -0
- data/client/stylesheets/fonts.scss +38 -0
- data/client/stylesheets/forms.scss +75 -0
- data/client/stylesheets/index.css +4 -0
- data/client/stylesheets/keybindings.scss +6 -0
- data/client/stylesheets/lanes-workspace.scss +17 -0
- data/client/stylesheets/layout.scss +272 -0
- data/client/stylesheets/plugins/all.scss +2 -0
- data/client/stylesheets/plugins/overlay.scss +63 -0
- data/client/stylesheets/plugins/resize-sensor.scss +24 -0
- data/client/stylesheets/screens.scss +66 -0
- data/client/stylesheets/tabs.scss +148 -0
- data/client/stylesheets/vendor/bootstrap/_alerts.scss +68 -0
- data/client/stylesheets/vendor/bootstrap/_badges.scss +57 -0
- data/client/stylesheets/vendor/bootstrap/_breadcrumbs.scss +26 -0
- data/client/stylesheets/vendor/bootstrap/_button-groups.scss +240 -0
- data/client/stylesheets/vendor/bootstrap/_buttons.scss +157 -0
- data/client/stylesheets/vendor/bootstrap/_carousel.scss +243 -0
- data/client/stylesheets/vendor/bootstrap/_close.scss +35 -0
- data/client/stylesheets/vendor/bootstrap/_code.scss +68 -0
- data/client/stylesheets/vendor/bootstrap/_component-animations.scss +35 -0
- data/client/stylesheets/vendor/bootstrap/_dropdowns.scss +215 -0
- data/client/stylesheets/vendor/bootstrap/_forms.scss +538 -0
- data/client/stylesheets/vendor/bootstrap/_glyphicons.scss +237 -0
- data/client/stylesheets/vendor/bootstrap/_grid.scss +84 -0
- data/client/stylesheets/vendor/bootstrap/_input-groups.scss +166 -0
- data/client/stylesheets/vendor/bootstrap/_jumbotron.scss +48 -0
- data/client/stylesheets/vendor/bootstrap/_labels.scss +66 -0
- data/client/stylesheets/vendor/bootstrap/_list-group.scss +132 -0
- data/client/stylesheets/vendor/bootstrap/_media.scss +56 -0
- data/client/stylesheets/vendor/bootstrap/_mixins.scss +39 -0
- data/client/stylesheets/vendor/bootstrap/_modals.scss +150 -0
- data/client/stylesheets/vendor/bootstrap/_navbar.scss +659 -0
- data/client/stylesheets/vendor/bootstrap/_navs.scss +242 -0
- data/client/stylesheets/vendor/bootstrap/_normalize.scss +425 -0
- data/client/stylesheets/vendor/bootstrap/_pager.scss +55 -0
- data/client/stylesheets/vendor/bootstrap/_pagination.scss +88 -0
- data/client/stylesheets/vendor/bootstrap/_panels.scss +243 -0
- data/client/stylesheets/vendor/bootstrap/_popovers.scss +133 -0
- data/client/stylesheets/vendor/bootstrap/_print.scss +101 -0
- data/client/stylesheets/vendor/bootstrap/_progress-bars.scss +105 -0
- data/client/stylesheets/vendor/bootstrap/_responsive-embed.scss +34 -0
- data/client/stylesheets/vendor/bootstrap/_responsive-utilities.scss +174 -0
- data/client/stylesheets/vendor/bootstrap/_scaffolding.scss +150 -0
- data/client/stylesheets/vendor/bootstrap/_tables.scss +233 -0
- data/client/stylesheets/vendor/bootstrap/_theme.scss +258 -0
- data/client/stylesheets/vendor/bootstrap/_thumbnails.scss +38 -0
- data/client/stylesheets/vendor/bootstrap/_tooltip.scss +95 -0
- data/client/stylesheets/vendor/bootstrap/_type.scss +304 -0
- data/client/stylesheets/vendor/bootstrap/_utilities.scss +57 -0
- data/client/stylesheets/vendor/bootstrap/_variables.scss +850 -0
- data/client/stylesheets/vendor/bootstrap/_wells.scss +29 -0
- data/client/stylesheets/vendor/bootstrap/bootstrap.scss +50 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_alerts.scss +14 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_background-variant.scss +11 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_border-radius.scss +18 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_buttons.scss +50 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_center-block.scss +7 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_clearfix.scss +22 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_forms.scss +84 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_gradients.scss +58 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_grid-framework.scss +81 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_grid.scss +122 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_hide-text.scss +21 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_image.scss +34 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_labels.scss +12 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_list-group.scss +31 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_nav-divider.scss +10 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_nav-vertical-align.scss +9 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_opacity.scss +8 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_pagination.scss +23 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_panels.scss +24 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_progress-bar.scss +10 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_reset-filter.scss +8 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_resize.scss +6 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_responsive-visibility.scss +21 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_size.scss +10 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_tab-focus.scss +9 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_table-row.scss +28 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_text-emphasis.scss +11 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_text-overflow.scss +8 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_vendor-prefixes.scss +219 -0
- data/client/stylesheets/vendor/bootstrap-custom-grid.scss +85 -0
- data/client/stylesheets/vendor/bootstrap-custom-modals.scss +150 -0
- data/client/stylesheets/vendor/bootstrap.scss +69 -0
- data/client/stylesheets/vendor/dataTables.scss +4 -0
- data/config/database.yml +9 -0
- data/config/puma.rb +7 -0
- data/config.ru +4 -0
- data/db/migrate/20140615031600_create_hip_users.rb +17 -0
- data/db/seed.rb +37 -0
- data/foo/Gemfile +5 -0
- data/foo/Guardfile +13 -0
- data/foo/foo/Gemfile +5 -0
- data/foo/foo/lib/foo.rb +7 -0
- data/foo/lib/foo/version.rb +3 -0
- data/foo/lib/foo.rb +8 -0
- data/lanes.gemspec +54 -0
- data/lib/generators/lanes/migrations/install_generator.rb +42 -0
- data/lib/lanes/access/locked_fields.rb +43 -0
- data/lib/lanes/access/role.rb +58 -0
- data/lib/lanes/access/role_collection.rb +75 -0
- data/lib/lanes/access/roles/administrator.rb +25 -0
- data/lib/lanes/access/roles/support.rb +13 -0
- data/lib/lanes/access/user_maint_screen.rb +32 -0
- data/lib/lanes/access.rb +50 -0
- data/lib/lanes/api/asset_pipeline.rb +59 -0
- data/lib/lanes/api/authentication_helper.rb +21 -0
- data/lib/lanes/api/authentication_provider.rb +45 -0
- data/lib/lanes/api/controller.rb +290 -0
- data/lib/lanes/api/default_routes.rb +35 -0
- data/lib/lanes/api/eco.js +516 -0
- data/lib/lanes/api/error_formatter.rb +37 -0
- data/lib/lanes/api/helper_methods.rb +32 -0
- data/lib/lanes/api/javascript_processor.rb +116 -0
- data/lib/lanes/api/pub_sub.rb +33 -0
- data/lib/lanes/api/request_wrapper.rb +42 -0
- data/lib/lanes/api/root.rb +103 -0
- data/lib/lanes/api/skr_templates.rb +60 -0
- data/lib/lanes/api/test_specs.rb +59 -0
- data/lib/lanes/api/updates.rb +38 -0
- data/lib/lanes/api.rb +27 -0
- data/lib/lanes/cli.rb +13 -0
- data/lib/lanes/concerns/all.rb +16 -0
- data/lib/lanes/concerns/api_path.rb +21 -0
- data/lib/lanes/concerns/association_extensions.rb +85 -0
- data/lib/lanes/concerns/attr_accessor_with_default.rb +62 -0
- data/lib/lanes/concerns/code_identifier.rb +43 -0
- data/lib/lanes/concerns/export_associations.rb +52 -0
- data/lib/lanes/concerns/export_join_tables.rb +39 -0
- data/lib/lanes/concerns/export_methods.rb +104 -0
- data/lib/lanes/concerns/export_scope.rb +66 -0
- data/lib/lanes/concerns/exported_limit_evaluator.rb +17 -0
- data/lib/lanes/concerns/immutable_model.rb +32 -0
- data/lib/lanes/concerns/locked_fields.rb +84 -0
- data/lib/lanes/concerns/pub_sub.rb +105 -0
- data/lib/lanes/concerns/queries.rb +20 -0
- data/lib/lanes/concerns/random_hash_code.rb +40 -0
- data/lib/lanes/concerns/sanitize_api_data.rb +15 -0
- data/lib/lanes/concerns/set_attribute_data.rb +154 -0
- data/lib/lanes/concerns/track_modifications.rb +51 -0
- data/lib/lanes/concerns/visible_id_identifier.rb +53 -0
- data/lib/lanes/configuration.rb +85 -0
- data/lib/lanes/db/migration_helpers.rb +178 -0
- data/lib/lanes/db/migrations.rb +13 -0
- data/lib/lanes/db/seed.rb +27 -0
- data/lib/lanes/db.rb +86 -0
- data/lib/lanes/environment.rb +19 -0
- data/lib/lanes/extension.rb +72 -0
- data/lib/lanes/generators/app/Gemfile +5 -0
- data/lib/lanes/generators/app/Guardfile +13 -0
- data/lib/lanes/generators/app/Rakefile +9 -0
- data/lib/lanes/generators/app/config/database.yml +9 -0
- data/lib/lanes/generators/app/config.ru +4 -0
- data/lib/lanes/generators/app/lib/main_class/version.rb +3 -0
- data/lib/lanes/generators/app/lib/main_class.rb +8 -0
- data/lib/lanes/generators/app.rb +36 -0
- data/lib/lanes/guard_tasks.rb +44 -0
- data/lib/lanes/logger.rb +37 -0
- data/lib/lanes/model.rb +26 -0
- data/lib/lanes/numbers.rb +72 -0
- data/lib/lanes/rails_engine.rb +5 -0
- data/lib/lanes/screens.rb +126 -0
- data/lib/lanes/spec_asset_expander.rb +43 -0
- data/lib/lanes/strings.rb +56 -0
- data/lib/lanes/user.rb +127 -0
- data/lib/lanes/validators/all.rb +2 -0
- data/lib/lanes/validators/email.rb +17 -0
- data/lib/lanes/validators/set.rb +18 -0
- data/lib/lanes/version.rb +5 -0
- data/lib/lanes.rb +22 -0
- data/npm-build/README +1 -0
- data/npm-build/compile.coffee +15 -0
- data/npm-build/package.json +59 -0
- data/npm-build/shims/underscore.js +1416 -0
- data/npm-build/template.js +33 -0
- data/public/javascripts/jasmine_examples/Player.js +22 -0
- data/public/javascripts/jasmine_examples/Song.js +7 -0
- data/spec/api/javascript_processor_spec.rb +107 -0
- data/spec/api/user_spec.rb +52 -0
- data/spec/client/component/ChoicesInputSpec.coffee +12 -0
- data/spec/client/component/foo_spec.coffee +4 -0
- data/spec/client/foo_spec.js +0 -0
- data/spec/client/jasmine_examples/PlayerSpec.js +0 -0
- data/spec/client/support/jasmine.yml +128 -0
- data/spec/client/support/jasmine_helper.rb +15 -0
- data/spec/concerns/api_path_spec.rb +14 -0
- data/spec/concerns/association_extensions_spec.rb +30 -0
- data/spec/concerns/attr_accessor_with_default_spec.rb +57 -0
- data/spec/concerns/code_identifier_spec.rb +45 -0
- data/spec/concerns/export_associations_spec.rb +7 -0
- data/spec/concerns/export_methods_spec.rb +43 -0
- data/spec/concerns/export_scope_spec.rb +15 -0
- data/spec/concerns/exported_limits_spec.rb +47 -0
- data/spec/concerns/pub_sub_spec.rb +83 -0
- data/spec/concerns/set_attribute_data_spec.rb +66 -0
- data/spec/configuration_spec.rb +26 -0
- data/spec/fixtures/lanes/users.yml +13 -0
- data/spec/helpers/.gitkeep +0 -0
- data/spec/helpers/SpecHelper.js +18 -0
- data/spec/locked_fields_spec.rb +27 -0
- data/spec/numbers_spec.rb +26 -0
- data/spec/role_collection_spec.rb +19 -0
- data/spec/spec_helper.rb +163 -0
- data/spec/strings_spec.rb +41 -0
- data/spec/testing_models.rb +54 -0
- data/spec/user_role_spec.rb +7 -0
- data/spec/user_spec.rb +53 -0
- data/tasks/migrations.rake +22 -0
- data/tasks/publish.rake +8 -0
- data/views/index.erb +29 -0
- data/views/specs.erb +25 -0
- data/yard_ext/all.rb +9 -0
- data/yard_ext/code_identifier_handler.rb +33 -0
- data/yard_ext/concern_meta_methods.rb +60 -0
- data/yard_ext/config_options.rb +27 -0
- data/yard_ext/exported_scope.rb +4 -0
- data/yard_ext/immutable_handler.rb +17 -0
- data/yard_ext/json_attr_accessor.rb +22 -0
- data/yard_ext/locked_fields_handler.rb +21 -0
- data/yard_ext/templates/default/layout/html/layout.erb +20 -0
- data/yard_ext/templates/default/method_details/html/github_link.erb +1 -0
- data/yard_ext/templates/default/method_details/setup.rb +3 -0
- data/yard_ext/validators.rb +1 -0
- data/yard_ext/visible_id_handler.rb +38 -0
- metadata +772 -0
@@ -0,0 +1,451 @@
|
|
1
|
+
|
2
|
+
.icon-cloud:before {
|
3
|
+
content: "\e649";
|
4
|
+
}
|
5
|
+
.icon-cloud-download:before {
|
6
|
+
content: "\e64a";
|
7
|
+
}
|
8
|
+
.icon-enter:before {
|
9
|
+
content: "\e64b";
|
10
|
+
}
|
11
|
+
.icon-exit:before {
|
12
|
+
content: "\e64c";
|
13
|
+
}
|
14
|
+
.icon-arrow-up:before {
|
15
|
+
content: "\e64d";
|
16
|
+
}
|
17
|
+
.icon-arrow-up-right:before {
|
18
|
+
content: "\e64e";
|
19
|
+
}
|
20
|
+
.icon-arrow-down:before {
|
21
|
+
content: "\e64f";
|
22
|
+
}
|
23
|
+
.icon-arrow-left:before {
|
24
|
+
content: "\e650";
|
25
|
+
}
|
26
|
+
.icon-arrow-up2:before {
|
27
|
+
content: "\e651";
|
28
|
+
}
|
29
|
+
.icon-arrow-right:before {
|
30
|
+
content: "\e652";
|
31
|
+
}
|
32
|
+
.icon-arrow-down2:before {
|
33
|
+
content: "\e653";
|
34
|
+
}
|
35
|
+
.icon-arrow-left2:before {
|
36
|
+
content: "\e654";
|
37
|
+
}
|
38
|
+
.icon-books:before {
|
39
|
+
content: "\e601";
|
40
|
+
}
|
41
|
+
.icon-library:before {
|
42
|
+
content: "\e602";
|
43
|
+
}
|
44
|
+
.icon-cart:before {
|
45
|
+
content: "\e603";
|
46
|
+
}
|
47
|
+
.icon-coin:before {
|
48
|
+
content: "\e604";
|
49
|
+
}
|
50
|
+
.icon-envelope:before {
|
51
|
+
content: "\e605";
|
52
|
+
}
|
53
|
+
.icon-map:before {
|
54
|
+
content: "\e606";
|
55
|
+
}
|
56
|
+
.icon-clock:before {
|
57
|
+
content: "\e62f";
|
58
|
+
}
|
59
|
+
.icon-clock2:before {
|
60
|
+
content: "\e630";
|
61
|
+
}
|
62
|
+
.icon-alarm:before {
|
63
|
+
content: "\e607";
|
64
|
+
}
|
65
|
+
.icon-bell:before {
|
66
|
+
content: "\e62a";
|
67
|
+
}
|
68
|
+
.icon-stopwatch:before {
|
69
|
+
content: "\e631";
|
70
|
+
}
|
71
|
+
.icon-cabinet:before {
|
72
|
+
content: "\e608";
|
73
|
+
}
|
74
|
+
.icon-drawer:before {
|
75
|
+
content: "\e609";
|
76
|
+
}
|
77
|
+
.icon-drawer2:before {
|
78
|
+
content: "\e60a";
|
79
|
+
}
|
80
|
+
.icon-box-remove:before {
|
81
|
+
content: "\e623";
|
82
|
+
}
|
83
|
+
.icon-download:before {
|
84
|
+
content: "\e60b";
|
85
|
+
}
|
86
|
+
.icon-upload:before {
|
87
|
+
content: "\e60c";
|
88
|
+
}
|
89
|
+
.icon-disk:before {
|
90
|
+
content: "\e628";
|
91
|
+
}
|
92
|
+
.icon-bubbles:before {
|
93
|
+
content: "\e62b";
|
94
|
+
}
|
95
|
+
.icon-bubbles2:before {
|
96
|
+
content: "\e62c";
|
97
|
+
}
|
98
|
+
.icon-users:before {
|
99
|
+
content: "\e62d";
|
100
|
+
}
|
101
|
+
.icon-users2:before {
|
102
|
+
content: "\e62e";
|
103
|
+
}
|
104
|
+
.icon-user:before {
|
105
|
+
content: "\e600";
|
106
|
+
}
|
107
|
+
.icon-busy:before {
|
108
|
+
content: "\e60d";
|
109
|
+
}
|
110
|
+
.icon-binoculars:before {
|
111
|
+
content: "\e60e";
|
112
|
+
}
|
113
|
+
.icon-search:before {
|
114
|
+
content: "\e60f";
|
115
|
+
}
|
116
|
+
.icon-zoomin:before {
|
117
|
+
content: "\e610";
|
118
|
+
}
|
119
|
+
.icon-zoomout:before {
|
120
|
+
content: "\e611";
|
121
|
+
}
|
122
|
+
.icon-wrench2:before {
|
123
|
+
content: "\e612";
|
124
|
+
}
|
125
|
+
.icon-settings:before {
|
126
|
+
content: "\e613";
|
127
|
+
}
|
128
|
+
.icon-cog:before {
|
129
|
+
content: "\e614";
|
130
|
+
}
|
131
|
+
.icon-hammer:before {
|
132
|
+
content: "\e615";
|
133
|
+
}
|
134
|
+
.icon-wand:before {
|
135
|
+
content: "\e616";
|
136
|
+
}
|
137
|
+
.icon-bug:before {
|
138
|
+
content: "\e617";
|
139
|
+
}
|
140
|
+
.icon-pie:before {
|
141
|
+
content: "\e618";
|
142
|
+
}
|
143
|
+
.icon-stats:before {
|
144
|
+
content: "\e619";
|
145
|
+
}
|
146
|
+
.icon-bars:before {
|
147
|
+
content: "\e61a";
|
148
|
+
}
|
149
|
+
.icon-gift:before {
|
150
|
+
content: "\e61b";
|
151
|
+
}
|
152
|
+
.icon-meter:before {
|
153
|
+
content: "\e632";
|
154
|
+
}
|
155
|
+
.icon-meter2:before {
|
156
|
+
content: "\e633";
|
157
|
+
}
|
158
|
+
.icon-dashboard2:before {
|
159
|
+
content: "\e634";
|
160
|
+
}
|
161
|
+
.icon-fire:before {
|
162
|
+
content: "\e635";
|
163
|
+
}
|
164
|
+
.icon-remove:before {
|
165
|
+
content: "\e624";
|
166
|
+
}
|
167
|
+
.icon-remove2:before {
|
168
|
+
content: "\e625";
|
169
|
+
}
|
170
|
+
.icon-briefcase2:before {
|
171
|
+
content: "\e636";
|
172
|
+
}
|
173
|
+
.icon-switch:before {
|
174
|
+
content: "\e637";
|
175
|
+
}
|
176
|
+
.icon-powercord:before {
|
177
|
+
content: "\e638";
|
178
|
+
}
|
179
|
+
.icon-download2:before {
|
180
|
+
content: "\e629";
|
181
|
+
}
|
182
|
+
.icon-globe2:before {
|
183
|
+
content: "\e639";
|
184
|
+
}
|
185
|
+
.icon-link:before {
|
186
|
+
content: "\e63a";
|
187
|
+
}
|
188
|
+
.icon-thumbs-up:before {
|
189
|
+
content: "\e63b";
|
190
|
+
}
|
191
|
+
.icon-thumbs-up2:before {
|
192
|
+
content: "\e63c";
|
193
|
+
}
|
194
|
+
.icon-point-up:before {
|
195
|
+
content: "\e63d";
|
196
|
+
}
|
197
|
+
.icon-point-right:before {
|
198
|
+
content: "\e63e";
|
199
|
+
}
|
200
|
+
.icon-point-down:before {
|
201
|
+
content: "\e63f";
|
202
|
+
}
|
203
|
+
.icon-point-left:before {
|
204
|
+
content: "\e640";
|
205
|
+
}
|
206
|
+
.icon-warning2:before {
|
207
|
+
content: "\e641";
|
208
|
+
}
|
209
|
+
.icon-notification:before {
|
210
|
+
content: "\e642";
|
211
|
+
}
|
212
|
+
.icon-question:before {
|
213
|
+
content: "\e643";
|
214
|
+
}
|
215
|
+
.icon-info:before {
|
216
|
+
content: "\e644";
|
217
|
+
}
|
218
|
+
.icon-info2:before {
|
219
|
+
content: "\e645";
|
220
|
+
}
|
221
|
+
.icon-cancel-circle:before {
|
222
|
+
content: "\e626";
|
223
|
+
}
|
224
|
+
.icon-close:before {
|
225
|
+
content: "\e627";
|
226
|
+
}
|
227
|
+
.icon-loop:before {
|
228
|
+
content: "\e61c";
|
229
|
+
}
|
230
|
+
.icon-shuffle:before {
|
231
|
+
content: "\e61d";
|
232
|
+
}
|
233
|
+
.icon-tab:before {
|
234
|
+
content: "\e61e";
|
235
|
+
}
|
236
|
+
.icon-table:before {
|
237
|
+
content: "\e646";
|
238
|
+
}
|
239
|
+
.icon-table2:before {
|
240
|
+
content: "\e647";
|
241
|
+
}
|
242
|
+
.icon-insert-template:before {
|
243
|
+
content: "\e648";
|
244
|
+
}
|
245
|
+
.icon-paragraph-justify:before {
|
246
|
+
content: "\e61f";
|
247
|
+
}
|
248
|
+
.icon-newtab:before {
|
249
|
+
content: "\e620";
|
250
|
+
}
|
251
|
+
.icon-file-pdf:before {
|
252
|
+
content: "\e621";
|
253
|
+
}
|
254
|
+
.icon-file-powerpoint:before {
|
255
|
+
content: "\e622";
|
256
|
+
}
|
257
|
+
.icon-heart:before {
|
258
|
+
content: "\f004";
|
259
|
+
}
|
260
|
+
.icon-star:before {
|
261
|
+
content: "\f005";
|
262
|
+
}
|
263
|
+
.icon-star-o:before {
|
264
|
+
content: "\f006";
|
265
|
+
}
|
266
|
+
.icon-check:before {
|
267
|
+
content: "\f00c";
|
268
|
+
}
|
269
|
+
.icon-times:before {
|
270
|
+
content: "\f00d";
|
271
|
+
}
|
272
|
+
.icon-search-plus:before {
|
273
|
+
content: "\f00e";
|
274
|
+
}
|
275
|
+
.icon-search-minus:before {
|
276
|
+
content: "\f010";
|
277
|
+
}
|
278
|
+
.icon-gear:before {
|
279
|
+
content: "\f013";
|
280
|
+
}
|
281
|
+
.icon-trash-o:before {
|
282
|
+
content: "\f014";
|
283
|
+
}
|
284
|
+
.icon-refresh:before {
|
285
|
+
content: "\f021";
|
286
|
+
}
|
287
|
+
.icon-barcode:before {
|
288
|
+
content: "\f02a";
|
289
|
+
}
|
290
|
+
.icon-picture-o:before {
|
291
|
+
content: "\f03e";
|
292
|
+
}
|
293
|
+
.icon-pencil:before {
|
294
|
+
content: "\f040";
|
295
|
+
}
|
296
|
+
.icon-edit:before {
|
297
|
+
content: "\f044";
|
298
|
+
}
|
299
|
+
.icon-check-square-o:before {
|
300
|
+
content: "\f046";
|
301
|
+
}
|
302
|
+
.icon-plus-circle:before {
|
303
|
+
content: "\f055";
|
304
|
+
}
|
305
|
+
.icon-minus-circle:before {
|
306
|
+
content: "\f056";
|
307
|
+
}
|
308
|
+
.icon-times-circle:before {
|
309
|
+
content: "\f057";
|
310
|
+
}
|
311
|
+
.icon-check-circle:before {
|
312
|
+
content: "\f058";
|
313
|
+
}
|
314
|
+
.icon-question-circle:before {
|
315
|
+
content: "\f059";
|
316
|
+
}
|
317
|
+
.icon-times-circle-o:before {
|
318
|
+
content: "\f05c";
|
319
|
+
}
|
320
|
+
.icon-check-circle-o:before {
|
321
|
+
content: "\f05d";
|
322
|
+
}
|
323
|
+
.icon-plus:before {
|
324
|
+
content: "\f067";
|
325
|
+
}
|
326
|
+
.icon-warning:before {
|
327
|
+
content: "\f071";
|
328
|
+
}
|
329
|
+
.icon-plane:before {
|
330
|
+
content: "\f072";
|
331
|
+
}
|
332
|
+
.icon-retweet:before {
|
333
|
+
content: "\f079";
|
334
|
+
}
|
335
|
+
.icon-key:before {
|
336
|
+
content: "\f084";
|
337
|
+
}
|
338
|
+
.icon-gears:before {
|
339
|
+
content: "\f085";
|
340
|
+
}
|
341
|
+
.icon-thumbs-o-up:before {
|
342
|
+
content: "\f087";
|
343
|
+
}
|
344
|
+
.icon-thumbs-o-down:before {
|
345
|
+
content: "\f088";
|
346
|
+
}
|
347
|
+
.icon-heart-o:before {
|
348
|
+
content: "\f08a";
|
349
|
+
}
|
350
|
+
.icon-thumb-tack:before {
|
351
|
+
content: "\f08d";
|
352
|
+
}
|
353
|
+
.icon-phone:before {
|
354
|
+
content: "\f095";
|
355
|
+
}
|
356
|
+
.icon-credit-card:before {
|
357
|
+
content: "\f09d";
|
358
|
+
}
|
359
|
+
.icon-globe:before {
|
360
|
+
content: "\f0ac";
|
361
|
+
}
|
362
|
+
.icon-wrench:before {
|
363
|
+
content: "\f0ad";
|
364
|
+
}
|
365
|
+
.icon-briefcase:before {
|
366
|
+
content: "\f0b1";
|
367
|
+
}
|
368
|
+
.icon-group:before {
|
369
|
+
content: "\f0c0";
|
370
|
+
}
|
371
|
+
.icon-flask:before {
|
372
|
+
content: "\f0c3";
|
373
|
+
}
|
374
|
+
.icon-cut:before {
|
375
|
+
content: "\f0c4";
|
376
|
+
}
|
377
|
+
.icon-paperclip:before {
|
378
|
+
content: "\f0c6";
|
379
|
+
}
|
380
|
+
.icon-save:before {
|
381
|
+
content: "\f0c7";
|
382
|
+
}
|
383
|
+
.icon-magic:before {
|
384
|
+
content: "\f0d0";
|
385
|
+
}
|
386
|
+
.icon-truck:before {
|
387
|
+
content: "\f0d1";
|
388
|
+
}
|
389
|
+
.icon-money:before {
|
390
|
+
content: "\f0d6";
|
391
|
+
}
|
392
|
+
.icon-unsorted:before {
|
393
|
+
content: "\f0dc";
|
394
|
+
}
|
395
|
+
.icon-sort-down:before {
|
396
|
+
content: "\f0dd";
|
397
|
+
}
|
398
|
+
.icon-sort-up:before {
|
399
|
+
content: "\f0de";
|
400
|
+
}
|
401
|
+
.icon-rotate-left:before {
|
402
|
+
content: "\f0e2";
|
403
|
+
}
|
404
|
+
.icon-legal:before {
|
405
|
+
content: "\f0e3";
|
406
|
+
}
|
407
|
+
.icon-dashboard:before {
|
408
|
+
content: "\f0e4";
|
409
|
+
}
|
410
|
+
.icon-comment-o:before {
|
411
|
+
content: "\f0e5";
|
412
|
+
}
|
413
|
+
.icon-flash:before {
|
414
|
+
content: "\f0e7";
|
415
|
+
}
|
416
|
+
.icon-sitemap:before {
|
417
|
+
content: "\f0e8";
|
418
|
+
}
|
419
|
+
.icon-lightbulb-o:before {
|
420
|
+
content: "\f0eb";
|
421
|
+
}
|
422
|
+
.icon-user-md:before {
|
423
|
+
content: "\f0f0";
|
424
|
+
}
|
425
|
+
.icon-bell-o:before {
|
426
|
+
content: "\f0f3";
|
427
|
+
}
|
428
|
+
.icon-building-o:before {
|
429
|
+
content: "\f0f7";
|
430
|
+
}
|
431
|
+
.icon-hospital-o:before {
|
432
|
+
content: "\f0f8";
|
433
|
+
}
|
434
|
+
.icon-beer:before {
|
435
|
+
content: "\f0fc";
|
436
|
+
}
|
437
|
+
.icon-smile-o:before {
|
438
|
+
content: "\f118";
|
439
|
+
}
|
440
|
+
.icon-frown-o:before {
|
441
|
+
content: "\f119";
|
442
|
+
}
|
443
|
+
.icon-meh-o:before {
|
444
|
+
content: "\f11a";
|
445
|
+
}
|
446
|
+
.icon-eraser:before {
|
447
|
+
content: "\f12d";
|
448
|
+
}
|
449
|
+
.icon-minus-square-o:before {
|
450
|
+
content: "\f147";
|
451
|
+
}
|
@@ -0,0 +1,38 @@
|
|
1
|
+
@font-face {
|
2
|
+
font-family: 'skr-icon';
|
3
|
+
src:url(font-path('fonts/icomoon.eot') + '?-7u8s0f');
|
4
|
+
src:url(font-path('fonts/icomoon.eot') + '?#iefix-7u8s0f') format('embedded-opentype'),
|
5
|
+
url(font-path('fonts/icomoon.woff') + '?-7u8s0f') format('woff'),
|
6
|
+
url(font-path('fonts/icomoon.ttf') + '?-7u8s0f') format('truetype'),
|
7
|
+
url(font-path('fonts/icomoon.svg') + '?-7u8s0f#icomoon') format('svg');
|
8
|
+
font-weight: normal;
|
9
|
+
font-style: normal;
|
10
|
+
}
|
11
|
+
.lanes {
|
12
|
+
.font-icon-display {
|
13
|
+
font-family: 'skr-icon';
|
14
|
+
speak: none;
|
15
|
+
font-style: normal;
|
16
|
+
font-weight: normal;
|
17
|
+
font-variant: normal;
|
18
|
+
text-transform: none;
|
19
|
+
line-height: 1;
|
20
|
+
|
21
|
+
position: relative;
|
22
|
+
top: 1px;
|
23
|
+
display: inline-block;
|
24
|
+
|
25
|
+
/* Better Font Rendering =========== */
|
26
|
+
-webkit-font-smoothing: antialiased;
|
27
|
+
-moz-osx-font-smoothing: grayscale;
|
28
|
+
}
|
29
|
+
[class^="icon-"], [class*=" icon-"] {
|
30
|
+
@extend .font-icon-display;
|
31
|
+
}
|
32
|
+
|
33
|
+
@import "CSS:fonts/style";
|
34
|
+
|
35
|
+
.icon-reset:before {
|
36
|
+
@extend .icon-refresh:before;
|
37
|
+
}
|
38
|
+
}
|
@@ -0,0 +1,75 @@
|
|
1
|
+
|
2
|
+
label.skr {
|
3
|
+
white-space: nowrap;
|
4
|
+
b {
|
5
|
+
display: inline-block;
|
6
|
+
font-weight: 600;
|
7
|
+
text-indent: 5px;
|
8
|
+
}
|
9
|
+
input {
|
10
|
+
@extend .form-control;
|
11
|
+
margin-top: 5px;
|
12
|
+
}
|
13
|
+
.input-group-btn {
|
14
|
+
.btn {
|
15
|
+
margin-top: 5px;
|
16
|
+
}
|
17
|
+
}
|
18
|
+
div.ro-input {
|
19
|
+
margin-top: 5px;
|
20
|
+
font-weight: normal;
|
21
|
+
@extend .form-control;
|
22
|
+
cursor: not-allowed;
|
23
|
+
}
|
24
|
+
|
25
|
+
.feedback {
|
26
|
+
&.error{
|
27
|
+
@extend .font-icon-display;
|
28
|
+
@extend .icon-warning;
|
29
|
+
@extend .form-control-feedback;
|
30
|
+
display: inline;
|
31
|
+
}
|
32
|
+
display: none;
|
33
|
+
margin-right: 4px;
|
34
|
+
cursor: pointer;
|
35
|
+
}
|
36
|
+
select{
|
37
|
+
display: block;
|
38
|
+
@extend .form-control;
|
39
|
+
margin-top: 5px;
|
40
|
+
}
|
41
|
+
}
|
42
|
+
|
43
|
+
fieldset.bordered {
|
44
|
+
border: 1px solid $input-border;
|
45
|
+
border-radius: $border-radius-large;
|
46
|
+
padding: 10px;
|
47
|
+
legend {
|
48
|
+
display: inline-block;
|
49
|
+
width: auto;
|
50
|
+
border: none;
|
51
|
+
margin: 0;
|
52
|
+
padding: 0 5px;
|
53
|
+
margin-bottom: 0;
|
54
|
+
.toggled {
|
55
|
+
&:after {
|
56
|
+
@extend .icon-sort-down:before;
|
57
|
+
font-family: 'skr-icon';
|
58
|
+
cursor: pointer;
|
59
|
+
}
|
60
|
+
}
|
61
|
+
}
|
62
|
+
|
63
|
+
}
|
64
|
+
|
65
|
+
.skr .updated, .skr div.ro-input.updated {
|
66
|
+
$color-rgba: rgba(red($input-border-focus), green($input-border-focus), blue($input-border-focus), .6);
|
67
|
+
border-color: $color-rgba;
|
68
|
+
outline: 0;
|
69
|
+
@include box-shadow(inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px $color-rgba);
|
70
|
+
}
|
71
|
+
|
72
|
+
.section-header {
|
73
|
+
@extend .page-header;
|
74
|
+
margin: ($line-height-computed/2) 0;
|
75
|
+
}
|
@@ -0,0 +1,17 @@
|
|
1
|
+
@import "fonts";
|
2
|
+
@import "vendor/bootstrap";
|
3
|
+
|
4
|
+
.lanes {
|
5
|
+
padding: 0px;
|
6
|
+
margin: 0px;
|
7
|
+
background-color: $body-bg;
|
8
|
+
position: relative;
|
9
|
+
min-height: 10px; // needs height for resizing sensor to function
|
10
|
+
@import "compoonents/all";
|
11
|
+
@import "plugins/all";
|
12
|
+
@import "layout";
|
13
|
+
@import "tabs";
|
14
|
+
@import "screens";
|
15
|
+
@import "forms";
|
16
|
+
@import "keybindings";
|
17
|
+
}
|