jmagee-ui-kit 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/README.md ADDED
@@ -0,0 +1,36 @@
1
+ jmagee-ui-kit
2
+ ===============
3
+
4
+ A few sass and image basics to simplify consistent styling across personal projects. Includes:
5
+
6
+ * Sass reset adapted from yui-reset
7
+ * Default fonts, colors, background gradients, etc.
8
+ * Layout related styles
9
+
10
+ License
11
+ -------
12
+
13
+ This is free and unencumbered software released into the public domain.
14
+
15
+ Anyone is free to copy, modify, publish, use, compile, sell, or
16
+ distribute this software, either in source code form or as a compiled
17
+ binary, for any purpose, commercial or non-commercial, and by any
18
+ means.
19
+
20
+ In jurisdictions that recognize copyright laws, the author or authors
21
+ of this software dedicate any and all copyright interest in the
22
+ software to the public domain. We make this dedication for the benefit
23
+ of the public at large and to the detriment of our heirs and
24
+ successors. We intend this dedication to be an overt act of
25
+ relinquishment in perpetuity of all present and future rights to this
26
+ software under copyright law.
27
+
28
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
29
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
30
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
31
+ IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
32
+ OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
33
+ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
34
+ OTHER DEALINGS IN THE SOFTWARE.
35
+
36
+ For more information, please refer to <http://unlicense.org/>
data/Rakefile ADDED
@@ -0,0 +1,40 @@
1
+ #!/usr/bin/env rake
2
+ begin
3
+ require 'bundler/setup'
4
+ rescue LoadError
5
+ puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
6
+ end
7
+ begin
8
+ require 'rdoc/task'
9
+ rescue LoadError
10
+ require 'rdoc/rdoc'
11
+ require 'rake/rdoctask'
12
+ RDoc::Task = Rake::RDocTask
13
+ end
14
+
15
+ RDoc::Task.new(:rdoc) do |rdoc|
16
+ rdoc.rdoc_dir = 'rdoc'
17
+ rdoc.title = 'JmageeUiKit'
18
+ rdoc.options << '--line-numbers'
19
+ rdoc.rdoc_files.include('README.rdoc')
20
+ rdoc.rdoc_files.include('lib/**/*.rb')
21
+ end
22
+
23
+ APP_RAKEFILE = File.expand_path("../test/dummy/Rakefile", __FILE__)
24
+ load 'rails/tasks/engine.rake'
25
+
26
+
27
+
28
+ Bundler::GemHelper.install_tasks
29
+
30
+ require 'rake/testtask'
31
+
32
+ Rake::TestTask.new(:test) do |t|
33
+ t.libs << 'lib'
34
+ t.libs << 'test'
35
+ t.pattern = 'test/**/*_test.rb'
36
+ t.verbose = false
37
+ end
38
+
39
+
40
+ task :default => :test
@@ -0,0 +1,15 @@
1
+ // This is a manifest file that'll be compiled into application.js, which will include all the files
2
+ // listed below.
3
+ //
4
+ // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
5
+ // or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path.
6
+ //
7
+ // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
8
+ // the compiled file.
9
+ //
10
+ // WARNING: THE FIRST BLANK LINE MARKS THE END OF WHAT'S TO BE PROCESSED, ANY BLANK LINE SHOULD
11
+ // GO AFTER THE REQUIRES BELOW.
12
+ //
13
+ //= require jquery
14
+ //= require jquery_ujs
15
+ //= require_tree .
@@ -0,0 +1,5 @@
1
+
2
+ @import "reset"
3
+ @import "config"
4
+ @import "clearfix"
5
+ @import "layout"
@@ -0,0 +1,11 @@
1
+ @mixin clearfix
2
+ :zoom 1
3
+ &:after
4
+ :clear both
5
+ :height 0
6
+ :content "."
7
+ :display block
8
+ :visibility hidden
9
+
10
+ .clearfix, .c
11
+ @include clearfix
@@ -0,0 +1,5 @@
1
+
2
+ $FULL_WIDTH: 1000px
3
+ $UNIT_WIDTH: $FULL_WIDTH - 20
4
+
5
+ $MOD_MARGIN: 10px
@@ -0,0 +1,84 @@
1
+
2
+
3
+ body
4
+ :text-align center
5
+ :font-family "helvetica neue", arial, sans-serif
6
+ :font-size 13px
7
+ :background #ddd
8
+
9
+ @mixin vintage
10
+ :font-family Georgia,"Times New Roman",serif
11
+ :color #404040
12
+ :font-style italic
13
+ :text-shadow 0 1px 0 white
14
+
15
+ h1,h2,h3,h4,h5,h6,input,textarea
16
+ :color #404040
17
+
18
+ h1
19
+ :font-weight 200
20
+
21
+ h2, h3, h4, h5, h6
22
+ :font-weight 200
23
+
24
+ input, textarea
25
+ :font-weight 300
26
+
27
+ a, a:visited
28
+ :color #003399
29
+
30
+ em
31
+ :font-style italic
32
+
33
+ strong
34
+ :font-weight bold
35
+
36
+ .full-unit
37
+ :text-align left
38
+ :width $FULL_WIDTH
39
+ :margin 0 auto
40
+
41
+ .unit
42
+ :text-align left
43
+ :width $UNIT_WIDTH
44
+ :margin 0 auto
45
+
46
+ .header
47
+ :padding 30px 0px
48
+ :background #232323
49
+ :border-bottom solid 1px #000
50
+ :border-top solid 15px #000
51
+ :color #fff
52
+
53
+ .header-content
54
+
55
+ .brand
56
+ :display inline
57
+ :float left
58
+
59
+ .connect
60
+ :display inline
61
+ :float right
62
+ :position relative
63
+ :top 2px
64
+ :text-align center
65
+
66
+ .connect-text, .connect-buttons
67
+ :display inline
68
+ :float left
69
+
70
+ .connect-text
71
+ :font-size 30px
72
+ :font-weight 100
73
+ :margin-right 30px
74
+ :margin-top 7px
75
+
76
+
77
+ .connect-buttons
78
+ img
79
+ :margin-right 10px
80
+
81
+ .main
82
+ :background #ddd url('/assets/jmagee-ui-kit/main-content-bg.gif') repeat-x
83
+ :min-height 400px
84
+
@@ -0,0 +1,46 @@
1
+
2
+ body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, optgroup, button, p, blockquote, th, td
3
+ :margin 0
4
+ :padding 0
5
+
6
+ h1, h2, h3, h4, h5, h6
7
+ :font-size 100%
8
+ :font-weight normal
9
+
10
+ table
11
+ :border-collapse collapse
12
+ :border-spacing 0
13
+
14
+ caption, th
15
+ :text-align left
16
+
17
+ ol, ul
18
+ :list-style none
19
+
20
+ fieldset, img
21
+ :border 0
22
+
23
+ input, textarea, select, optgroup, option
24
+ :font-family inherit
25
+ :font-size 100%
26
+
27
+ button
28
+ :font-family inherit
29
+ :font-size 100%
30
+ :width auto
31
+ :overflow visible
32
+
33
+ input
34
+ :width auto
35
+ :overflow visible
36
+
37
+ optgroup, address, caption, cite, code, dfn, em, strong, th, var
38
+ :font-style normal
39
+ :font-weight normal
40
+
41
+ q
42
+ &:before, &:after
43
+ :content ''
44
+
45
+ abbr, acronym
46
+ :border 0
@@ -0,0 +1,5 @@
1
+ module JmageeUiKit
2
+ class Engine < ::Rails::Engine
3
+ isolate_namespace JmageeUiKit
4
+ end
5
+ end
@@ -0,0 +1,3 @@
1
+ module JmageeUiKit
2
+ VERSION = "0.0.1"
3
+ end
@@ -0,0 +1,4 @@
1
+ require "jmagee-ui-kit/engine"
2
+
3
+ module JmageeUiKit
4
+ end
@@ -0,0 +1,4 @@
1
+ # desc "Explaining what the task does"
2
+ # task :jmagee-ui-kit do
3
+ # # Task goes here
4
+ # end
metadata ADDED
@@ -0,0 +1,108 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: jmagee-ui-kit
3
+ version: !ruby/object:Gem::Version
4
+ prerelease:
5
+ version: 0.0.1
6
+ platform: ruby
7
+ authors:
8
+ - Jeff Magee
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+
13
+ date: 2012-03-16 00:00:00 Z
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: rails
17
+ prerelease: false
18
+ requirement: &id001 !ruby/object:Gem::Requirement
19
+ none: false
20
+ requirements:
21
+ - - ~>
22
+ - !ruby/object:Gem::Version
23
+ version: 3.2.2
24
+ type: :runtime
25
+ version_requirements: *id001
26
+ - !ruby/object:Gem::Dependency
27
+ name: sass-rails
28
+ prerelease: false
29
+ requirement: &id002 !ruby/object:Gem::Requirement
30
+ none: false
31
+ requirements:
32
+ - - ">="
33
+ - !ruby/object:Gem::Version
34
+ version: "0"
35
+ type: :runtime
36
+ version_requirements: *id002
37
+ - !ruby/object:Gem::Dependency
38
+ name: jquery-rails
39
+ prerelease: false
40
+ requirement: &id003 !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ">="
44
+ - !ruby/object:Gem::Version
45
+ version: "0"
46
+ type: :runtime
47
+ version_requirements: *id003
48
+ description: Sass reset and other common layout assets for personal projects
49
+ email: jmagee.osrc@gmail.com
50
+ executables: []
51
+
52
+ extensions: []
53
+
54
+ extra_rdoc_files: []
55
+
56
+ files:
57
+ - app/assets/images/jmagee-ui-kit/avatar.jpg
58
+ - app/assets/images/jmagee-ui-kit/favicon.png
59
+ - app/assets/images/jmagee-ui-kit/main-content-bg.gif
60
+ - app/assets/images/jmagee-ui-kit/social/facebook.png
61
+ - app/assets/images/jmagee-ui-kit/social/github.png
62
+ - app/assets/images/jmagee-ui-kit/social/gmail.png
63
+ - app/assets/images/jmagee-ui-kit/social/linkedin.png
64
+ - app/assets/images/jmagee-ui-kit/social/tumblr.png
65
+ - app/assets/images/jmagee-ui-kit/social/twitter.png
66
+ - app/assets/images/jmagee-ui-kit/social-bg.gif
67
+ - app/assets/javascripts/jmagee-ui-kit/base.js
68
+ - app/assets/stylesheets/jmagee-ui-kit/base.sass
69
+ - app/assets/stylesheets/jmagee-ui-kit/clearfix.sass
70
+ - app/assets/stylesheets/jmagee-ui-kit/config.sass
71
+ - app/assets/stylesheets/jmagee-ui-kit/layout.sass
72
+ - app/assets/stylesheets/jmagee-ui-kit/reset.sass
73
+ - lib/jmagee-ui-kit/engine.rb
74
+ - lib/jmagee-ui-kit/version.rb
75
+ - lib/jmagee-ui-kit.rb
76
+ - lib/tasks/jmagee-ui-kit_tasks.rake
77
+ - Rakefile
78
+ - README.md
79
+ homepage: https://github.com/jmagee/jmagee-ui-kit
80
+ licenses: []
81
+
82
+ post_install_message:
83
+ rdoc_options: []
84
+
85
+ require_paths:
86
+ - lib
87
+ required_ruby_version: !ruby/object:Gem::Requirement
88
+ none: false
89
+ requirements:
90
+ - - ">="
91
+ - !ruby/object:Gem::Version
92
+ version: "0"
93
+ required_rubygems_version: !ruby/object:Gem::Requirement
94
+ none: false
95
+ requirements:
96
+ - - ">="
97
+ - !ruby/object:Gem::Version
98
+ version: "0"
99
+ requirements: []
100
+
101
+ rubyforge_project:
102
+ rubygems_version: 1.8.17
103
+ signing_key:
104
+ specification_version: 3
105
+ summary: Sass reset and other common layout assets for personal projects
106
+ test_files: []
107
+
108
+ has_rdoc: