fluffyjs 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 8fb512b53fc68f6fc2015c6ca5cd4dea22a61799
4
+ data.tar.gz: 678de71e545cabe094e6761f9bafa38ffde41e29
5
+ SHA512:
6
+ metadata.gz: 9227312d42b906a07aac20cc7ac5f75bd9527f7339d593ad9257ae2f1abe6a13de5a8b77907096b70876fe19ed222499db0e186d55825f5e8262c85468bb0139
7
+ data.tar.gz: 705ac777ffe06b61d5472d24416cd3c7f2234d41b6271c74dfbdf1f574735cce63d8bce309fd8c370459d6e7980327711cbeace9d72e5f093bc26b3a33a23582
@@ -0,0 +1,11 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+
10
+ # rspec failure tracking
11
+ .rspec_status
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
@@ -0,0 +1,5 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.3.1
5
+ before_install: gem install bundler -v 1.16.0.pre.3
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source "https://rubygems.org"
2
+
3
+ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
+
5
+ # Specify your gem's dependencies in fluffyjs.gemspec
6
+ gemspec
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2017 Bastien
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,39 @@
1
+ # Fluffyjs
2
+
3
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/fluffyjs`. To experiment with that code, run `bin/console` for an interactive prompt.
4
+
5
+ TODO: Delete this and the text above, and describe your gem
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'fluffyjs'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install fluffyjs
22
+
23
+ ## Usage
24
+
25
+ TODO: Write usage instructions here
26
+
27
+ ## Development
28
+
29
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
30
+
31
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
+
33
+ ## Contributing
34
+
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/fluffyjs.
36
+
37
+ ## License
38
+
39
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "fluffyjs"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,23 @@
1
+
2
+ lib = File.expand_path("../lib", __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "fluffyjs/version"
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "fluffyjs"
8
+ spec.version = Fluffyjs::VERSION
9
+ spec.authors = ["Bastien"]
10
+ spec.email = ["bastienrbt@protonmail.com"]
11
+
12
+ spec.summary = "Fluffy on Rails"
13
+ spec.description = "Use Fluffy.js on Ruby on Rails"
14
+ spec.homepage = "https://github.com/bastienrobert/fluffyjs-gem"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
17
+ spec.bindir = "exe"
18
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.8"
22
+ spec.add_development_dependency "rake", "~> 10.0"
23
+ end
@@ -0,0 +1,5 @@
1
+ require "fluffyjs/version"
2
+
3
+ module Fluffyjs
4
+ class Engine < ::Rails::Engine; end
5
+ end
@@ -0,0 +1,3 @@
1
+ module Fluffyjs
2
+ VERSION = "0.1.1"
3
+ end
@@ -0,0 +1,2 @@
1
+ /*! Fluffy.js v2.1.1 | (c) 2016 Sebastian Prein | http://mzdr.github.io/fluffy.js/ */
2
+ !function(t,e){if("function"==typeof define&&define.amd)define("Fluffy",e);else if("object"==typeof module&&module.exports)module.exports=e();else switch(t.Fluffy=e(),document.readyState){case"loading":case"interactive":document.onreadystatechange=function(){"complete"==document.readyState&&t.Fluffy.detect()};break;case"complete":t.Fluffy.detect()}}(this,function(){"use strict";function t(t,e){return e="undefined"!=typeof e?e:"debug",!window.console||!console[e]||(console[e].call(window.console,t),!0)}function e(){var t;window.addEventListener("resize",function(e){t&&clearTimeout(t),t=setTimeout(function(){for(var t=0;t<m.length;t++)m[t].updateContentSize(),m[t].updateContentPosition()},100)})}function i(e){this.container=null,this.content=null,this.items=null,this.trigger=null,this.scrollbars={},this.mouse={real:{x:0,y:0},fake:{x:0,y:0},last:{x:0,y:0},observer:null},this.ratios={},this.settings={},this.sizes={},this.cleanContent=function(){for(var t=0;t<this.items.length;t++){var e=this.items[t],i=e.nextSibling,s=e.previousSibling,n=e.parentNode;null!==e&&3===e.nodeType&&n.removeChild(e),null!==s&&3===s.nodeType&&n.removeChild(s),null!==i&&3===i.nodeType&&n.removeChild(i)}},this.prepare=function(){this.cleanContent(),this.attachScrollbars(),this.mouse.observer=new s(this),this.container.style.overflow="hidden",a&&(this.container.style.webkitOverflowScrolling="touch",this.container.style.overflowX=this.settings.triggerDirection.indexOf("x")>=0?"scroll":"hidden",this.container.style.overflowY=this.settings.triggerDirection.indexOf("y")>=0?"scroll":"hidden")},this.attachScrollbars=function(){if(this.settings.showScrollbars){var t=[];this.settings.triggerDirection.indexOf("x")>=0&&t.push("horizontal"),this.settings.triggerDirection.indexOf("y")>=0&&t.push("vertical");var e=document.createElement("div");e.setAttribute("data-fluffy-scrollbars","");for(var i=0;i<t.length;i++){var s=document.createElement("span");s.classList.add("is-"+t[i]),e.appendChild(s),this.scrollbars[t[i]]=s}this.container.appendChild(e),this.container.classList.add("has-scrollbar")}},this.getContainerWidth=function(){return this.container.getBoundingClientRect().width},this.getContainerHeight=function(){return this.container.getBoundingClientRect().height},this.getTriggerWidth=function(){return this.trigger.getBoundingClientRect().width},this.getTriggerHeight=function(){return this.trigger.getBoundingClientRect().height},this.getContentWidth=function(){for(var t=0,e=0;t<this.items.length;t++)e+=this.items[t].getBoundingClientRect().width;return e},this.getContentHeight=function(){for(var t=0,e=0;t<this.items.length;t++)e+=this.items[t].getBoundingClientRect().height;return e},this.getSmartWidth=function(){for(var t={smallest:null,largest:0,average:0},e=0;e<this.items.length;e++){var i="naturalWidth"in this.items[e]?this.items[e].naturalWidth:this.items[e].getBoundingClientRect().width;t.average+=i,i>t.largest&&(t.largest=i),(null===t.smallest||i<t.smallest)&&(t.smallest=i)}return t.average/=this.items.length,t},this.getSmartHeight=function(){for(var t={smallest:null,largest:0,average:0},e=0;e<this.items.length;e++){var i="naturalHeight"in this.items[e]?this.items[e].naturalHeight:this.items[e].getBoundingClientRect().height;t.average+=i,i>t.largest&&(t.largest=i),(null===t.smallest||i<t.smallest)&&(t.smallest=i)}return t.average/=this.items.length,t},this.getScrollableHeight=function(){return this.getContentHeight()-this.getContainerHeight()},this.getScrollableWidth=function(){return this.getContentWidth()-this.getContainerWidth()},this.getMousePosition=function(t){t=t||window.event;var e=this.trigger.currentStyle||window.getComputedStyle(this.trigger,null),i=this.trigger.getBoundingClientRect(),s={left:0|e.borderLeftWidth,right:0|e.borderRightWidth,top:0|e.borderTopWidth,bottom:0|e.borderBottomWidth},n={left:i.left+s.left,right:s.left+s.right,bottom:s.top+s.bottom,top:i.top+s.top};return{x:Math.min(Math.max(0,t.clientX-n.left),i.width-n.right),y:Math.min(Math.max(0,t.clientY-n.top),i.height-n.bottom)}},this.getFakeMousePosition=function(){return{x:Math.min(Math.max(0,this.mouse.real.x-this.settings.mousePadding),this.sizes.moveArea.width)*this.ratios.moveAreaToContent.width,y:Math.min(Math.max(0,this.mouse.real.y-this.settings.mousePadding),this.sizes.moveArea.height)*this.ratios.moveAreaToContent.height}},this.cacheSizes=function(){this.sizes={container:{width:this.getContainerWidth(),height:this.getContainerHeight()},content:{width:this.getContentWidth(),height:this.getContentHeight()},scrollable:{width:this.getScrollableWidth(),height:this.getScrollableHeight()},trigger:{width:this.getTriggerWidth(),height:this.getTriggerHeight()},moveArea:{width:this.getTriggerWidth()-2*this.settings.mousePadding,height:this.getTriggerHeight()-2*this.settings.mousePadding},scrollbars:{horizontal:this.settings.showScrollbars&&this.scrollbars.horizontal?this.scrollbars.horizontal.getBoundingClientRect():null,vertical:this.settings.showScrollbars&&this.scrollbars.vertical?this.scrollbars.vertical.getBoundingClientRect():null}}},this.updateContentSize=function(){this.settings.smartWidth&&c.indexOf(this.settings.smartWidth)>=0&&(this.content.style.width=this.getSmartWidth()[this.settings.smartWidth]+"px"),this.settings.smartHeight&&c.indexOf(this.settings.smartHeight)>=0&&(this.content.style.height=this.getSmartHeight()[this.settings.smartHeight]+"px"),this.cacheSizes(),this.defineRatios(),this.settings.triggerDirection.indexOf("x")>=0&&(this.content.style.width=(100*this.ratios.containerToContent.width+.001).toFixed(g)+"%"),this.settings.triggerDirection.indexOf("y")>=0&&(this.content.style.height=(100*this.ratios.containerToContent.height+.001).toFixed(g)+"%"),u.x===window.innerWidth&&u.y===window.innerHeight||(this.mouse.real={x:this.mouse.real.x*(window.innerWidth/u.x),y:this.mouse.real.y*(window.innerHeight/u.y)},u={x:window.innerWidth,y:window.innerHeight},this.mouse.fake=this.getFakeMousePosition())},this.updateContentPosition=function(){var t=0,e=0;this.settings.triggerDirection.indexOf("x")>=0&&(t=(this.mouse.last.x/this.sizes.scrollable.width*this.ratios.contentToScrollableArea.width*100).toFixed(g)),this.settings.triggerDirection.indexOf("y")>=0&&(e=(this.mouse.last.y/this.sizes.scrollable.height*this.ratios.contentToScrollableArea.height*100).toFixed(g)),this.content.style[l]="translate(-"+t+"%, -"+e+"%)"},this.updateScrollbarPosition=function(){this.settings.showScrollbars&&(this.settings.triggerDirection.indexOf("x")>=0&&(this.scrollbars.horizontal.style.left=(this.mouse.last.x/this.sizes.scrollable.width*this.ratios.containerToScrollbarArea.width*100).toFixed(g)+"%"),this.settings.triggerDirection.indexOf("y")>=0&&(this.scrollbars.vertical.style.top=(this.mouse.last.y/this.sizes.scrollable.height*this.ratios.containerToScrollbarArea.height*100).toFixed(g)+"%"))},this.defineRatios=function(){this.ratios.moveAreaToContent={width:this.sizes.scrollable.width/this.sizes.moveArea.width,height:this.sizes.scrollable.height/this.sizes.moveArea.height},this.ratios.contentToScrollableArea={width:this.sizes.scrollable.width/this.sizes.content.width,height:this.sizes.scrollable.height/this.sizes.content.height},this.ratios.containerToContent={width:this.sizes.content.width/this.sizes.container.width,height:this.sizes.content.height/this.sizes.container.height},this.ratios.containerToScrollbarArea={width:this.sizes.scrollbars.horizontal?(this.sizes.container.width-this.sizes.scrollbars.horizontal.width)/this.sizes.container.width:0,height:this.sizes.scrollbars.vertical?(this.sizes.container.height-this.sizes.scrollbars.vertical.height)/this.sizes.container.height:0}},this.registerEventListeners=function(){this.container&&this.container.classList.add("is-ready"),this.updateContentSize(),a||this.trigger.addEventListener("mousemove",function(t){this.mouse.observer.status()===!1&&this.mouse.observer.start(),this.mouse.real=this.getMousePosition(t),this.mouse.fake=this.getFakeMousePosition()}.bind(this))},function(){var i=e.querySelector("[data-fluffy-content]");if(null===i)return t(e,"warn"),void t("↳ Has no [data-fluffy-content] element and therefore will be ignored.","warn");var s={};if(e.hasAttribute("data-fluffy-options")){try{var n=JSON.parse(e.getAttribute("data-fluffy-options"));"object"!=typeof n?(t(e,"warn"),t("↳ Fluffy options need to be of type object. Skipping for container above. Using defaults instead.","warn")):s=n}catch(i){t(e,"warn"),t("↳ Trying to parse options for container above has failed. Using defaults instead.","warn")}"mousePadding"in s&&s.mousePadding<0&&(s.mousePadding=d.mousePadding),"mouseDamp"in s&&s.mouseDamp<=0&&(s.mouseDamp=d.mouseDamp)}for(var r in d)r in s||(s[r]=d[r]);if(this.container=e,this.content=i,this.items=i.childNodes,this.settings=s,this.trigger=e,s.triggerSelector){var o=document.querySelector(s.triggerSelector);null!==o&&(this.trigger=o)}switch(this.prepare(),document.readyState){case"loading":case"interactive":document.onreadystatechange=function(){"complete"==document.readyState&&this.registerEventListeners()}.bind(this);break;case"complete":this.registerEventListeners()}}.call(this)}function s(t){function e(t,e){function i(){n.value=window.requestAnimationFrame(i);var r=Date.now(),o=r-s;o>=e&&(t.call(),s=Date.now())}var s=Date.now(),n={};return n.value=window.requestAnimationFrame(i),n}function s(t){window.cancelAnimationFrame(t.value)}if(t instanceof i==!1)throw Error("MouseObserver expects first parameter to be an instance of FluffyObject. Instead "+t.constructor.name+" was given.");this.start=function(){t.container.classList.add("is-moving"),this.id=e(function(){var e={x:(t.mouse.fake.x-t.mouse.last.x)/t.settings.mouseDamp,y:(t.mouse.fake.y-t.mouse.last.y)/t.settings.mouseDamp};Math.abs(e.x)<.001&&Math.abs(e.y)<.001&&(this.stop(),t.container.classList.remove("is-moving")),t.mouse.last.x+=e.x,t.mouse.last.y+=e.y,t.updateContentPosition(),t.updateScrollbarPosition()}.bind(this),10)},this.stop=function(){this.id=s(this.id)},this.status=function(){return"object"==typeof this.id}}function n(t){var e=t;if("string"==typeof t&&(e=document.querySelector(t)),null!==e){for(var s=0;s<m.length;s++)if(m[s].container===e)return;m.push(new i(e))}}function r(){var t=document.querySelectorAll("[data-fluffy-container]");if(0!==t.length)for(var e=0;e<t.length;e++)n(t[e])}var o="2.1.1",h=!!document.querySelector&&!!window.addEventListener&&!!window.requestAnimationFrame,a="ontouchstart"in window,l="transform",c=["smallest","average","largest"],g=3,d={triggerSelector:null,showScrollbars:!0,smartHeight:!1,smartWidth:!1,triggerDirection:"x",mouseDamp:20,mousePadding:60},u={x:window.innerWidth,y:window.innerHeight},m=[];return function(){if(!h)throw Error("Browser is lacking support for several requirements like: 'querySelector', 'addEventListener' or 'requestAnimationFrame'.");l=function(t){for(var e=document.createElement("div"),i=0;i<t.length;i++)if(t[i]in e.style)return t[i];throw Error("Browser doesn't support CSS3 transforms.")}(["transform","msTransform","MozTransform","WebkitTransform","OTransform"]),a&&document.documentElement.classList.add("is-touch"),e()}(),{create:n,detect:r,version:o}});
@@ -0,0 +1 @@
1
+ [data-fluffy-container]{background-color:rgba(255,255,255,0.1);position:relative;-webkit-transition:background-color 1s 600ms, opacity 600ms 600ms;transition:background-color 1s 600ms, opacity 600ms 600ms}[data-fluffy-container]::after,[data-fluffy-container]::before{background-color:rgba(0,0,0,0.33);border-radius:50%;box-shadow:inset 0 0 20px 20px rgba(255,255,255,0.33);content:"";height:20px;left:50%;margin:-10px 0 0 -10px;opacity:1;position:absolute;top:50%;-webkit-transition:opacity 300ms, visibility 0s 300ms;transition:opacity 300ms, visibility 0s 300ms;visibility:visible;width:20px;z-index:1000}[data-fluffy-container]::after{-webkit-animation:moveRight 600ms linear infinite alternate;animation:moveRight 600ms linear infinite alternate;-webkit-transform:translateX(-20px);transform:translateX(-20px)}@-webkit-keyframes moveRight{to{-webkit-transform:translateX(20px);transform:translateX(20px)}}@keyframes moveRight{to{-webkit-transform:translateX(20px);transform:translateX(20px)}}[data-fluffy-container]::before{-webkit-animation:moveLeft 600ms linear infinite alternate;animation:moveLeft 600ms linear infinite alternate;-webkit-transform:translateX(20px);transform:translateX(20px)}@-webkit-keyframes moveLeft{to{-webkit-transform:translateX(-20px);transform:translateX(-20px)}}@keyframes moveLeft{to{-webkit-transform:translateX(-20px);transform:translateX(-20px)}}[data-fluffy-container].is-ready{background-color:transparent}[data-fluffy-container].is-ready::after,[data-fluffy-container].is-ready::before{opacity:0;-webkit-transition:opacity 300ms, visibility 0s 300ms;transition:opacity 300ms, visibility 0s 300ms;visibility:hidden}[data-fluffy-container].is-ready [data-fluffy-content],[data-fluffy-container].is-moving [data-fluffy-scrollbars]{opacity:1}[data-fluffy-scrollbars]{opacity:0;-webkit-transition:opacity 600ms;transition:opacity 600ms}[data-fluffy-scrollbars] .is-horizontal,[data-fluffy-scrollbars] .is-vertical{background-color:rgba(0,0,0,0.66);box-shadow:inset 0 0 20px 20px rgba(255,255,255,0.66);position:absolute;top:0}[data-fluffy-scrollbars] .is-horizontal{height:3px;left:0;width:40px}[data-fluffy-scrollbars] .is-vertical{height:40px;right:0;width:3px}[data-fluffy-content]{height:100%;list-style-type:none;margin:0;padding:0;opacity:0;-webkit-transition:opacity 600ms 600ms;transition:opacity 600ms 600ms}
metadata ADDED
@@ -0,0 +1,85 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: fluffyjs
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.1
5
+ platform: ruby
6
+ authors:
7
+ - Bastien
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2017-10-24 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.8'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.8'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ description: Use Fluffy.js on Ruby on Rails
42
+ email:
43
+ - bastienrbt@protonmail.com
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - ".gitignore"
49
+ - ".rspec"
50
+ - ".travis.yml"
51
+ - Gemfile
52
+ - LICENSE.txt
53
+ - README.md
54
+ - Rakefile
55
+ - bin/console
56
+ - bin/setup
57
+ - fluffyJS.gemspec
58
+ - lib/fluffyJS.rb
59
+ - lib/fluffyJS/version.rb
60
+ - vendor/assets/javascripts/fluffy.js
61
+ - vendor/assets/stylesheets/fluffy.css
62
+ homepage: https://github.com/bastienrobert/fluffyjs-gem
63
+ licenses: []
64
+ metadata: {}
65
+ post_install_message:
66
+ rdoc_options: []
67
+ require_paths:
68
+ - lib
69
+ required_ruby_version: !ruby/object:Gem::Requirement
70
+ requirements:
71
+ - - ">="
72
+ - !ruby/object:Gem::Version
73
+ version: '0'
74
+ required_rubygems_version: !ruby/object:Gem::Requirement
75
+ requirements:
76
+ - - ">="
77
+ - !ruby/object:Gem::Version
78
+ version: '0'
79
+ requirements: []
80
+ rubyforge_project:
81
+ rubygems_version: 2.6.13
82
+ signing_key:
83
+ specification_version: 4
84
+ summary: Fluffy on Rails
85
+ test_files: []