skyron 0.0.3 → 0.0.4

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.
Files changed (57) hide show
  1. data/.gitignore +17 -0
  2. data/Gemfile +4 -0
  3. data/LICENSE +22 -0
  4. data/README.md +28 -0
  5. data/Rakefile +2 -0
  6. data/lib/skyron.rb +9 -0
  7. data/lib/skyron/engine.rb +5 -0
  8. data/lib/skyron/version.rb +3 -0
  9. data/skyron.gemspec +17 -0
  10. data/stylesheets/_skyron.scss +0 -0
  11. data/stylesheets/skyron/_base.scss +0 -0
  12. data/stylesheets/skyron/_buttons.scss +0 -0
  13. data/stylesheets/skyron/_forms.scss +0 -0
  14. data/stylesheets/skyron/_grid.scss +0 -0
  15. data/stylesheets/skyron/_orbit.scss +0 -0
  16. data/stylesheets/skyron/_reveal.scss +0 -0
  17. data/stylesheets/skyron/_settings.scss +0 -0
  18. data/templates/project/.gitignore +44 -0
  19. data/templates/project/favicon.ico +0 -0
  20. data/templates/project/humans.txt +8 -0
  21. data/templates/project/index.html +133 -0
  22. data/templates/project/manifest.rb +61 -0
  23. data/templates/project/robots.txt +4 -0
  24. data/templates/project/sass/_settings.scss +48 -0
  25. data/templates/project/sass/skyron-styles/buttons.scss +0 -0
  26. data/templates/project/sass/skyron-styles/footer.scss +0 -0
  27. data/templates/project/sass/skyron-styles/forms.scss +0 -0
  28. data/templates/project/sass/skyron-styles/globals.scss +0 -0
  29. data/templates/project/sass/skyron-styles/grid.scss +0 -0
  30. data/templates/project/sass/skyron-styles/header.scss +0 -0
  31. data/templates/project/sass/skyron-styles/nav.scss +0 -0
  32. data/templates/project/sass/skyron-styles/orbit.scss +3 -0
  33. data/templates/project/sass/skyron-styles/pie.scss +73 -0
  34. data/templates/project/sass/skyron-styles/reveal.scss +3 -0
  35. data/templates/project/sass/skyron-styles/tabs.scss +0 -0
  36. data/templates/project/sass/style.scss +11 -0
  37. data/vendor/assets/images/orbit/bullets.jpg +0 -0
  38. data/vendor/assets/images/orbit/left-arrow-small.png +0 -0
  39. data/vendor/assets/images/orbit/left-arrow.png +0 -0
  40. data/vendor/assets/images/orbit/loading.gif +0 -0
  41. data/vendor/assets/images/orbit/mask-black.png +0 -0
  42. data/vendor/assets/images/orbit/pause-black.png +0 -0
  43. data/vendor/assets/images/orbit/right-arrow-small.png +0 -0
  44. data/vendor/assets/images/orbit/right-arrow.png +0 -0
  45. data/vendor/assets/images/orbit/rotator-black.png +0 -0
  46. data/vendor/assets/images/orbit/timer-black.png +0 -0
  47. data/vendor/assets/js/index.js +8 -0
  48. data/vendor/assets/js/jquery.customforms.js +258 -0
  49. data/vendor/assets/js/jquery.min.js +4 -0
  50. data/vendor/assets/js/jquery.offcanvas.js +50 -0
  51. data/vendor/assets/js/jquery.orbit-1.4.0.js +633 -0
  52. data/vendor/assets/js/jquery.placeholder.min.js +2 -0
  53. data/vendor/assets/js/jquery.reveal.js +178 -0
  54. data/vendor/assets/js/jquery.tooltips.js +166 -0
  55. data/vendor/assets/js/modernizr.js +4 -0
  56. data/vendor/assets/js/scripts.js +125 -0
  57. metadata +58 -2
@@ -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 skyron.gemspec
4
+ gemspec
data/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2012 SkyronDevelopers
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,28 @@
1
+ # Skyron
2
+
3
+ TODO: Write a gem description
4
+
5
+ ## Installation
6
+
7
+ $ gem install skyron
8
+
9
+ ## Usage
10
+
11
+ CREATING PROJECT
12
+ $compass create my_project -r skyron --using skyron
13
+
14
+
15
+
16
+
17
+
18
+
19
+ ## Contributing
20
+
21
+ 1. Fork it
22
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
23
+ 3. Commit your changes (`git commit -am 'Added some feature'`)
24
+ 4. Push to the branch (`git push origin my-new-feature`)
25
+ 5. Create new Pull Request
26
+
27
+
28
+
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env rake
2
+ require "bundler/gem_tasks"
@@ -0,0 +1,9 @@
1
+ require "skyron/version"
2
+ require "compass"
3
+ extension_path = File.expand_path(File.dirname(File.dirname(__FILE__)))
4
+ config = {:path => extension_path}
5
+ Compass::Frameworks.register("skyron", config)
6
+
7
+ module Skyron
8
+ require "skyron/engine" if defined?(Rails)
9
+ end
@@ -0,0 +1,5 @@
1
+ module Foundation
2
+ class Engine < Rails::Engine
3
+ # auto wire assets
4
+ end
5
+ end
@@ -0,0 +1,3 @@
1
+ module Skyron
2
+ VERSION = "0.0.4"
3
+ end
@@ -0,0 +1,17 @@
1
+ # -*- encoding: utf-8 -*-
2
+ require File.expand_path('../lib/skyron/version', __FILE__)
3
+
4
+ Gem::Specification.new do |gem|
5
+ gem.authors = ["SkyronDevelopers"]
6
+ gem.email = ["yann.lecoore@skyron.co.uk"]
7
+ gem.description = %q{skyron making gems testing}
8
+ gem.summary = %q{skyron making gems testing}
9
+ gem.homepage = "http://skyron.co.uk"
10
+
11
+ gem.files = `git ls-files`.split($\)
12
+ gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
13
+ gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
14
+ gem.name = "skyron"
15
+ gem.require_paths = ["lib"]
16
+ gem.version = Skyron::VERSION
17
+ end
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -0,0 +1,44 @@
1
+ # Numerous always-ignore extensions
2
+ *.diff
3
+ *.err
4
+ *.orig
5
+ *.log
6
+ *.rej
7
+ *.swo
8
+ *.swp
9
+ *.vi
10
+ *~
11
+ *.sass-cache
12
+
13
+ # OS or Editor folders
14
+ .DS_Store
15
+ Thumbs.db
16
+ .cache
17
+ .project
18
+ .settings
19
+ .tmproj
20
+ *.esproj
21
+ nbproject
22
+ *.sublime-project
23
+ *.sublime-workspace
24
+
25
+ # Dreamweaver added files
26
+ _notes
27
+ dwsync.xml
28
+
29
+ # Komodo
30
+ *.komodoproject
31
+ .komodotools
32
+
33
+ # Folders to ignore
34
+ .hg
35
+ .svn
36
+ .CVS
37
+ intermediate
38
+ publish
39
+ .idea
40
+
41
+ # build script local files
42
+ build/buildinfo.properties
43
+ build/config/buildinfo.properties
44
+ marketing/files/foundation-download.zip
@@ -0,0 +1,8 @@
1
+ /* Foundation was made by ZURB, an interaction design and design strategy firm in Campbell, CA */
2
+ /* zurb.com */
3
+ /* humanstxt.org */
4
+
5
+ /* SITE */
6
+ Standards: HTML5, CSS3
7
+ Components: jQuery, Orbit, Reveal
8
+ Software: Coda, Textmate, Git
@@ -0,0 +1,133 @@
1
+ <!DOCTYPE html>
2
+
3
+ <!-- paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/ -->
4
+ <!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
5
+ <!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]-->
6
+ <!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
7
+ <!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
8
+ <head>
9
+ <meta charset="utf-8" />
10
+
11
+ <!-- Set the viewport width to device width for mobile -->
12
+ <meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0, initial-scale=1.0">
13
+
14
+ <title>Welcome to Skyron</title>
15
+
16
+ <!-- Included CSS Files -->
17
+
18
+ <link rel="stylesheet" href="stylesheets/style.css">
19
+ <script src="javascript/modernizr.js"></script>
20
+
21
+ <!-- IE Fix for HTML5 Tags -->
22
+ <!--[if lt IE 9]>
23
+ <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
24
+ <![endif]-->
25
+
26
+ </head>
27
+ <body>
28
+
29
+ <div class="row">
30
+ <div class="twelve columns">
31
+ <h2>Welcome to Foundation</h2>
32
+ <p>This is version 3.0 released on June 29, 2012</p>
33
+ <hr />
34
+ </div>
35
+ </div>
36
+
37
+ <div class="row">
38
+ <div class="eight columns">
39
+ <h3>The Grid</h3>
40
+
41
+ <!-- Grid Example -->
42
+ <div class="row">
43
+ <div class="twelve columns">
44
+ <div class="panel">
45
+ <p>This is a twelve column section in a row. Each of these includes a div.panel element so you can see where the columns are - it's not required at all for the grid.</p>
46
+ </div>
47
+ </div>
48
+ </div>
49
+ <div class="row">
50
+ <div class="six columns">
51
+ <div class="panel">
52
+ <p>Six columns</p>
53
+ </div>
54
+ </div>
55
+ <div class="six columns">
56
+ <div class="panel">
57
+ <p>Six columns</p>
58
+ </div>
59
+ </div>
60
+ </div>
61
+ <div class="row">
62
+ <div class="four columns">
63
+ <div class="panel">
64
+ <p>Four columns</p>
65
+ </div>
66
+ </div>
67
+ <div class="four columns">
68
+ <div class="panel">
69
+ <p>Four columns</p>
70
+ </div>
71
+ </div>
72
+ <div class="four columns">
73
+ <div class="panel">
74
+ <p>Four columns</p>
75
+ </div>
76
+ </div>
77
+ </div>
78
+
79
+ <h3>Tabs</h3>
80
+ <dl class="tabs">
81
+ <dd class="active"><a href="#simple1">Simple Tab 1</a></dd>
82
+ <dd><a href="#simple2">Simple Tab 2</a></dd>
83
+ <dd><a href="#simple3">Simple Tab 3</a></dd>
84
+ </dl>
85
+
86
+ <ul class="tabs-content">
87
+ <li class="active" id="simple1Tab">This is simple tab 1's content. Pretty neat, huh?</li>
88
+ <li id="simple2Tab">This is simple tab 2's content. Now you see it!</li>
89
+ <li id="simple3Tab">This is simple tab 3's content. It's, you know...okay.</li>
90
+ </ul>
91
+
92
+ <h3>Buttons</h3>
93
+
94
+ <div class="row">
95
+ <div class="six columns">
96
+ <p><a href="#" class="small button">Small Button</a></p>
97
+ <p><a href="#" class="button">Medium Button</a></p>
98
+ <p><a href="#" class="large button">Large Button</a></p>
99
+ </div>
100
+ <div class="six columns">
101
+ <p><a href="#" class="small alert button">Small Alert Button</a></p>
102
+ <p><a href="#" class="success button">Medium Success Button</a></p>
103
+ <p><a href="#" class="large secondary button">Large Secondary Button</a></p>
104
+ </div>
105
+ </div>
106
+ </div>
107
+
108
+ <div class="four columns">
109
+ <h4>Getting Started</h4>
110
+ <p>We're stoked you want to try Foundation! To get going, this file (index.html) includes some basic styles you can modify, play around with, or totally destroy to get going.</p>
111
+
112
+ <h4>Other Resources</h4>
113
+ <p>Once you've exhausted the fun in this document, you should check out:</p>
114
+ <ul class="disc">
115
+ <li><a href="http://foundation.zurb.com/docs">Foundation Documentation</a><br />Everything you need to know about using the framework.</li>
116
+ <li><a href="http://github.com/zurb/foundation">Foundation on Github</a><br />Latest code, issue reports, feature requests and more.</li>
117
+ <li><a href="http://twitter.com/foundationzurb">@foundationzurb</a><br />Ping us on Twitter if you have questions. If you build something with this we'd love to see it (and send you a totally boss sticker).</li>
118
+ </ul>
119
+ </div>
120
+ </div>
121
+
122
+
123
+ <!-- Included JS Files -->
124
+ <script src="js/jquery.min.js"></script>
125
+ <script src="js/foundation/jquery.reveal.js"></script>
126
+ <script src="js/foundation/jquery.orbit-1.4.0.js"></script>
127
+ <script src="js/foundation/jquery.customforms.js"></script>
128
+ <script src="js/foundation/jquery.placeholder.min.js"></script>
129
+ <script src="js/foundation/jquery.tooltips.js"></script>
130
+ <script src="js/scripts.js"></script>
131
+
132
+ </body>
133
+ </html>
@@ -0,0 +1,61 @@
1
+ description 'Skyron Custom Compass Gem'
2
+
3
+ # Sass Files
4
+ stylesheet 'sass/_settings.scss', :to => '_settings.scss'
5
+ stylesheet 'sass/skyron-styles/globals.scss', :to => 'skyron-styles/globals.scss', :media => "screen, projector, print"
6
+ stylesheet 'sass/skyron-styles/grid.scss', :to => 'skyron-styles/grid.scss', :media => "screen, projector, print"
7
+ stylesheet 'sass/skyron-styles/header.scss', :to => 'skyron-styles/header.scss', :media => "screen, projector, print"
8
+ stylesheet 'sass/skyron-styles/footer.scss', :to => 'skyron-styles/footer.scss', :media => "screen, projector, print"
9
+ stylesheet 'sass/skyron-styles/buttons.scss', :to => 'skyron-styles/buttons.scss', :media => "screen, projector, print"
10
+ stylesheet 'sass/skyron-styles/tabs.scss', :to => 'skyron-styles/tabs.scss', :media => "screen, projector, print"
11
+ stylesheet 'sass/skyron-styles/nav.scss', :to => 'skyron-styles/nav.scss', :media => "screen, projector, print"
12
+ stylesheet 'sass/skyron-styles/pie.scss', :to => 'skyron-styles/pie.scss', :media => "screen, projector, print"
13
+ stylesheet 'sass/skyron-styles/forms.scss', :to => 'skyron-styles/forms.scss', :media => "screen, projector, print"
14
+ stylesheet 'sass/skyron-styles/orbit.scss', :to => 'skyron-styles/orbit.scss', :media => "screen, projector, print"
15
+ stylesheet 'sass/skyron-styles/reveal.scss', :to => 'skyron-styles/reveal.scss', :media => "screen, projector, print"
16
+ stylesheet 'sass/style.scss', :to => 'style.scss', :media => "screen, projector, print"
17
+
18
+ # Relative asset paths
19
+ js_path = "/../../vendor/assets/js"
20
+ images_path = "/../../vendor/assets/images"
21
+
22
+ # Javascripts
23
+ javascript "#{js_path}/jquery.min.js", :to => "jquery.min.js"
24
+ javascript "#{js_path}/modernizr.js", :to => "modernizr.js"
25
+ javascript "#{js_path}/jquery.customforms.js", :to => "jquery.customforms.js"
26
+ javascript "#{js_path}/jquery.reveal.js", :to => "jquery.reveal.js"
27
+ javascript "#{js_path}/jquery.orbit-1.4.0.js", :to => "jquery.orbit-1.4.0.js"
28
+ javascript "#{js_path}/jquery.tooltips.js", :to => "jquery.tooltips.js"
29
+ javascript "#{js_path}/jquery.placeholder.min.js", :to => "jquery.placeholder.min.js"
30
+ javascript "#{js_path}/scripts.js", :to => "scripts.js"
31
+
32
+ # Make sure you list all the project template files here in the manifest.
33
+ html 'index.html'
34
+ file 'humans.txt'
35
+ file 'robots.txt'
36
+ file 'favicon.ico'
37
+
38
+ # Image Files
39
+ image "#{images_path}/orbit/bullets.jpg", :to => "orbit/bullets.jpg"
40
+ image "#{images_path}/orbit/left-arrow.png", :to => "orbit/left-arrow.png"
41
+ image "#{images_path}/orbit/left-arrow-small.png", :to => "orbit/left-arrow-small.png"
42
+ image "#{images_path}/orbit/loading.gif", :to => "orbit/loading.gif"
43
+ image "#{images_path}/orbit/mask-black.png", :to => "orbit/mask-black.png"
44
+ image "#{images_path}/orbit/pause-black.png", :to => "orbit/pause-black.png"
45
+ image "#{images_path}/orbit/right-arrow.png", :to => "orbit/right-arrow.png"
46
+ image "#{images_path}/orbit/right-arrow-small.png", :to => "orbit/right-arrow-small.png"
47
+ image "#{images_path}/orbit/rotator-black.png", :to => "orbit/rotator-black.png"
48
+ image "#{images_path}/orbit/timer-black.png", :to => "orbit/timer-black.png"
49
+
50
+
51
+ help %Q{
52
+
53
+ If you need help, visit skyron.co.uk
54
+
55
+ }
56
+
57
+ welcome_message %Q{
58
+
59
+ Welcome to Skyron!. Front end make easy.
60
+
61
+ }
@@ -0,0 +1,4 @@
1
+ # www.robotstxt.org/
2
+ # www.google.com/support/webmasters/bin/answer.py?hl=en&answer=156449
3
+
4
+ User-agent: *
@@ -0,0 +1,48 @@
1
+ // Settings file containing Skyron defaults
2
+
3
+ // Grid Settings
4
+
5
+ // $rowWidth: 1000px;
6
+ // $columnGutter: 30px;
7
+ // $totalColumns: 12;
8
+ // $mobileTotalColumns: 4;
9
+
10
+ // Colors Settings
11
+
12
+ // $mainColor: #2ba6cb;
13
+ // $secondaryColor: #e9e9e9;
14
+ // $alertColor: #c60f13;
15
+ // $successColor: #5da423;
16
+ // $txtColor: #222;
17
+ // $highlightColor: #ffff99;
18
+ // $black: #000;
19
+ // $white: #fff;
20
+ // $shinyEdge: rgba(#fff, .5);
21
+ // $darkEdge: rgba(#000, .2);
22
+
23
+ // Button Settings
24
+
25
+ // $buttonRadius: 3px;
26
+ // $btnBase: 10px;
27
+
28
+ // $tinyBtnBase: $btnBase - 5;
29
+ // $smallBtnBase: $btnBase - 3;
30
+ // $largeBtnBase: $btnBase + 5;
31
+
32
+ // Form Settings
33
+
34
+ // $formSpacing: 12px;
35
+
36
+ // Tab Settings
37
+
38
+ // $tabHeight: 40px;
39
+
40
+ // Nav Bar Settings
41
+
42
+ // $navBarHeight: 40px;
43
+ // $navFlyoutBaseWidth: 250px;
44
+
45
+ // Modular Scale
46
+ // $ratio: $golden;
47
+ // $base-size: 14px 44px;
48
+