{"id":19016985,"url":"https://github.com/alchaplinsky/polymer-core-rails","last_synced_at":"2025-08-22T23:19:24.815Z","repository":{"id":18865170,"uuid":"22081977","full_name":"alchaplinsky/polymer-core-rails","owner":"alchaplinsky","description":"Polymer core elements for Ruby on Rails project","archived":false,"fork":false,"pushed_at":"2022-08-03T11:42:55.000Z","size":1415,"stargazers_count":32,"open_issues_count":7,"forks_count":17,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-02-01T15:15:51.458Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/alchaplinsky.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-07-21T22:03:46.000Z","updated_at":"2022-11-14T01:36:28.000Z","dependencies_parsed_at":"2022-08-07T09:00:59.854Z","dependency_job_id":null,"html_url":"https://github.com/alchaplinsky/polymer-core-rails","commit_stats":null,"previous_names":["alchapone/polymer-core-rails"],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alchaplinsky%2Fpolymer-core-rails","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alchaplinsky%2Fpolymer-core-rails/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alchaplinsky%2Fpolymer-core-rails/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alchaplinsky%2Fpolymer-core-rails/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/alchaplinsky","download_url":"https://codeload.github.com/alchaplinsky/polymer-core-rails/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240061111,"owners_count":19741959,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-08T19:45:26.218Z","updated_at":"2025-02-21T17:44:12.033Z","avatar_url":"https://github.com/alchaplinsky.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# PolymerCoreRails\n\n#### Since Polymer 1.0 release core-elements are now iron-elements. To use iron elements see [polymer-iron-rails](https://github.com/alchapone/polymer-iron-rails)\n\n\nPolymer Core elements are a set of utility elements including general-purpose UI elements (such as icons, layout elements,\nand toolbars), as well as non-UI elements providing features like AJAX, signaling and storage.\n\nPolymer-core-rails gem brings polymer core web components into your Rails project.\n\n## Installation\n\nAdd this line to your application's Gemfile:\n\n```ruby\ngem 'polymer-core-rails'\n```\n\nAnd then execute:\n\n    $ bundle\n\nOr install it yourself as:\n\n    $ gem install polymer-core-rails\n\n## Getting started\n\nIn order to use Polymer core elements you need to have\n`polymer` installed in your project. Use [polymer-rails](https://github.com/alchapone/polymer-rails) gem for adding `polymer` to your Rails application.\n\n```ruby\ngem 'polymer-rails'\ngem 'polymer-core-rails'\n```\n\nAfter running `bundle install` require needed core elements into your `application.html` manifest file.\n\n    //= require polymer/polymer\n    //= require core-ajax/core-ajax\n    //= require core-input/core-input\n    .....\n    //= require core-tooltip/core-tooltip\n\nEach component should be required only once. Thus if you've already required component that has dependencies, you don't need\nto explicitly require any of dependencies, otherwise it will raise exception.\n\n## Available elements\n\n* [core-a11y-keys](http://www.polymer-project.org/docs/elements/core-elements.html#core-a11y-keys)\n* [core-ajax](http://www.polymer-project.org/docs/elements/core-elements.html#core-ajax)\n* [core-animated-pages](http://www.polymer-project.org/docs/elements/core-elements.html#core-animated-pages)\n* [core-animation](http://www.polymer-project.org/docs/elements/core-elements.html#core-animation)\n* [core-collapse](http://www.polymer-project.org/docs/elements/core-elements.html#core-collapse)\n* [core-drag-drop](http://www.polymer-project.org/docs/elements/core-elements.html#core-drag-drop)\n* [core-drawer-panel](http://www.polymer-project.org/docs/elements/core-elements.html#core-drawer-panel)\n* [core-field](http://www.polymer-project.org/docs/elements/core-elements.html#core-field)\n* [core-header-panel](http://www.polymer-project.org/docs/elements/core-elements.html#core-header-panel)\n* [core-icon](http://www.polymer-project.org/docs/elements/core-elements.html#core-icon)\n* [core-icon-button](http://www.polymer-project.org/docs/elements/core-elements.html#core-icon-button)\n* [core-input](http://www.polymer-project.org/docs/elements/core-elements.html#core-input)\n* [core-list](http://www.polymer-project.org/docs/elements/core-elements.html#core-list)\n* [core-localstorage](http://www.polymer-project.org/docs/elements/core-elements.html#core-localstorage)\n* [core-media-query](http://www.polymer-project.org/docs/elements/core-elements.html#core-media-query)\n* [core-meta](http://www.polymer-project.org/docs/elements/core-elements.html#core-meta)\n* [core-overlay](http://www.polymer-project.org/docs/elements/core-elements.html#core-overlay)\n* [core-pages](http://www.polymer-project.org/docs/elements/core-elements.html#core-pages)\n* [core-range](http://www.polymer-project.org/docs/elements/core-elements.html#core-range)\n* [core-scroll-header-panel](http://www.polymer-project.org/docs/elements/core-elements.html#core-scroll-header-panel)\n* [core-selection](http://www.polymer-project.org/docs/elements/core-elements.html#core-selection)\n* [core-selector](http://www.polymer-project.org/docs/elements/core-elements.html#core-selector)\n* [core-shared-lib](http://www.polymer-project.org/docs/elements/core-elements.html#core-shared-lib)\n* [core-signals](http://www.polymer-project.org/docs/elements/core-elements.html#core-signals)\n* [core-splitter](http://www.polymer-project.org/docs/elements/core-elements.html#core-splitter)\n* [core-style](http://www.polymer-project.org/docs/elements/core-elements.html#core-style)\n* [core-toolbar](http://www.polymer-project.org/docs/elements/core-elements.html#core-toolbar)\n* [core-tooltip](http://www.polymer-project.org/docs/elements/core-elements.html#core-tooltip)\n* [core-transition](http://www.polymer-project.org/docs/elements/core-elements.html#core-transition)\n\n## Contributing\n\n1. Fork it ( https://github.com/[my-github-username]/polymer_core_rails/fork )\n2. Create your feature branch (`git checkout -b my-new-feature`)\n3. Commit your changes (`git commit -am 'Add some feature'`)\n4. Push to the branch (`git push origin my-new-feature`)\n5. Create a new Pull Request\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falchaplinsky%2Fpolymer-core-rails","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falchaplinsky%2Fpolymer-core-rails","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falchaplinsky%2Fpolymer-core-rails/lists"}