lion 0.0.1 → 0.0.3

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 (87) hide show
  1. data/.DS_Store +0 -0
  2. data/bin/.DS_Store +0 -0
  3. data/bin/{lion-new.rb → lion-new} +15 -14
  4. data/bin/{lion-server.rb → lion-server} +5 -5
  5. data/lib/.DS_Store +0 -0
  6. data/lib/lion.rb +13 -11
  7. data/lib/lion/.DS_Store +0 -0
  8. data/lib/lion/installer.rb +33 -10
  9. data/lib/lion/version.rb +1 -1
  10. data/lib/src/.DS_Store +0 -0
  11. data/lib/src/.sass-cache/5ccf7d1369eea03df15eaad4a636d5758dad569f/_core.sassc +0 -0
  12. data/lib/src/.sass-cache/5ccf7d1369eea03df15eaad4a636d5758dad569f/_elements.sassc +0 -0
  13. data/lib/src/.sass-cache/5ccf7d1369eea03df15eaad4a636d5758dad569f/_mixins.sassc +0 -0
  14. data/lib/src/.sass-cache/5ccf7d1369eea03df15eaad4a636d5758dad569f/_reset.sassc +0 -0
  15. data/lib/src/.sass-cache/5ccf7d1369eea03df15eaad4a636d5758dad569f/_settings.sassc +0 -0
  16. data/lib/src/.sass-cache/5ccf7d1369eea03df15eaad4a636d5758dad569f/_typography.sassc +0 -0
  17. data/lib/src/.sass-cache/8e2d42a7994fef08dc4bb4dcc558988ca283abc8/style.sassc +0 -0
  18. data/lib/src/.sass-cache/a9fef1ceab496160ac487b91339966e9d98134b5/_alerts.sassc +0 -0
  19. data/lib/src/.sass-cache/a9fef1ceab496160ac487b91339966e9d98134b5/_buttons.sassc +0 -0
  20. data/lib/src/.sass-cache/a9fef1ceab496160ac487b91339966e9d98134b5/_classes.sassc +0 -0
  21. data/lib/src/.sass-cache/a9fef1ceab496160ac487b91339966e9d98134b5/_forms.sassc +0 -0
  22. data/lib/src/.sass-cache/a9fef1ceab496160ac487b91339966e9d98134b5/_grid.sassc +0 -0
  23. data/lib/src/.sass-cache/a9fef1ceab496160ac487b91339966e9d98134b5/_media_queries.sassc +0 -0
  24. data/lib/src/.sass-cache/a9fef1ceab496160ac487b91339966e9d98134b5/_pagination.sassc +0 -0
  25. data/lib/src/.sass-cache/a9fef1ceab496160ac487b91339966e9d98134b5/_tables.sassc +0 -0
  26. data/lib/src/gemfile +6 -0
  27. data/lib/src/lion.rb +4 -1
  28. data/lib/src/public/.DS_Store +0 -0
  29. data/lib/src/public/coffeescripts/spec/application.spec.coffee +4 -0
  30. data/lib/src/public/images/baseline_20.png +0 -0
  31. data/lib/src/public/javascripts/application.js +5 -0
  32. data/lib/src/public/stylesheets/.DS_Store +0 -0
  33. data/lib/src/public/stylesheets/css/.DS_Store +0 -0
  34. data/lib/src/public/stylesheets/css/style.css +696 -1
  35. data/lib/src/public/stylesheets/scss/lib/.DS_Store +0 -0
  36. data/lib/src/public/stylesheets/scss/lib/core.scss +32 -0
  37. data/lib/src/public/stylesheets/scss/lib/css3/.DS_Store +0 -0
  38. data/lib/src/public/stylesheets/scss/lib/css3/background-clip.scss +4 -0
  39. data/lib/src/public/stylesheets/scss/lib/css3/border-radius.scss +4 -0
  40. data/lib/src/public/stylesheets/scss/lib/css3/box-shadow.scss +4 -0
  41. data/lib/src/public/{coffeescripts/spec/application.spec.js.coffee → stylesheets/scss/lib/css3/box-sizing.scss} +0 -0
  42. data/lib/src/public/stylesheets/scss/lib/css3/columns.scss +7 -0
  43. data/lib/src/public/stylesheets/scss/lib/css3/font-face.scss +7 -0
  44. data/lib/src/public/stylesheets/scss/lib/css3/gradient.scss +51 -0
  45. data/lib/src/public/stylesheets/scss/lib/css3/opacity.scss +5 -0
  46. data/lib/src/public/stylesheets/scss/lib/css3/rotate.scss +9 -0
  47. data/lib/src/public/stylesheets/scss/lib/css3/scale.scss +0 -0
  48. data/lib/src/public/stylesheets/scss/lib/css3/text-shadow.scss +2 -0
  49. data/lib/src/public/stylesheets/scss/lib/css3/transform.scss +0 -0
  50. data/lib/src/public/stylesheets/scss/lib/css3/transition.scss +9 -0
  51. data/lib/src/public/stylesheets/scss/lib/helpers/.DS_Store +0 -0
  52. data/lib/src/public/stylesheets/scss/lib/helpers/buttons.scss +24 -0
  53. data/lib/src/public/stylesheets/scss/lib/helpers/classes.scss +18 -0
  54. data/lib/src/public/stylesheets/scss/lib/helpers/forms.scss +192 -0
  55. data/lib/src/public/stylesheets/scss/lib/helpers/media_queries.scss +17 -0
  56. data/lib/src/public/stylesheets/scss/lib/helpers/tables.scss +23 -0
  57. data/lib/src/public/stylesheets/scss/lib/layout/.DS_Store +0 -0
  58. data/lib/src/public/stylesheets/scss/lib/layout/grid.scss +30 -0
  59. data/lib/src/public/stylesheets/scss/lib/mixins.scss +17 -0
  60. data/lib/src/public/stylesheets/scss/lib/reset.scss +69 -0
  61. data/lib/src/public/stylesheets/scss/lib/settings.scss +31 -0
  62. data/lib/src/public/stylesheets/scss/lib/typography/.DS_Store +0 -0
  63. data/lib/src/public/stylesheets/scss/lib/typography/elements.scss +130 -0
  64. data/lib/src/public/stylesheets/scss/lib/typography/headings.scss +30 -0
  65. data/lib/src/public/stylesheets/scss/style.scss +12 -0
  66. data/lib/src/rakefile +19 -0
  67. data/lib/src/views/.DS_Store +0 -0
  68. data/lib/src/views/index.slim +2 -3
  69. data/lib/src/views/layout.slim +20 -7
  70. data/readme.md +29 -0
  71. data/todo.txt +0 -0
  72. metadata +71 -25
  73. data/lib/src/public/coffeescripts/application.js.coffee +0 -6
  74. data/lib/src/public/javascripts/main.js +0 -5
  75. data/lib/src/public/stylesheets/sass/lib/_core.sass +0 -7
  76. data/lib/src/public/stylesheets/sass/lib/_elements.sass +0 -100
  77. data/lib/src/public/stylesheets/sass/lib/_grid.sass +0 -30
  78. data/lib/src/public/stylesheets/sass/lib/_reset.sass +0 -84
  79. data/lib/src/public/stylesheets/sass/lib/_settings.sass +0 -42
  80. data/lib/src/public/stylesheets/sass/lib/_typography.sass +0 -45
  81. data/lib/src/public/stylesheets/sass/lib/helpers/_buttons.sass +0 -15
  82. data/lib/src/public/stylesheets/sass/lib/helpers/_classes.sass +0 -24
  83. data/lib/src/public/stylesheets/sass/lib/helpers/_forms.sass +0 -184
  84. data/lib/src/public/stylesheets/sass/lib/helpers/_media_queries.sass +0 -113
  85. data/lib/src/public/stylesheets/sass/lib/helpers/_mixins.sass +0 -76
  86. data/lib/src/public/stylesheets/sass/lib/helpers/_tables.sass +0 -29
  87. data/lib/src/public/stylesheets/sass/style.sass +0 -40
@@ -0,0 +1,30 @@
1
+ //Grid
2
+
3
+ $col_width: ($width - $gutters * ($columns - 1)) / $columns;
4
+
5
+ $col_total_width: $col_width + $gutters;
6
+
7
+ @mixin col($n: 1) {
8
+ float: left;
9
+ @include buildColumn($n); }
10
+
11
+ @mixin last {
12
+ margin-right: 0; }
13
+
14
+ @mixin buildColumn($n: 1) {
15
+ width: $n * $col_width + ($n - 1) * $gutters;
16
+ @if $n == 1 {
17
+ @include last; }
18
+ @if $n == columns {
19
+ @include last; }
20
+ @else {
21
+ margin-right: $gutters; } }
22
+
23
+ @for $i from 1 through $columns {
24
+ .span-#{$i} {
25
+ @include col($i);
26
+ &:last-child {
27
+ @include last; } } }
28
+
29
+ .last {
30
+ margin-right: 0 !important; }
@@ -0,0 +1,17 @@
1
+ @import "css3/background-clip";
2
+ @import "css3/border-radius";
3
+ @import "css3/box-shadow";
4
+ @import "css3/box-sizing";
5
+ @import "css3/columns";
6
+ @import "css3/font-face";
7
+ @import "css3/gradient";
8
+ @import "css3/scale";
9
+ @import "css3/opacity";
10
+ @import "css3/rotate";
11
+ @import "css3/text-shadow";
12
+ @import "css3/transform";
13
+ @import "css3/transition";
14
+
15
+ @mixin block{
16
+ clear:both;margin:$baseline 0;overflow:hidden;
17
+ }
@@ -0,0 +1,69 @@
1
+
2
+
3
+ html,body,div,span,object,iframe,
4
+ h1,h2,h3,h4,h5,h6,p,blockquote,pre,
5
+ abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,
6
+ small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,
7
+ fieldset,form,label,legend,
8
+ table,caption,tbody,tfoot,thead,tr,th,td,
9
+ article,aside,canvas,details,figcaption,figure,
10
+ footer,header,hgroup,menu,nav,section,summary,
11
+ time,mark,audio,video {
12
+ margin: 0;
13
+ padding: 0;
14
+ border: 0;
15
+ font-size: 100%;
16
+ font: inherit;
17
+ vertical-align: baseline; }
18
+
19
+ article,aside,details,figcaption,figure,
20
+ footer,header,hgroup,menu,nav,section {
21
+ display: block;
22
+ width: 100%; }
23
+
24
+ blockquote,q {
25
+ quotes: none; }
26
+
27
+ blockquote:before,blockquote:after,
28
+ q:before,q:after {
29
+ content: "";
30
+ content: none; }
31
+
32
+ table {
33
+ border-collapse: collapse;
34
+ border-spacing: 0; }
35
+
36
+ hr {
37
+ display: block;
38
+ height: 1px;
39
+ border: 0;
40
+ border-top: 1px solid #cccccc;
41
+ margin: $baseline 0 ($baseline - 1) 0;
42
+ padding: 0; }
43
+
44
+ input,select {
45
+ vertical-align: middle; }
46
+
47
+ textarea {
48
+ overflow: auto; }
49
+
50
+ .ie6 legend,.ie7 legend {
51
+ margin-left: -7px; }
52
+
53
+ input[wtype="radio"] {
54
+ vertical-align: text-bottom; }
55
+
56
+ input[type="checkbox"] {
57
+ vertical-align: bottom; }
58
+
59
+ .ie7 input[type="checkbox"] {
60
+ vertical-align: baseline; }
61
+
62
+ .ie6 input {
63
+ vertical-align: text-bottom; }
64
+
65
+ label,input[type="button"],input[type="submit"],input[type="image"],button {
66
+ cursor: pointer; }
67
+
68
+ button,input,select,textarea {
69
+ margin: 0; }
@@ -0,0 +1,31 @@
1
+ $width: 940px;
2
+ $gutters: 20px;
3
+ $columns: 12;
4
+ $baseline: 20px;
5
+
6
+ $sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
7
+ $serif: "Georgia", Times New Roman, Times, sans-serif;
8
+ $mono: "Monaco", Courier New, monospace;
9
+ $font-size: 13px;
10
+
11
+ $links: #0069d6;
12
+ $linksHover: darken($links, 10);
13
+
14
+ // Grays
15
+ $black: black;
16
+ $grayDark: lighten($black, 25%);
17
+ $gray: lighten($black, 50%);
18
+ $grayLight: lighten($black, 75%);
19
+ $grayLighter: lighten($black, 90%);
20
+ $white: white;
21
+
22
+ // Accent Colors
23
+ $blue: #049cdb;
24
+ $blueDark: #0064cd;
25
+ $green: #46a546;
26
+ $red: #9d261d;
27
+ $yellow: #ffc40d;
28
+ $orange: #f89406;
29
+ $pink: #c3325f;
30
+ $purple: #7a43b6;
31
+ $borders: #cccccc;
@@ -0,0 +1,130 @@
1
+ body,h1,h2,h3,h4,h5,h6,p,ul,ol,dl,input,textarea {
2
+ line-height: $baseline;
3
+ font-family: $sans;
4
+ color: $gray;
5
+ font-size: $font-size;
6
+ }
7
+
8
+ p {
9
+ margin-bottom: $baseline;
10
+ }
11
+
12
+ ol {
13
+ margin-bottom: $baseline;
14
+ margin-left:$baseline;
15
+
16
+ ol {margin-bottom:0;}
17
+ }
18
+
19
+ ul {
20
+ margin-bottom: $baseline;
21
+ li {
22
+ margin-bottom: $baseline / 4;
23
+ margin-left: 14px;
24
+
25
+ ul {
26
+ margin-left: $baseline;
27
+ margin-top: $baseline / 2;
28
+ margin-bottom: $baseline / 2;
29
+ }
30
+
31
+ }
32
+
33
+ }
34
+
35
+ ul.unstyled{
36
+ list-style:none;
37
+ li{margin-left:0;}
38
+ }
39
+
40
+
41
+ dl {
42
+ margin-bottom: $baseline;
43
+
44
+ dt {
45
+ font-weight: bold;
46
+ margin-bottom: $baseline / 2;
47
+ }
48
+
49
+ dd {
50
+ margin-bottom: $baseline / 2;
51
+ }
52
+
53
+ }
54
+
55
+
56
+ abbr, acronym {
57
+ border-bottom: 1px dotted black;
58
+ }
59
+
60
+ address {
61
+ font-style: italic;
62
+ }
63
+
64
+ del {
65
+ color: black;
66
+ }
67
+
68
+ a {
69
+ color: $links;
70
+ text-decoration: none;
71
+ @include transition;
72
+ cursor: pointer;
73
+ }
74
+
75
+ a:hover {
76
+ text-decoration: none;
77
+ }
78
+
79
+ blockquote {
80
+ display: block;
81
+ font-weight: bold;
82
+ border-left: 4px solid #eeeeee;
83
+ padding: ($baseline*2) $baseline;
84
+ font-weight: bold;
85
+ font-size:30px;
86
+ font-family:serif;
87
+ font-style:italic;
88
+ color:$grayDark;
89
+ line-height:30px;
90
+ margin:$baseline 0;
91
+ }
92
+
93
+ pre, code {
94
+ margin: 10px 0;
95
+ white-space: pre;
96
+ }
97
+
98
+ pre, code, tt {
99
+ font: $mono;
100
+ line-height: 1.5;
101
+ padding: 0 3px 2px;
102
+ background: #fee9cc;
103
+ }
104
+
105
+ q {
106
+ font-style: italic;
107
+ font-weight: bold;
108
+ font-family: $serif;
109
+ }
110
+
111
+ cite {
112
+ display: block;
113
+ font-weight: bold;
114
+ }
115
+
116
+ img {
117
+ margin-bottom: 10px;
118
+ }
119
+
120
+ figcaption {
121
+ display: block;
122
+ font-weight: bold;
123
+ font-style: italic;
124
+ }
125
+
126
+ small {
127
+ font-size:$font-size - 3;
128
+ }
129
+
130
+ strong{font-weight:bold;}
@@ -0,0 +1,30 @@
1
+ h1,h2,h3,h4,h5,h6 {
2
+ margin-bottom: $baseline;
3
+ color: $grayDark;
4
+ font-weight: normal; }
5
+
6
+ h1 {
7
+ font-size: 30px;
8
+ line-height: $baseline * 2; }
9
+
10
+ h2 {
11
+ font-size: 25px;
12
+ line-height: $baseline; }
13
+
14
+ h3 {
15
+ font-size: 20px;
16
+ line-height: $baseline; }
17
+
18
+ h4 {
19
+ font-size: 15px;
20
+ line-height: $baseline; }
21
+
22
+ h5 {
23
+ font-size: 15px;
24
+ font-weight:bold;
25
+ line-height: $baseline; }
26
+
27
+ h6 {
28
+ font-size: 15px;
29
+ font-weight:bold;
30
+ line-height: $baseline; }
@@ -0,0 +1,12 @@
1
+ @import "lib/core";
2
+
3
+ .container {
4
+ width: $width;
5
+ margin: 0 auto;
6
+ padding: 20px 0;
7
+ overflow: hidden; }
8
+
9
+ section{@include block}
10
+
11
+ //Media Queries
12
+ @import "lib/helpers/media_queries";
@@ -0,0 +1,19 @@
1
+ task :environment do
2
+ require './lion'
3
+ end
4
+
5
+ desc "Compile SASS files into CSS in CSS/style.css"
6
+ task :sass => :environment do
7
+ system "sass --watch public/stylesheets/sass:public/stylesheets/css --style nested"
8
+ end
9
+
10
+ desc "Compile SCSS files into CSS in CSS/style.css"
11
+ task :scss => :environment do
12
+ system "sass --watch public/stylesheets/scss:public/stylesheets/css --style nested"
13
+ end
14
+
15
+
16
+
17
+
18
+
19
+
Binary file
@@ -1,3 +1,2 @@
1
- h1 Lion
2
- p Welcome to Lion, a framework for building better websites.
3
- p You can render partial templates with slim :mypartial
1
+ h1 Welcome to Lion
2
+ p Lion is a small Ruby framework built on top of Rack and Sinatra
@@ -1,10 +1,23 @@
1
- doctype html
2
- html
1
+ doctype 5
2
+ html class="no-js" lang="en"
3
3
  head
4
- title Lion Framework
5
- meta name="keywords" content="template language"
6
- link href="/stylesheets/css/style.css" rel="stylesheet" type="text/css"
4
+ meta charset="utf-8"
5
+ title="Project Title"
6
+ meta content="" name="description"
7
+ meta content="" name="author"
8
+ script src="http://html5shim.googlecode.com/svn/trunk/html5.js"
9
+
10
+ | <!-- Mobile Specific Meta Tags -->
11
+ meta name="viewport" content="width=(device-width; initial-scale=1.0;)maximum-scale=1.0;"
12
+
13
+ | <!-- CSS -->
14
+ link rel="stylesheet" href="/stylesheets/css/style.css" type="text/css"
7
15
 
8
16
  body
9
- div id="container" style="text-align:center"
10
- == yield
17
+ .container
18
+ == yield
19
+
20
+ script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"
21
+ script src="http://ajax.cdnjs.com/ajax/libs/underscore.js/1.1.6/underscore-min.js"
22
+ script src="http://ajax.cdnjs.com/ajax/libs/backbone.js/0.3.3/backbone-min.js"
23
+ script src="javascripts/application.js"
@@ -0,0 +1,29 @@
1
+ #Lion ( A work in progress )
2
+
3
+ A static site builder based on Sinatra/Ruby. I will be using the framework as the basis for all static html projects.
4
+
5
+ When you create a new slim template in views it will automatically become available at localhost:9292/template_name
6
+
7
+ ##Project Goals
8
+
9
+ + Automatically compile sass and watch coffeescript
10
+ + Slim template engine
11
+ + SASS for styling
12
+ + Automatic build scripts to turn slim into html
13
+ + Easy deploy to Heroku
14
+ + Rake commands for common tasks (compile coffeescript, testing etc)
15
+ + RSpec for Ruby
16
+ + Jasmine for JavaScript Testing
17
+
18
+ ##Install
19
+
20
+ gem install lion
21
+ lion-new project_name
22
+ cd project_name
23
+ lion-server
24
+
25
+ ##Other tasks
26
+
27
+ + rake precompile >> Compiles all javascripts in the /app folder into application.js
28
+ + rake sass >> start watching sass for changes and compile into css/style.css
29
+
File without changes
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lion
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,11 +9,11 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2011-08-22 00:00:00.000000000Z
12
+ date: 2011-08-29 00:00:00.000000000Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: sinatra
16
- requirement: &24359076 !ruby/object:Gem::Requirement
16
+ requirement: &2157533060 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ! '>='
@@ -21,47 +21,93 @@ dependencies:
21
21
  version: '0'
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *24359076
24
+ version_requirements: *2157533060
25
25
  description: A sinatra based front end framework
26
26
  email:
27
27
  - owain@owainlewis.com
28
28
  executables:
29
- - lion-new.rb
30
- - lion-server.rb
29
+ - lion-new
30
+ - lion-server
31
31
  extensions: []
32
32
  extra_rdoc_files: []
33
33
  files:
34
+ - .DS_Store
34
35
  - .gitignore
35
36
  - Gemfile
36
37
  - Rakefile
37
- - bin/lion-new.rb
38
- - bin/lion-server.rb
38
+ - bin/.DS_Store
39
+ - bin/lion-new
40
+ - bin/lion-server
41
+ - lib/.DS_Store
39
42
  - lib/lion.rb
43
+ - lib/lion/.DS_Store
40
44
  - lib/lion/base.rb
41
45
  - lib/lion/installer.rb
42
46
  - lib/lion/version.rb
47
+ - lib/src/.DS_Store
48
+ - lib/src/.sass-cache/5ccf7d1369eea03df15eaad4a636d5758dad569f/_core.sassc
49
+ - lib/src/.sass-cache/5ccf7d1369eea03df15eaad4a636d5758dad569f/_elements.sassc
50
+ - lib/src/.sass-cache/5ccf7d1369eea03df15eaad4a636d5758dad569f/_mixins.sassc
51
+ - lib/src/.sass-cache/5ccf7d1369eea03df15eaad4a636d5758dad569f/_reset.sassc
52
+ - lib/src/.sass-cache/5ccf7d1369eea03df15eaad4a636d5758dad569f/_settings.sassc
53
+ - lib/src/.sass-cache/5ccf7d1369eea03df15eaad4a636d5758dad569f/_typography.sassc
54
+ - lib/src/.sass-cache/8e2d42a7994fef08dc4bb4dcc558988ca283abc8/style.sassc
55
+ - lib/src/.sass-cache/a9fef1ceab496160ac487b91339966e9d98134b5/_alerts.sassc
56
+ - lib/src/.sass-cache/a9fef1ceab496160ac487b91339966e9d98134b5/_buttons.sassc
57
+ - lib/src/.sass-cache/a9fef1ceab496160ac487b91339966e9d98134b5/_classes.sassc
58
+ - lib/src/.sass-cache/a9fef1ceab496160ac487b91339966e9d98134b5/_forms.sassc
59
+ - lib/src/.sass-cache/a9fef1ceab496160ac487b91339966e9d98134b5/_grid.sassc
60
+ - lib/src/.sass-cache/a9fef1ceab496160ac487b91339966e9d98134b5/_media_queries.sassc
61
+ - lib/src/.sass-cache/a9fef1ceab496160ac487b91339966e9d98134b5/_pagination.sassc
62
+ - lib/src/.sass-cache/a9fef1ceab496160ac487b91339966e9d98134b5/_tables.sassc
43
63
  - lib/src/config.ru
64
+ - lib/src/gemfile
44
65
  - lib/src/lion.rb
45
- - lib/src/public/coffeescripts/application.js.coffee
46
- - lib/src/public/coffeescripts/spec/application.spec.js.coffee
47
- - lib/src/public/javascripts/main.js
66
+ - lib/src/public/.DS_Store
67
+ - lib/src/public/coffeescripts/spec/application.spec.coffee
68
+ - lib/src/public/images/baseline_20.png
69
+ - lib/src/public/javascripts/application.js
70
+ - lib/src/public/stylesheets/.DS_Store
71
+ - lib/src/public/stylesheets/css/.DS_Store
48
72
  - lib/src/public/stylesheets/css/style.css
49
- - lib/src/public/stylesheets/sass/lib/_core.sass
50
- - lib/src/public/stylesheets/sass/lib/_elements.sass
51
- - lib/src/public/stylesheets/sass/lib/_grid.sass
52
- - lib/src/public/stylesheets/sass/lib/_reset.sass
53
- - lib/src/public/stylesheets/sass/lib/_settings.sass
54
- - lib/src/public/stylesheets/sass/lib/_typography.sass
55
- - lib/src/public/stylesheets/sass/lib/helpers/_buttons.sass
56
- - lib/src/public/stylesheets/sass/lib/helpers/_classes.sass
57
- - lib/src/public/stylesheets/sass/lib/helpers/_forms.sass
58
- - lib/src/public/stylesheets/sass/lib/helpers/_media_queries.sass
59
- - lib/src/public/stylesheets/sass/lib/helpers/_mixins.sass
60
- - lib/src/public/stylesheets/sass/lib/helpers/_tables.sass
61
- - lib/src/public/stylesheets/sass/style.sass
73
+ - lib/src/public/stylesheets/scss/lib/.DS_Store
74
+ - lib/src/public/stylesheets/scss/lib/core.scss
75
+ - lib/src/public/stylesheets/scss/lib/css3/.DS_Store
76
+ - lib/src/public/stylesheets/scss/lib/css3/background-clip.scss
77
+ - lib/src/public/stylesheets/scss/lib/css3/border-radius.scss
78
+ - lib/src/public/stylesheets/scss/lib/css3/box-shadow.scss
79
+ - lib/src/public/stylesheets/scss/lib/css3/box-sizing.scss
80
+ - lib/src/public/stylesheets/scss/lib/css3/columns.scss
81
+ - lib/src/public/stylesheets/scss/lib/css3/font-face.scss
82
+ - lib/src/public/stylesheets/scss/lib/css3/gradient.scss
83
+ - lib/src/public/stylesheets/scss/lib/css3/opacity.scss
84
+ - lib/src/public/stylesheets/scss/lib/css3/rotate.scss
85
+ - lib/src/public/stylesheets/scss/lib/css3/scale.scss
86
+ - lib/src/public/stylesheets/scss/lib/css3/text-shadow.scss
87
+ - lib/src/public/stylesheets/scss/lib/css3/transform.scss
88
+ - lib/src/public/stylesheets/scss/lib/css3/transition.scss
89
+ - lib/src/public/stylesheets/scss/lib/helpers/.DS_Store
90
+ - lib/src/public/stylesheets/scss/lib/helpers/buttons.scss
91
+ - lib/src/public/stylesheets/scss/lib/helpers/classes.scss
92
+ - lib/src/public/stylesheets/scss/lib/helpers/forms.scss
93
+ - lib/src/public/stylesheets/scss/lib/helpers/media_queries.scss
94
+ - lib/src/public/stylesheets/scss/lib/helpers/tables.scss
95
+ - lib/src/public/stylesheets/scss/lib/layout/.DS_Store
96
+ - lib/src/public/stylesheets/scss/lib/layout/grid.scss
97
+ - lib/src/public/stylesheets/scss/lib/mixins.scss
98
+ - lib/src/public/stylesheets/scss/lib/reset.scss
99
+ - lib/src/public/stylesheets/scss/lib/settings.scss
100
+ - lib/src/public/stylesheets/scss/lib/typography/.DS_Store
101
+ - lib/src/public/stylesheets/scss/lib/typography/elements.scss
102
+ - lib/src/public/stylesheets/scss/lib/typography/headings.scss
103
+ - lib/src/public/stylesheets/scss/style.scss
104
+ - lib/src/rakefile
105
+ - lib/src/views/.DS_Store
62
106
  - lib/src/views/index.slim
63
107
  - lib/src/views/layout.slim
64
108
  - lion.gemspec
109
+ - readme.md
110
+ - todo.txt
65
111
  homepage: ''
66
112
  licenses: []
67
113
  post_install_message:
@@ -82,7 +128,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
82
128
  version: '0'
83
129
  requirements: []
84
130
  rubyforge_project: lion
85
- rubygems_version: 1.8.8
131
+ rubygems_version: 1.8.5
86
132
  signing_key:
87
133
  specification_version: 3
88
134
  summary: Lion is a sinatra based front end framework