Skip to content

Releases: alchaplinsky/polymer-rails

Update Polymer to v0.5.4

29 Jan 04:11
Compare
Choose a tag to compare

Updated polymer to v0.5.4

Update Polymer to v0.5.3 and bugfixes

22 Jan 04:15
Compare
Choose a tag to compare
  • 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

28 Nov 05:51
Compare
Choose a tag to compare
  • 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

14 Nov 05:58
Compare
Choose a tag to compare
  • Updated Polymer to 0.5.1
  • platform.js -> webcomponents.js. Be sure to edit your application.js manifest to require polymer/webcomponents instead of platform polymer/platform

v0.2.3

03 Oct 02:41
Compare
Choose a tag to compare
  • 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

01 Sep 18:04
Compare
Choose a tag to compare
  • Support of Rails 3.2
  • Updated Polymer to 0.4.0

v0.2.1 updated Polymer to 0.3.5

10 Aug 05:57
Compare
Choose a tag to compare

v0.2.0

03 Aug 12:48
Compare
Choose a tag to compare
  • 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