bones-rails 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,15 @@
1
+ ---
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ Njk1YjExODhjNjUwOWQyZmY3NGQ0NzUwZGYzN2E1ODNmYjI3NTE2OA==
5
+ data.tar.gz: !binary |-
6
+ ZjMwZGE3YWQwZGY5OTgxOWVhZTAwYWJiMjM4YTU4YzE3ZmQyZWJlZA==
7
+ !binary "U0hBNTEy":
8
+ metadata.gz: !binary |-
9
+ OTJlZGYzZGMwZmMwNWYzNGVhNzVkNGY3OWQ0ODAwYzFjZDdkODUxZTA2OWQy
10
+ NzQzYzVkMmFlNjYzYmFmYWYwNTVmODBkZjgyMDVlNzI4MTZiNjMzMzdmMzYy
11
+ ODI2N2JiOWVkZjMwNzM5NzA3MWEzZmIxZWNiYTg1ZDRmZTgzNWU=
12
+ data.tar.gz: !binary |-
13
+ MGEwYTRmZDMxNjdhZTZkODEwNGQ2YWU1MzA3NGY0MDBiMjM0MjBlYTVjNDlk
14
+ ODIwMWNhZDRhZWI5ZDNlYzIwZDg5YTg4MjE3OTM1ZmJmNjZmY2NiY2I0NThi
15
+ YzM1MTVkOGM3ZjZlOTQ2ZTRjZWU3OTM4YWJhNDk4ZGU0OWQ4OTI=
data/.gitignore ADDED
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in bones-rails.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2013 Sean Davis
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,29 @@
1
+ # Bones::Rails
2
+
3
+ TODO: Write a gem description
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'bones-rails'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install bones-rails
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Contributing
24
+
25
+ 1. Fork it
26
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
27
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
28
+ 4. Push to the branch (`git push origin my-new-feature`)
29
+ 5. Create new Pull Request
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,116 @@
1
+ $(document).ready(function(){
2
+
3
+ // vars
4
+ bonesResponsiveSlide = false;
5
+
6
+ /* Overall Click Event for Body
7
+ ----------------------------------------- */
8
+ $('body').click(function(e) {
9
+ var target = $(e.target);
10
+ bonesClick(target);
11
+ });
12
+
13
+ function bonesClick(target) {
14
+
15
+ /* Responsive Navigation
16
+ ----------------------------------------- */
17
+ if( target.is('.nav-toggle') && bonesResponsiveSlide == false) {
18
+ // slides body
19
+ $('body').animate({'left': '200px'}, 500 );
20
+ // says body is slid out to right
21
+ bonesResponsiveSlide = true
22
+ }
23
+ else if( bonesResponsiveSlide == true && !target.is('.nav') ) {
24
+ // slides body back to left
25
+ $('body').animate({'left': '0'}, 500 );
26
+ bonesResponsiveSlide = false;
27
+ } // <-- RESPONSIVE NAVIGATION
28
+
29
+ /* Tabs
30
+ ----------------------------------------- */
31
+ if( target.is('.tabs li') ) {
32
+ // class control for styling
33
+ $('.tabs li').removeClass('active');
34
+ $(target).addClass('active');
35
+ // the tab to look for
36
+ var tab = $(target).attr('data-tab');
37
+ // steps through tab content section until finding the right one
38
+ $('.tab-content').each(function(){
39
+ if( $(this).attr('data-tab') != tab ) $(this).hide();
40
+ else $(this).show();
41
+ });
42
+ } // <-- TABS
43
+
44
+ } // <-- bonesClick() | OVERALL CLICK CONTROL
45
+
46
+ /* Responsive Control for Window Resize
47
+ ----------------------------------------- */
48
+ $(window).resize(function(){
49
+ if( $('body').width() < 768 && bonesResponsiveSlide == true ) {
50
+ // moves body back into place if it's out
51
+ $('body').css('left', '0');
52
+ bonesResponsiveSlide = false;
53
+ }
54
+ }); // <-- WINDOW RESIZE
55
+
56
+ /* Tooltip
57
+ ----------------------------------------- */
58
+ if( $('.tooltip').length > 0 ) {
59
+ bonesTooltipHover = 0; // counter to help build page tooltip elements
60
+ $('.tooltip').hover(function(){
61
+ // iterative counter to build unique tooltip IDs
62
+ bonesTooltipHover++;
63
+ // get the element's title and then hide it (temporarily)
64
+ bonesTooltipContent = $(this).attr('title');
65
+ $(this).attr('title', '');
66
+ // create (iterative) custom ID for tooltip, then build the element
67
+ bonesTooltipID = 'bones-tooltip-'+bonesTooltipHover;
68
+ $('body').prepend('<div id="'+bonesTooltipID+'" class="bones-tooltip">'+bonesTooltipContent+'<div class="arrow-bottom"></div></div>');
69
+ // calculations for determining where to position the tooltip
70
+ var thisWidth = $(this).width();
71
+ var tooltipWidth = $('#'+bonesTooltipID).width();
72
+ var tooltipHeight = $('#'+bonesTooltipID).height();
73
+ var tooltipLeft = $(this).offset().left + (thisWidth / 2) - (tooltipWidth / 2);
74
+ var tooltipTop = $(this).offset().top - tooltipHeight - 30;
75
+ $('#'+bonesTooltipID).css({
76
+ top : tooltipTop + 'px',
77
+ left : tooltipLeft + 'px'
78
+ });
79
+ // show tooltip
80
+ $('#'+bonesTooltipID).fadeIn(300);
81
+ }, function(){
82
+ // hide and destroy tooltip (keeps markup clean)
83
+ $('#'+bonesTooltipID).hide();
84
+ $('#'+bonesTooltipID).remove();
85
+ // replace title (for other applications and plugins that require it)
86
+ $(this).attr('title', bonesTooltipContent);
87
+ });
88
+ } // <-- TOOLTIP
89
+
90
+ /* Images
91
+ ----------------------------------------- */
92
+ if( $('.crop').length > 0 ) {
93
+ $('.crop').each(function(){
94
+ var imgHeight = $(this).children('img').height();
95
+ var divHeight = $(this).height();
96
+ if( imgHeight < divHeight ) {
97
+ $(this).children('img').css({
98
+ 'height': '100%',
99
+ 'width': 'auto',
100
+ });
101
+ var imgWidth = $(this).children('img').width();
102
+ var divWidth = $(this).width();
103
+ var imgLeft = (divWidth / 2) - (imgWidth / 2);
104
+ $(this).children('img').css('left',imgLeft+'px');
105
+ }
106
+ else {
107
+ var imgTop = (divHeight / 2) - (imgHeight / 2);
108
+ $(this).children('img').css('top',imgTop+'px');
109
+ }
110
+ });
111
+ }
112
+ });
113
+
114
+
115
+
116
+
@@ -0,0 +1 @@
1
+ html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font:inherit;font-size:100%;vertical-align:baseline}html{line-height:1}ol,ul{list-style:none}table{border-collapse:collapse;border-spacing:0}caption,th,td{text-align:left;font-weight:normal;vertical-align:middle}q,blockquote{quotes:none}q:before,q:after,blockquote:before,blockquote:after{content:"";content:none}a img{border:none}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary{display:block}body{font:15px Helvetica, arial, freesans, clean, sans-serif;font-weight:200;line-height:normal;color:#444;width:100%;position:absolute}.container{padding:20px 25px;max-width:960px;margin:auto;background:white}.full-width-container{padding:20px 25px}::selection{color:#efefef;background:#009b77}.clearfix{display:inline-block}.clearfix:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}html[xmlns] .clearfix{display:block}* html .clearfix{height:1%}hr{border:none;background:#efefef;margin:0.75em 0;height:1px}.nav-container{display:inline-block;display:block;background:#444;width:100%}.nav-container:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.nav-container .nav-toggle{color:#afafaf;padding:5px 20px;float:left;display:none}.nav-container .nav-toggle:hover{cursor:pointer;color:#efefef}.nav-container .nav{list-style:none;margin:0}.nav-container .nav li{display:inline-block;margin:0}.nav-container .nav li a{display:block;color:#afafaf;padding:12px 20px}.nav-container .nav li a:hover{text-decoration:none;color:#efefef;background:#009b77}.nav-container .nav li:hover>.dropdown{display:block}.nav-container .nav .dropdown,.nav-container .nav .sub-dropdown{display:none;position:absolute;background:#444;margin:0;box-shadow:1px 1px 5px #444}.nav-container .nav .dropdown li,.nav-container .nav .sub-dropdown li{display:block}.nav-container .nav .dropdown li a,.nav-container .nav .sub-dropdown li a{padding:7px 20px}.nav-container .nav .dropdown li a:hover,.nav-container .nav .sub-dropdown li a:hover{color:#afafaf;background:#5e5e5e}.nav-container .nav .dropdown li:hover>.sub-dropdown{display:block}.nav-container .nav .sub-dropdown{left:100%;top:31px;min-width:100%}h1,h2,h3,h4,h5,h6{font-weight:600;margin:0.75em 0 0.6em 0}h1{font-size:2.3em}h2{font-size:1.9em;margin:1.0em 0 0.25em 0}h3{font-size:1.65em;font-weight:400;margin:1.0em 0 0.25em 0}h4{font-size:1.1em;text-transform:uppercase;margin:1.1em 0 0 0}h5{font-size:0.9em;font-weight:400}h6{font-size:0.8em}.subheading{font-weight:200;color:#777}p{margin:0 0 0.75em 0;line-height:1.35em}code{font-family:Monaco, Menlo, Consolas, "Courier New", monospace;color:#d14;font-size:13px;background:#efefef;padding:2px 4px;border:1px solid #d5d5d5}pre{margin:1.25em 0;padding:0.75em;font-family:Monaco, Menlo, Consolas, "Courier New", monospace;background:#efefef;border:1px solid #d5d5d5;display:block;font-size:13px;line-height:20px;word-break:break-all;word-wrap:break-word;white-space:pre;white-space:pre-wrap}pre code{color:#444;background:transparent;padding:0;border:none}blockquote{padding:0.75em;color:#444;background:#efefef;border:1px solid #d5d5d5;font-size:110%;font-weight:200}blockquote cite{font-size:88%;font-weight:400;color:#777;display:block;margin:0.75em 0 0.25em 0}blockquote cite:before{content:"\2014 \00A0"}a{color:#009b77;text-decoration:none}a:hover{text-decoration:underline}small{font-size:60%;color:#777}big{font-size:140%}em{font-style:italic}strong{font-weight:600}ul,ol{margin:0 0 0 1em;line-height:1.25em}ul li,ol li{margin:0.25em 0}ul ul,ul ol,ol ul,ol ol{margin:0 0 0 1.5em}ul{list-style-type:disc}ol{list-style-type:decimal}.row{display:inline-block;width:100%}.row:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.row .column,.row .columns{float:left;margin:1em 0.5%}.row .column:first-child,.row .columns:first-child{margin:1em 0.5% 1em 0}.row .column:last-child,.row .columns:last-child{margin:1em 0 1em 0.5%}.one{width:7.41666666%}.two{width:15.8333333%}.three{width:24.25%}.four{width:32.6666666%}.five{width:41.08333333%}.six{width:49.5%}.seven{width:57.9166666%}.eight{width:66.33333333%}.nine{width:74.75%}.ten{width:83.16666666%}.eleven{width:91.58333333%}.twelve{width:100%;margin:1em 0 !important}table{width:100%;vertical-align:middle}table tr td{padding:10px 0}ul.tabs{list-style-type:none;margin:0 0 10px 0;border-bottom:1px solid #bcbcbc}ul.tabs li{display:inline-block;padding:8px 10px;margin:0 0 -1px 10px;border:1px solid #d5d5d5;border-bottom-color:#bcbcbc;border-radius:4px 4px 0 0}ul.tabs li:hover{cursor:pointer;border:1px solid #bcbcbc;border-bottom-color:transparent}ul.tabs li.active{border:1px solid #bcbcbc;border-bottom-color:white}.tab-content{display:none}.first-tab{display:inherit}.bones-tooltip{display:none;position:absolute;max-width:200px;font:normal 11px "Helvetica Neue", Sans-Serif;padding:10px;border-radius:3px;background:#009b77;color:#efefef;box-shadow:0 0 2px #444}div.arrow-bottom{width:0;height:0;border-left:10px solid transparent;border-right:10px solid transparent;border-top:10px solid #009b77;position:absolute;left:50%;margin:0 0 0 -10px;bottom:-10px}div.arrow-bottom:after{-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg);box-shadow:0 0 2px #444}.define{border-bottom:1px dotted #444}.define:hover{cursor:help}.button{display:inline-block;color:#efefef;background:#515151;text-shadow:none;border-radius:0;box-shadow:none;border:none;font-size:13px;margin:5px 5px 0 0;padding:10px}.button:hover{background:#009b77;text-decoration:none;cursor:pointer}.button-primary{display:inline-block;color:#efefef;background:#009b77;text-shadow:none;border-radius:0;box-shadow:none;border:none;font-size:13px;margin:5px 5px 0 0;padding:10px}.button-primary:hover{background:#008263;text-decoration:none;cursor:pointer}.button-secondary{display:inline-block;color:#efefef;background:#515151;text-shadow:none;border-radius:0;box-shadow:none;border:none;font-size:13px;margin:5px 5px 0 0;padding:10px}.button-secondary:hover{background:#373737;text-decoration:none;cursor:pointer}.button-warning{display:inline-block;color:#efefef;background:#cca300;text-shadow:none;border-radius:0;box-shadow:none;border:none;font-size:13px;margin:5px 5px 0 0;padding:10px}.button-warning:hover{background:#b38f00;text-decoration:none;cursor:pointer}.button-danger{display:inline-block;color:#efefef;background:#c00;text-shadow:none;border-radius:0;box-shadow:none;border:none;font-size:13px;margin:5px 5px 0 0;padding:10px}.button-danger:hover{background:#b30000;text-decoration:none;cursor:pointer}.button-success{display:inline-block;color:#efefef;background:#008a2e;text-shadow:none;border-radius:0;box-shadow:none;border:none;font-size:13px;margin:5px 5px 0 0;padding:10px}.button-success:hover{background:#007126;text-decoration:none;cursor:pointer}.button-group{margin:5px 15px 5px 0}.button-group a{margin:0 -4px 0 0}form label{display:block}form input,form textarea{display:block;font-size:1em;color:#444;font-family:Helvetica, arial, freesans, clean, sans-serif;font-weight:200;border-radius:0;border:1px solid #efefef}form input:focus,form textarea:focus{background-color:#efefef;outline:none}form input[type=submit],form textarea[type=submit]{display:inline-block;color:#efefef;background:#009b77;text-shadow:none;border-radius:0;box-shadow:none;border:none;font-size:13px;margin:5px 5px 0 0;padding:10px}form input[type=submit]:hover,form textarea[type=submit]:hover{background:#008263;text-decoration:none;cursor:pointer}.alert-primary{display:block;margin:5px 0;padding:10px;background:#009b77;color:#efefef}.alert-success{display:block;margin:5px 0;padding:10px;background:#008a2e;color:#efefef}.alert-warning{display:block;margin:5px 0;padding:10px;background:#cca300;color:#efefef}.alert-danger{display:block;margin:5px 0;padding:10px;background:#c00;color:#efefef}img{margin:5px}img.small{width:150px}img.medium{width:300px}img.large{width:450px}.rounded{border-radius:10px}.polaroid{border:5px solid #FFFFFF;outline:1px solid #d5d5d5}div.crop{display:inline-block;overflow:hidden;position:relative;margin:5px}div.crop img{width:100%;margin:0;position:absolute}div.img-small{width:150px;height:150px}div.img-medium{width:300px;height:300px}div.img-large{width:450px;height:450px}div.img-panoramic{margin:0;width:100%;height:200px}.bkg-primary{background:#009b77;color:#efefef}.float-left{float:left}.float-right{float:right}.text-center{text-align:center}@font-face{font-family:'icomoon';src:url("fonts/icomoon.eot");src:url("fonts/icomoon.eot?#iefix") format("embedded-opentype"),url("fonts/icomoon.woff") format("woff"),url("fonts/icomoon.ttf") format("truetype"),url("fonts/icomoon.svg#icomoon") format("svg");font-weight:normal;font-style:normal}[data-icon]:before{font-family:'icomoon';content:attr(data-icon);speak:none;font-weight:normal;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased}.icon-email,.icon-paintbrush,.icon-dam,.icon-briefcase{font-family:'icomoon';speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased}.icon-email:before{content:"\e000"}.icon-paintbrush:before{content:"\e001"}.icon-dam:before{content:"\e002"}.icon-briefcase:before{content:"\e003"}@media (max-width: 767px){body{font-size:13px}.column,.columns{width:100%;margin:10px 0}.nav-container .nav-toggle{display:inline-block}.nav-container .nav{position:fixed;top:0;left:0;background:#444;height:100%;width:200px;z-index:-9999}.nav-container .nav li{display:block}.nav-container .nav li .dropdown,.nav-container .nav li .sub-dropdown{box-shadow:none;position:relative;display:inherit;top:0;left:0;margin:0}.nav-container .nav li .dropdown li,.nav-container .nav li .sub-dropdown li{display:block}.nav-container .nav li .dropdown li a,.nav-container .nav li .sub-dropdown li a{padding:7px 0 7px 35px}.nav-container .nav li .sub-dropdown li a{padding:7px 0 7px 50px}}
@@ -0,0 +1,23 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'bones/rails/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "bones-rails"
8
+ spec.version = Bones::Rails::VERSION
9
+ spec.authors = ["Sean Davis"]
10
+ spec.email = ["sdavis@topicdesign.com"]
11
+ spec.description = ""
12
+ spec.summary = ""
13
+ spec.homepage = ""
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files`.split($/)
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.3"
22
+ spec.add_development_dependency "rake"
23
+ end
@@ -0,0 +1,8 @@
1
+ require "bones/rails/version"
2
+
3
+ module Bones
4
+ module Rails
5
+ class Engine < ::Rails::Engine
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,5 @@
1
+ module Bones
2
+ module Rails
3
+ VERSION = "0.0.2"
4
+ end
5
+ end
metadata ADDED
@@ -0,0 +1,82 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: bones-rails
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.2
5
+ platform: ruby
6
+ authors:
7
+ - Sean Davis
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-08-22 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.3'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '1.3'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ! '>='
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ! '>='
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ description: ''
42
+ email:
43
+ - sdavis@topicdesign.com
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - .gitignore
49
+ - Gemfile
50
+ - LICENSE.txt
51
+ - README.md
52
+ - Rakefile
53
+ - app/assets/javascripts/bones.js
54
+ - app/assets/stylesheets/bones.css
55
+ - bones-rails.gemspec
56
+ - lib/bones/rails.rb
57
+ - lib/bones/rails/version.rb
58
+ homepage: ''
59
+ licenses:
60
+ - MIT
61
+ metadata: {}
62
+ post_install_message:
63
+ rdoc_options: []
64
+ require_paths:
65
+ - lib
66
+ required_ruby_version: !ruby/object:Gem::Requirement
67
+ requirements:
68
+ - - ! '>='
69
+ - !ruby/object:Gem::Version
70
+ version: '0'
71
+ required_rubygems_version: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ! '>='
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ requirements: []
77
+ rubyforge_project:
78
+ rubygems_version: 2.0.7
79
+ signing_key:
80
+ specification_version: 4
81
+ summary: ''
82
+ test_files: []