ama_foundation_css 0.0.31

Sign up to get free protection for your applications and to get access to all the features.
@@ -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
@@ -0,0 +1,9 @@
1
+ ## 2015-01-22
2
+
3
+ Features:
4
+
5
+ * Set up the initial base css styles for ama. ([#1][], [@ryanjones][])
6
+
7
+ <!--- The following link definition list is generated by PimpMyChangelog --->
8
+ [#1]: https://github.com/amaabca/ama_foundation_css/issues/1
9
+ [@ryanjones]: https://github.com/ryanjones
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in ama_foundation_css.gemspec
4
+ gemspec
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2015 Ryan Jones
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.
@@ -0,0 +1,24 @@
1
+ # ama foundation rails
2
+
3
+ Base classes and styles for AMA
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ $ gem 'ama_foundation_rails'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Put the import in your ```application.scss```:
16
+
17
+ ```@import "ama_foundation_css/css_base_styles";```
18
+
19
+ Put the directives in your application.js manifest:
20
+
21
+ ```
22
+ //= require ama_foundation_css/foundation
23
+ //= require ama_foundation_css/foundation-ready
24
+ ```
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,26 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'ama_foundation_css/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "ama_foundation_css"
8
+ spec.version = AmaFoundationCss::VERSION
9
+ spec.authors = ["Darko Dosenovic", "Michael van den Beuken", "Ruben Estevez", "Jordan Babe", "Mathieu Gilbert", "Ryan Jones", "Suniel Sambasivan"]
10
+ spec.email = ["darko.dosenovic@ama.ab.ca", "michael.beuken@gmail.com", "ruben.a.estevez@gmail.com", "jorbabe@gmail.com", "mathieu.gilbert@ama.ab.ca", "ryan.michael.jones@gmail.com", "dravidian7@yahoo.com"]
11
+ spec.description = %q{Leverage foundation as the base for AMA's websites}
12
+ spec.summary = %q{Leverage foundation as the base for AMA's websites}
13
+ spec.homepage = "https://github.com/amaabca/ama_foundation_css"
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
+ spec.add_development_dependency "pimpmychangelog"
24
+
25
+ spec.add_dependency "foundation-rails", "5.4.5.0"
26
+ end
@@ -0,0 +1,3 @@
1
+ $ ->
2
+ $(document).foundation()
3
+ return
@@ -0,0 +1 @@
1
+ //= require foundation
@@ -0,0 +1,2 @@
1
+ @import "foundation";
2
+ @import "variables";
@@ -0,0 +1,28 @@
1
+ /* Colours */
2
+ $brand-red: #da291c;
3
+ $white: #ffffff;
4
+ $green: #3fae60;
5
+ // Blue tones - ordered from lightest to darkest
6
+ $sky: #e2f4fc;
7
+ $ocean: #8cceec;
8
+ $brand-blue-light: #00539b;
9
+ $brand-blue-dark: #00205b;
10
+ // Grey tones - ordered from lightest to darkest
11
+ $ash: #f7f7f7;
12
+ $smoke: #cccccc;
13
+ $slate: #838383;
14
+ $jet: #323232;
15
+ $charcoal: #656565;
16
+ // For foundation
17
+ $primary-color: $brand-blue-dark;
18
+ $secondary-color: $brand-blue-light;
19
+ // Fonts
20
+ $font-family-sans-serif: "Open Sans", Helvetica, Arial, sans-serif;
21
+ $base-font-size: 1em;
22
+ // Spacing
23
+ $base-margin: 5px;
24
+ $base-padding: 5px;
25
+ // Borders
26
+ $base-border: 1px solid $smoke;
27
+ //Radius
28
+ $base-radius: 3px;
@@ -0,0 +1,9 @@
1
+ require "ama_foundation_css/version"
2
+
3
+ module AmaFoundationCss
4
+ module Rails
5
+ class Engine < ::Rails::Engine
6
+ require 'foundation/rails'
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,3 @@
1
+ module AmaFoundationCss
2
+ VERSION = "0.0.31"
3
+ end
metadata ADDED
@@ -0,0 +1,141 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ama_foundation_css
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.31
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Darko Dosenovic
9
+ - Michael van den Beuken
10
+ - Ruben Estevez
11
+ - Jordan Babe
12
+ - Mathieu Gilbert
13
+ - Ryan Jones
14
+ - Suniel Sambasivan
15
+ autorequire:
16
+ bindir: bin
17
+ cert_chain: []
18
+ date: 2015-01-22 00:00:00.000000000 Z
19
+ dependencies:
20
+ - !ruby/object:Gem::Dependency
21
+ name: bundler
22
+ requirement: !ruby/object:Gem::Requirement
23
+ none: false
24
+ requirements:
25
+ - - ~>
26
+ - !ruby/object:Gem::Version
27
+ version: '1.3'
28
+ type: :development
29
+ prerelease: false
30
+ version_requirements: !ruby/object:Gem::Requirement
31
+ none: false
32
+ requirements:
33
+ - - ~>
34
+ - !ruby/object:Gem::Version
35
+ version: '1.3'
36
+ - !ruby/object:Gem::Dependency
37
+ name: rake
38
+ requirement: !ruby/object:Gem::Requirement
39
+ none: false
40
+ requirements:
41
+ - - ! '>='
42
+ - !ruby/object:Gem::Version
43
+ version: '0'
44
+ type: :development
45
+ prerelease: false
46
+ version_requirements: !ruby/object:Gem::Requirement
47
+ none: false
48
+ requirements:
49
+ - - ! '>='
50
+ - !ruby/object:Gem::Version
51
+ version: '0'
52
+ - !ruby/object:Gem::Dependency
53
+ name: pimpmychangelog
54
+ requirement: !ruby/object:Gem::Requirement
55
+ none: false
56
+ requirements:
57
+ - - ! '>='
58
+ - !ruby/object:Gem::Version
59
+ version: '0'
60
+ type: :development
61
+ prerelease: false
62
+ version_requirements: !ruby/object:Gem::Requirement
63
+ none: false
64
+ requirements:
65
+ - - ! '>='
66
+ - !ruby/object:Gem::Version
67
+ version: '0'
68
+ - !ruby/object:Gem::Dependency
69
+ name: foundation-rails
70
+ requirement: !ruby/object:Gem::Requirement
71
+ none: false
72
+ requirements:
73
+ - - '='
74
+ - !ruby/object:Gem::Version
75
+ version: 5.4.5.0
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ none: false
80
+ requirements:
81
+ - - '='
82
+ - !ruby/object:Gem::Version
83
+ version: 5.4.5.0
84
+ description: Leverage foundation as the base for AMA's websites
85
+ email:
86
+ - darko.dosenovic@ama.ab.ca
87
+ - michael.beuken@gmail.com
88
+ - ruben.a.estevez@gmail.com
89
+ - jorbabe@gmail.com
90
+ - mathieu.gilbert@ama.ab.ca
91
+ - ryan.michael.jones@gmail.com
92
+ - dravidian7@yahoo.com
93
+ executables: []
94
+ extensions: []
95
+ extra_rdoc_files: []
96
+ files:
97
+ - .gitignore
98
+ - CHANGELOG.md
99
+ - Gemfile
100
+ - LICENSE.txt
101
+ - README.md
102
+ - Rakefile
103
+ - ama_foundation_css.gemspec
104
+ - app/assets/javascripts/ama_foundation_css/foundation-ready.js.coffee
105
+ - app/assets/javascripts/ama_foundation_css/foundation.js
106
+ - app/assets/stylesheets/ama_foundation_css/css_base_styles.scss
107
+ - app/assets/stylesheets/ama_foundation_css/variables.scss
108
+ - lib/ama_foundation_css.rb
109
+ - lib/ama_foundation_css/version.rb
110
+ homepage: https://github.com/amaabca/ama_foundation_css
111
+ licenses:
112
+ - MIT
113
+ post_install_message:
114
+ rdoc_options: []
115
+ require_paths:
116
+ - lib
117
+ required_ruby_version: !ruby/object:Gem::Requirement
118
+ none: false
119
+ requirements:
120
+ - - ! '>='
121
+ - !ruby/object:Gem::Version
122
+ version: '0'
123
+ segments:
124
+ - 0
125
+ hash: -2059807273594077642
126
+ required_rubygems_version: !ruby/object:Gem::Requirement
127
+ none: false
128
+ requirements:
129
+ - - ! '>='
130
+ - !ruby/object:Gem::Version
131
+ version: '0'
132
+ segments:
133
+ - 0
134
+ hash: -2059807273594077642
135
+ requirements: []
136
+ rubyforge_project:
137
+ rubygems_version: 1.8.23
138
+ signing_key:
139
+ specification_version: 3
140
+ summary: Leverage foundation as the base for AMA's websites
141
+ test_files: []