Releases: alchaplinsky/polymer-rails
Releases · alchaplinsky/polymer-rails
Update Polymer to v0.5.4
Updated polymer to v0.5.4
Update Polymer to v0.5.3 and bugfixes
- Updated Polymer to v0.5.3
- Fixed elements with
checked
attributes to be parsed as xml nodes - Fixed bug with striping closing tags for elements nested into elements with
selected/checked
attributes
v0.2.5 Assets compression
- Component generator now generates separate
.html
,.css
and.js
files which will be compiled into single component file. - Support of
.css.sass
and.js.coffee
extenstions. Stylesheets and javascripts can now be referenced in html component simply as<link href="component.css" />
and<script src="component.js"/>
- Assets compression. Now stylesheets and javascripts are being compressed while inlining into component if rails config enables compression (like in production env).
- Support of relative paths. You can now reference component's css and js files either relative to
/app/assets/components
directory or relative to specific component directory (which means you can cpecify file name only if all component files live in same directory).
v0.2.4 Polymer update to 0.5.1
- Updated Polymer to 0.5.1
- platform.js -> webcomponents.js. Be sure to edit your
application.js
manifest to requirepolymer/webcomponents
instead of platformpolymer/platform
v0.2.3
- Updated Polymer to 0.4.1
- Search for components in assets paths, as was discussed in PR12
- CSS link tags and scripts that are referencing to external resources, are now not replaced. So now it is possible to reference to exernal css and js on cdn or fonts.googleapis.com from the component
- Solved issue #15 with nokogiri
v0.2.2 Polymer update to 0.4.0
- Support of Rails 3.2
- Updated Polymer to 0.4.0
v0.2.1 updated Polymer to 0.3.5
- Updated Polymer to 0.3.5. Release notes can be found here https://github.com/Polymer/polymer/releases/tag/0.3.5
v0.2.0
- Added sprockets processor to process all components and automatically compile assets (sass, coffee) files and inline them into component's
html
- Added .bowerrc file to install generator in order to configure bower to install components into
vendor/assets/components
directory - Added specs
- Fixed Readme.md