flotilla_js_rails 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: da6b5d48ed35e0b83eec7b94382754701b7609e2
4
+ data.tar.gz: 821978abad83e42caafa8f33816a8ef477f73cf4
5
+ SHA512:
6
+ metadata.gz: d0016c0abdfae1a91a1f302e590df17edd78a3dcbe2d4069bb1a0be9ed9db5d061ee1046cd45a376c4269c8e4ef923b7c4cfea82ee5b9da7b54910ee16743beb
7
+ data.tar.gz: 446ac3f7b2de3eff599e1da9f38fe9fdd8a82d62c66145bd910bc4a8c922166026d137c2772085273db1dca1a3a10e77d32c6503a9f9cc72acf635abe8217d6d
data/.gitignore ADDED
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/.travis.yml ADDED
@@ -0,0 +1,3 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.2.3
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in flotilla_js_rails.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016 Richard Tan
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.
data/README.md ADDED
@@ -0,0 +1,64 @@
1
+ # Flotilla-JS-Rails
2
+
3
+ Flotilla JS - Lightweight tab system.
4
+
5
+ ![image](https://cloud.githubusercontent.com/assets/4082442/13240571/af6b460a-da37-11e5-8f96-39779746dc86.png)
6
+
7
+ ## Etymology
8
+
9
+ In the same way content is made up of several tabs, a flotilla is a fleet made up of several small ships.
10
+
11
+ ## Installation
12
+
13
+ Add this line to your application's Gemfile:
14
+
15
+ ```ruby
16
+ gem 'flotilla-js-rails'
17
+ ```
18
+
19
+ And then execute:
20
+
21
+ $ bundle
22
+
23
+ ## Usage
24
+
25
+ ###Importing files
26
+ application.scss
27
+ ```ruby
28
+ @import 'flotilla';
29
+ ```
30
+ application.js
31
+ ```ruby
32
+ //= require flotilla
33
+ ```
34
+
35
+
36
+ ###Sample markup
37
+
38
+ ```html
39
+ <div class="Flotilla-tab-wrap">
40
+ <div class="Flotilla-tab active">Tab title 1</div>
41
+ <div class="Flotilla-tab">Tab title 2</div>
42
+ <div class="Flotilla-tab">Tab title 3</div>
43
+
44
+ <div class="Flotilla-content active">
45
+ Lorem ipsum dolor sit amet, consectetur adipisicing elit. Voluptate iusto fugit autem unde incidunt eos ut quos aspernatur facilis corporis possimus obcaecati, et molestiae sint vero optio quia dignissimos commodi!
46
+ </div>
47
+ <div class="Flotilla-content">
48
+ Lorem ipsum dolor sit amet, consectetur adipisicing elit. Obcaecati dolorum qui impedit voluptatem pariatur harum ipsa, debitis laudantium, facere minima, labore deleniti! Vero sapiente vel harum, repudiandae et culpa reprehenderit?
49
+ </div>
50
+ <div class="Flotilla-content">
51
+ Lorem ipsum dolor sit amet, consectetur adipisicing elit. Obcaecati dolorum qui impedit voluptatem pariatur harum ipsa, debitis laudantium, facere minima, labore deleniti! Vero sapiente vel harum, repudiandae et culpa reprehenderit?
52
+ </div>
53
+ </div>
54
+ ```
55
+
56
+ ## Licence and Legals
57
+
58
+ PwC Shipyard is an alias of a sub-division of PwC Australia.
59
+
60
+ The contents of this repository are Copyright © 2016 PwC. All rights reserved. PwC refers to the PwC network and/or one or more of its member firms, each of which is a separate legal entity.
61
+
62
+ It is free software, and may be redistributed under the terms specified in the LICENSE file.
63
+
64
+ The gem is still under active development and although it is publicly available, we won't be held responsible if you install it and something goes wrong. Use at your own risk.
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "flotilla_js_rails"
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
data/bin/setup ADDED
@@ -0,0 +1,7 @@
1
+ #!/bin/bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+
5
+ bundle install
6
+
7
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,17 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'flotilla_js_rails/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "flotilla_js_rails"
8
+ spec.version = FlotillaJsRails::VERSION
9
+ spec.authors = ["Richard Tan"]
10
+ spec.email = ["chardos@gmail.com"]
11
+ spec.summary = %q{This gem exposes the SCSS and JS for Flotilla JS}
12
+ spec.license = "MIT"
13
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
14
+ spec.require_paths = ["lib"]
15
+ spec.add_development_dependency "bundler", "~> 1.9"
16
+ spec.add_development_dependency "rake", "~> 10.0"
17
+ end
@@ -0,0 +1,3 @@
1
+ module FlotillaJsRails
2
+ VERSION = "0.1.1"
3
+ end
@@ -0,0 +1,6 @@
1
+ require "flotilla_js_rails/version"
2
+
3
+ module FlotillaJsRails
4
+ class Engine < ::Rails::Engine
5
+ end
6
+ end
@@ -0,0 +1,46 @@
1
+ // ============================================================================
2
+ // FLOTILLA - Tabbing system
3
+ // Description: The .Flotilla-content divs need to come directly after
4
+ // the .Flotilla-tabs
5
+ // ============================================================================
6
+
7
+ var N = N || {};
8
+
9
+ N.tabs = {};
10
+
11
+ (function(N, $){ //start IIFE
12
+
13
+ N.tabs.assignDataIDs = function(){
14
+ this.$tabsTab.each(function(i){
15
+ $(this).attr('data-id', i);
16
+ $('.Flotilla-content:eq('+i+')').attr('data-id', i);
17
+ });
18
+ };
19
+
20
+ N.tabs.eventHandlers = function(){
21
+ this.$tabsTab.on('click', function(){
22
+ console.log('yeap');
23
+ var id = $(this).attr('data-id');
24
+ $(this).siblings('.Flotilla-tab').removeClass('active');
25
+ $(this).addClass('active');
26
+ $(this).siblings('.Flotilla-content').removeClass('active');
27
+ $('.Flotilla-content[data-id='+id+']').addClass('active');
28
+ });
29
+ };
30
+
31
+ N.tabs.init = function(){
32
+ this.$tabs = $('.Flotilla-tab-wrap');
33
+ if( this.$tabs.length ){ //check if tabs exist on page
34
+ this.$tabsTab = $('.Flotilla-tab');
35
+ this.$tabsContent = $('.Flotilla-content');
36
+ this.assignDataIDs();
37
+ this.eventHandlers();
38
+ }
39
+ };
40
+
41
+
42
+ }(N, $)); //end IIFE
43
+
44
+ $(document).ready(function(){
45
+ N.tabs.init();
46
+ });
@@ -0,0 +1,47 @@
1
+ //====================================================
2
+ // TABS
3
+ //====================================================
4
+
5
+ $tab-active-color: white !default;
6
+ $tab-inactive-color: #f8f8f8 !default;
7
+ $tab-border-color: #e4e4e4 !default;
8
+
9
+ .Flotilla-tab-wrap{
10
+
11
+ }
12
+ .Flotilla-tab{
13
+ cursor: pointer;
14
+ display: inline-block;
15
+ padding: 7px 15px;
16
+ margin-right: -5px;
17
+ margin-bottom: -1px;
18
+ min-width: 180px;
19
+ text-align: center;
20
+ border-bottom: 3px solid transparent;
21
+
22
+ font-size: 15px;
23
+ font-family: arial, helvetica, sans-serif;
24
+
25
+ -webkit-transition: all 0.15s ease-in;
26
+ transition: all 0.15s ease-in;
27
+
28
+ &:hover{
29
+ opacity: 0.7;
30
+ }
31
+ }
32
+
33
+ .Flotilla-tab.active{
34
+ border-bottom: 3px solid $ecstasy;
35
+ color: #000;
36
+ }
37
+
38
+ .Flotilla-content{
39
+ display: none;
40
+ background-color: $tab-active-color;
41
+ padding-top: 30px;
42
+ border-top: 1px solid $border-color;
43
+ }
44
+
45
+ .Flotilla-content.active{
46
+ display: block;
47
+ }
metadata ADDED
@@ -0,0 +1,85 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: flotilla_js_rails
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.1
5
+ platform: ruby
6
+ authors:
7
+ - Richard Tan
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-02-26 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.9'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.9'
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:
42
+ email:
43
+ - chardos@gmail.com
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - ".gitignore"
49
+ - ".travis.yml"
50
+ - Gemfile
51
+ - LICENSE.txt
52
+ - README.md
53
+ - Rakefile
54
+ - bin/console
55
+ - bin/setup
56
+ - flotilla_js_rails.gemspec
57
+ - lib/flotilla_js_rails.rb
58
+ - lib/flotilla_js_rails/version.rb
59
+ - vendor/assets/javascripts/flotilla.js
60
+ - vendor/assets/stylesheets/flotilla.scss
61
+ homepage:
62
+ licenses:
63
+ - MIT
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.4.5.1
82
+ signing_key:
83
+ specification_version: 4
84
+ summary: This gem exposes the SCSS and JS for Flotilla JS
85
+ test_files: []