wiskey 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
data/.rvmrc CHANGED
@@ -1 +1 @@
1
- rvm use 1.9.2@wiskey
1
+ rvm use 1.9.2@wiskey --create
data/Gemfile CHANGED
@@ -4,7 +4,7 @@ gem "rails", "3.1.0"
4
4
  gem 'sass'
5
5
  gem 'sass-rails'
6
6
 
7
- # gem "capybara", ">= 0.4.0"
7
+ gem "capybara"
8
8
 
9
9
  # To use debugger (ruby-debug for Ruby 1.8.7+, ruby-debug19 for Ruby 1.9.2+)
10
10
  # gem 'ruby-debug'
data/Gemfile.lock CHANGED
@@ -33,15 +33,27 @@ GEM
33
33
  arel (2.2.1)
34
34
  bcrypt-ruby (3.0.0)
35
35
  builder (3.0.0)
36
+ capybara (1.1.2)
37
+ mime-types (>= 1.16)
38
+ nokogiri (>= 1.3.3)
39
+ rack (>= 1.0.0)
40
+ rack-test (>= 0.5.4)
41
+ selenium-webdriver (~> 2.0)
42
+ xpath (~> 0.1.4)
43
+ childprocess (0.2.3)
44
+ ffi (~> 1.0.6)
36
45
  erubis (2.7.0)
46
+ ffi (1.0.11)
37
47
  hike (1.2.1)
38
48
  i18n (0.6.0)
49
+ json_pure (1.6.3)
39
50
  mail (2.3.0)
40
51
  i18n (>= 0.4.0)
41
52
  mime-types (~> 1.16)
42
53
  treetop (~> 1.4.8)
43
54
  mime-types (1.16)
44
55
  multi_json (1.0.3)
56
+ nokogiri (1.5.0)
45
57
  polyglot (0.3.2)
46
58
  rack (1.3.2)
47
59
  rack-cache (1.0.3)
@@ -69,6 +81,7 @@ GEM
69
81
  thor (~> 0.14.6)
70
82
  rake (0.9.2)
71
83
  rdoc (3.9.4)
84
+ rubyzip (0.9.5)
72
85
  sass (3.1.7)
73
86
  sass-rails (3.1.4)
74
87
  actionpack (~> 3.1.0)
@@ -76,6 +89,11 @@ GEM
76
89
  sass (>= 3.1.4)
77
90
  sprockets (~> 2.0.0)
78
91
  tilt (~> 1.3.2)
92
+ selenium-webdriver (2.13.0)
93
+ childprocess (>= 0.2.1)
94
+ ffi (~> 1.0.9)
95
+ json_pure
96
+ rubyzip
79
97
  sprockets (2.0.0)
80
98
  hike (~> 1.2)
81
99
  rack (~> 1.0)
@@ -86,11 +104,14 @@ GEM
86
104
  polyglot
87
105
  polyglot (>= 0.3.1)
88
106
  tzinfo (0.3.29)
107
+ xpath (0.1.4)
108
+ nokogiri (~> 1.3)
89
109
 
90
110
  PLATFORMS
91
111
  ruby
92
112
 
93
113
  DEPENDENCIES
114
+ capybara
94
115
  rails (= 3.1.0)
95
116
  sass
96
117
  sass-rails
@@ -1,6 +1,5 @@
1
1
  // Custom Functions
2
2
  @import "functions/experimental";
3
- @import "functions/linear-gradient";
4
3
 
5
4
  // CSS3 Mixins
6
5
  @import "css3/animation";
@@ -17,3 +16,4 @@
17
16
  @import "css3/opacity";
18
17
  @import "css3/text-shadow";
19
18
  @import "css3/text-overflow";
19
+ @import "css3/column-count";
@@ -10,9 +10,8 @@
10
10
  $full: compact($name-1, $name-2, $name-3, $name-4,
11
11
  $name-5, $name-6, $name-7, $name-8, $name-9);
12
12
 
13
- -webkit-animation-name: $full;
14
- -moz-animation-name: $full;
15
- animation-name: $full;
13
+ @include experimental(animation-name, $full,
14
+ -moz, -webkit, not -o, not -ms, not -khtml, official);
16
15
  }
17
16
 
18
17
 
@@ -25,9 +24,8 @@
25
24
  $full: compact($time-1, $time-2, $time-3, $time-4,
26
25
  $time-5, $time-6, $time-7, $time-8, $time-9);
27
26
 
28
- -webkit-animation-duration: $full;
29
- -moz-animation-duration: $full;
30
- animation-duration: $full;
27
+ @include experimental(animation-duration, $full,
28
+ -moz, -webkit, not -o, not -ms, not -khtml, official);
31
29
  }
32
30
 
33
31
 
@@ -41,9 +39,8 @@
41
39
  $full: compact($motion-1, $motion-2, $motion-3, $motion-4,
42
40
  $motion-5, $motion-6, $motion-7, $motion-8, $motion-9);
43
41
 
44
- -webkit-animation-timing-function: $full;
45
- -moz-animation-timing-function: $full;
46
- animation-timing-function: $full;
42
+ @include experimental(animation-timing-function, $full,
43
+ -moz, -webkit, not -o, not -ms, not -khtml, official);
47
44
  }
48
45
 
49
46
 
@@ -57,9 +54,8 @@
57
54
  $full: compact($value-1, $value-2, $value-3, $value-4,
58
55
  $value-5, $value-6, $value-7, $value-8, $value-9);
59
56
 
60
- -webkit-animation-iteration-count: $full;
61
- -moz-animation-iteration-count: $full;
62
- animation-iteration-count: $full;
57
+ @include experimental(animation-iteration-count, $full,
58
+ -moz, -webkit, not -o, not -ms, not -khtml, official);
63
59
  }
64
60
 
65
61
 
@@ -76,6 +72,8 @@
76
72
  -webkit-animation-direction: $full;
77
73
  -moz-animation-direction: $full;
78
74
  animation-direction: $full;
75
+ @include experimental(animation-direction, $full,
76
+ -moz, -webkit, not -o, not -ms, not -khtml, official);
79
77
  }
80
78
 
81
79
 
@@ -89,9 +87,8 @@
89
87
  $full: compact($state-1, $state-2, $state-3, $state-4,
90
88
  $state-5, $state-6, $state-7, $state-8, $state-9);
91
89
 
92
- -webkit-animation-play-state: $full;
93
- -moz-animation-play-state: $full;
94
- animation-play-state: $full;
90
+ @include experimental(animation-play-state, $full,
91
+ -moz, -webkit, not -o, not -ms, not -khtml, official);
95
92
  }
96
93
 
97
94
 
@@ -104,9 +101,8 @@
104
101
  $full: compact($time-1, $time-2, $time-3, $time-4,
105
102
  $time-5, $time-6, $time-7, $time-8, $time-9);
106
103
 
107
- -webkit-animation-delay: $full;
108
- -moz-animation-delay: $full;
109
- animation-delay: $full;
104
+ @include experimental(animation-delay, $full,
105
+ -moz, -webkit, not -o, not -ms, not -khtml, official);
110
106
  }
111
107
 
112
108
 
@@ -121,9 +117,8 @@
121
117
  $full: compact($mode-1, $mode-2, $mode-3, $mode-4,
122
118
  $mode-5, $mode-6, $mode-7, $mode-8, $mode-9);
123
119
 
124
- -webkit-animation-fill-mode: $full;
125
- -moz-animation-fill-mode: $full;
126
- animation-fill-mode: $full;
120
+ @include experimental(animation-fill-mode, $full,
121
+ -moz, -webkit, not -o, not -ms, not -khtml, official);
127
122
  }
128
123
 
129
124
 
@@ -155,7 +150,7 @@
155
150
 
156
151
  // Official animation shorthand property. Needs more work to actually be useful.
157
152
  @mixin animation ($name, $duration, $timing-function, $delay, $iteration-count, $direction) {
158
- -webkit-animation: $name $duration $timing-function $delay $iteration-count $direction;
159
- -moz-animation: $name $duration $timing-function $delay $iteration-count $direction;
160
- animation: $name $duration $timing-function $delay $iteration-count $direction;
153
+ $full: $name $duration $timing-function $delay $iteration-count $direction;
154
+ @include experimental(animation, $full,
155
+ -moz, -webkit, not -o, not -ms, not -khtml, official);
161
156
  }
@@ -4,21 +4,9 @@
4
4
  @if $clip == border-box { $deprecated: border; }
5
5
 
6
6
  @include experimental(background-clip, $deprecated,
7
- -moz,
8
- -webkit,
9
- not -o,
10
- not -ms,
11
- not -khtml,
12
- not official
13
- );
7
+ -moz, -webkit, not -o, not -ms, not -khtml, not official);
14
8
  @include experimental(background-clip, $clip,
15
- not -moz,
16
- not -webkit,
17
- -o,
18
- -ms,
19
- -khtml,
20
- official
21
- );
9
+ not -moz, not -webkit, -o, -ms, -khtml, official);
22
10
  }
23
11
 
24
12
  // @include background-clip(padding-box);
@@ -11,26 +11,26 @@
11
11
 
12
12
  @mixin border-top-left-radius($top-left) {
13
13
  -webkit-border-top-left-radius: $top-left;
14
- -moz-border-radius-topleft: $top-left;
15
- border-top-left-radius: $top-left;
14
+ -moz-border-radius-topleft: $top-left;
15
+ border-top-left-radius: $top-left;
16
16
  }
17
17
 
18
18
  @mixin border-top-right-radius($top-right) {
19
19
  -webkit-border-top-right-radius: $top-right;
20
- -moz-border-radius-topright: $top-right;
21
- border-top-right-radius: $top-right;
20
+ -moz-border-radius-topright: $top-right;
21
+ border-top-right-radius: $top-right;
22
22
  }
23
23
 
24
24
  @mixin border-bottom-left-radius($bottom-left) {
25
25
  -webkit-border-bottom-left-radius: $bottom-left;
26
- -moz-border-radius-bottomleft: $bottom-left;
27
- border-bottom-left-radius: $bottom-left;
26
+ -moz-border-radius-bottomleft: $bottom-left;
27
+ border-bottom-left-radius: $bottom-left;
28
28
  }
29
29
 
30
30
  @mixin border-bottom-right-radius($bottom-right) {
31
31
  -webkit-border-bottom-right-radius: $bottom-right;
32
- -moz-border-radius-bottomright: $bottom-right;
33
- border-bottom-right-radius: $bottom-right;
32
+ -moz-border-radius-bottomright: $bottom-right;
33
+ border-bottom-right-radius: $bottom-right;
34
34
  }
35
35
 
36
36
  @mixin border-top-radius($top) {
@@ -1,3 +1,4 @@
1
1
  @mixin box-shadow($params) {
2
- @include experimental(box-shadow, $params, -moz, -webkit, -o, not -ms, not -khtml, official);
2
+ @include experimental(box-shadow, $params,
3
+ -moz, -webkit, -o, not -ms, not -khtml, official);
3
4
  }
@@ -1,8 +1,9 @@
1
1
  @mixin box-sizing ($box) {
2
2
  // content-box | border-box | inherit
3
- -webkit-box-sizing: $box;
4
- -moz-box-sizing: $box;
5
- -ms-box-sizing: $box;
6
- -o-box-sizing: $box;
7
- box-sizing: $box;
3
+ @include experimental(box-sizing, $box,
4
+ -moz, -webkit, -o, -ms, not -khtml, official)
8
5
  }
6
+
7
+ // @include box-sizing(content-box);
8
+ // @include box-sizing(border-box);
9
+ // @include box-sizing(inherit);
@@ -0,0 +1,18 @@
1
+ @mixin column-count($count, $rule, $gap) {
2
+ -webkit-column-count: $count;
3
+ -moz-column-count: $count;
4
+ column-count: $count;
5
+
6
+ -webkit-column-rule: $rule;
7
+ -moz-column-rule: $rule;
8
+ column-rule: $rule;
9
+
10
+ -webkit-column-gap: $gap;
11
+ -moz-column-gap: $gap;
12
+ column-gap: $gap;
13
+ }
14
+
15
+ // count: column count
16
+ // rule: rule style
17
+ // gap: padding between columns
18
+ // @include column-count(2, 1px solid #bbb, 2em)
@@ -14,54 +14,39 @@
14
14
  display: box;
15
15
  }
16
16
 
17
- @mixin box-orient($orient: inline-axis) {
18
17
  // horizontal|vertical|inline-axis|block-axis|inherit
19
- -webkit-box-orient: $orient;
20
- -moz-box-orient: $orient;
21
- box-orient: $orient;
18
+ @mixin box-orient($orient: inline-axis) {
19
+ @include mw-experimental(box-orient, $orient);
22
20
  }
23
21
 
24
- @mixin box-pack($pack: start) {
25
22
  // start|end|center|justify
26
- -webkit-box-pack: $pack;
27
- -moz-box-pack: $pack;
28
- box-pack: $pack;
23
+ @mixin box-pack($pack: start) {
24
+ @include mw-experimental(box-pack, $pack);
29
25
  }
30
26
 
31
- @mixin box-align($align: stretch) {
32
27
  // start|end|center|baseline|stretch
33
- -webkit-box-align: $align;
34
- -moz-box-align: $align;
35
- box-align: $align;
28
+ @mixin box-align($align: stretch) {
29
+ @include mw-experimental(box-align, $align);
36
30
  }
37
31
 
38
- @mixin box-direction($direction: normal) {
39
32
  // normal|reverse|inherit
40
- -webkit-box-direction: $direction;
41
- -moz-box-direction: $direction;
42
- box-direction: $direction;
33
+ @mixin box-direction($direction: normal) {
34
+ @include mw-experimental(box-direction, $direction);
43
35
  }
44
- @mixin box-lines($lines: single) {
36
+
45
37
  // single|multiple
46
- -webkit-box-lines: $lines;
47
- -moz-box-lines: $lines;
48
- box-lines: $lines;
38
+ @mixin box-lines($lines: single) {
39
+ @include mw-experimental(box-lines, $lines);
49
40
  }
50
41
 
51
42
  @mixin box-ordinal-group($integer: 1) {
52
- -webkit-box-ordinal-group: $integer;
53
- -moz-box-ordinal-group: $integer;
54
- box-ordinal-group: $integer;
43
+ @include mw-experimental(box-ordinal-group, $integer);
55
44
  }
56
45
 
57
46
  @mixin box-flex($value: 0.0) {
58
- -webkit-box-flex: $value;
59
- -moz-box-flex: $value;
60
- box-flex: $value;
47
+ @include mw-experimental(box-flex, $value);
61
48
  }
62
49
 
63
50
  @mixin box-flex-group($integer: 1) {
64
- -webkit-box-flex-group: $integer;
65
- -moz-box-flex-group: $integer;
66
- box-flex-group: $integer;
51
+ @include mw-experimental(box-flex-group, $integer);
67
52
  }
@@ -3,4 +3,6 @@
3
3
  -moz-opacity: $val;
4
4
  -khtml-opacity: $val;
5
5
  opacity: $val;
6
+ @include experimental(opacity, $val,
7
+ -moz, not -webkit, not -o, not -ms, -khtml, official);
6
8
  }
@@ -1,5 +1,4 @@
1
1
  @mixin text-overflow {
2
2
  overflow: hidden;
3
- -o-text-overflow: ellipsis;
4
- text-overflow: ellipsis;
3
+ @include o-experimental(text-overflow, ellipsis);
5
4
  }
@@ -1,19 +1,13 @@
1
1
  @mixin transform($property: none) {
2
2
  // none | <transform-function>
3
- -webkit-transform: $property;
4
- -moz-transform: $property;
5
- -ms-transform: $property;
6
- -o-transform: $property;
7
- transform: $property;
3
+ @include experimental(transform, $property,
4
+ -moz, -webkit, -o, -ms, not -khtml, official);
8
5
  }
9
6
 
10
7
  @mixin transform-origin($axes: 50%) {
11
8
  // x-axis - left | center | right | length | %
12
9
  // y-axis - top | center | bottom | length | %
13
10
  // z-axis - length
14
- -webkit-transform-origin: $axes;
15
- -moz-transform-origin: $axes;
16
- -ms-transform-origin: $axes;
17
- -o-transform-origin: $axes;
18
- transform-origin: $axes;
11
+ @include experimental(transform-origin, $axes,
12
+ -moz, -webkit, -o, -ms, not -khtml, official);
19
13
  }
@@ -46,11 +46,8 @@
46
46
  $full: compact($prop-1, $prop-2, $prop-3, $prop-4, $prop-5,
47
47
  $prop-6, $prop-7, $prop-8, $prop-9);
48
48
 
49
- -webkit-transition-property: $full;
50
- -moz-transition-property: $full;
51
- -ms-transition-property: $full;
52
- -o-transition-property: $full;
53
- transition-property: $full;
49
+ @include experimental(transition-property, $full,
50
+ -moz, -webkit, -o, -ms, not -khtml, official);
54
51
  }
55
52
 
56
53
  @mixin transition-duration ($time-1: 0,
@@ -62,11 +59,8 @@
62
59
  $full: compact($time-1, $time-2, $time-3, $time-4, $time-5,
63
60
  $time-6, $time-7, $time-8, $time-9);
64
61
 
65
- -webkit-transition-duration: $full;
66
- -moz-transition-duration: $full;
67
- -ms-transition-duration: $full;
68
- -o-transition-duration: $full;
69
- transition-duration: $full;
62
+ @include experimental(transition-duration, $full,
63
+ -moz, -webkit, -o, -ms, not -khtml, official);
70
64
  }
71
65
 
72
66
  @mixin transition-timing-function ($motion-1: ease,
@@ -79,11 +73,8 @@
79
73
  $motion-6, $motion-7, $motion-8, $motion-9);
80
74
 
81
75
  // ease | linear | ease-in | ease-out | ease-in-out | cubic-bezier()
82
- -webkit-transition-timing-function: $full;
83
- -moz-transition-timing-function: $full;
84
- -ms-transition-timing-function: $full;
85
- -o-transition-timing-function: $full;
86
- transition-timing-function: $full;
76
+ @include experimental(transition-timing-function, $full,
77
+ -moz, -webkit, -o, -ms, not -khtml, official);
87
78
  }
88
79
 
89
80
  @mixin transition-delay ($time-1: 0,
@@ -95,10 +86,6 @@
95
86
  $full: compact($time-1, $time-2, $time-3, $time-4, $time-5,
96
87
  $time-6, $time-7, $time-8, $time-9);
97
88
 
98
- -webkit-transition-delay: $full;
99
- -moz-transition-delay: $full;
100
- -ms-transition-delay: $full;
101
- -o-transition-delay: $full;
102
- transition-delay: $full;
89
+ @include experimental(transition-timing-function, $full,
90
+ -moz, -webkit, -o, -ms, not -khtml, official);
103
91
  }
104
-
@@ -13,3 +13,40 @@
13
13
  @if $khtml { -khtml-#{$property} : $value; }
14
14
  @if $official { #{$property} : $value; }
15
15
  }
16
+
17
+ @mixin mwo-experimental($property, $value) {
18
+ @include experimental($property, $value,
19
+ -moz, -webkit, -o, not -ms, not -khtml, official);
20
+ }
21
+
22
+ @mixin m-experimental($property, $value) {
23
+ @include experimental($property, $value,
24
+ -moz, not -webkit, not -o, not -ms, not -khtml, official);
25
+ }
26
+
27
+ @mixin o-experimental($property, $value) {
28
+ @include experimental($property, $value,
29
+ not -moz, not -webkit, -o, not -ms, not -khtml, official);
30
+ }
31
+
32
+ @mixin w-experimental($property, $value) {
33
+ @include experimental($property, $value,
34
+ not -moz, -webkit, not -o, not -ms, not -khtml, official);
35
+ }
36
+
37
+ @mixin mw-experimental($property, $value) {
38
+ @include experimental($property, $value,
39
+ -moz, -webkit, not -o, not -ms, not -khtml, official);
40
+ }
41
+
42
+ @mixin mo-experimental($property, $value) {
43
+ @include experimental($property, $value,
44
+ -moz, not -webkit, -o, not -ms, not -khtml, official);
45
+ }
46
+
47
+ @mixin wo-experimental($property, $value) {
48
+ @include experimental($property, $value,
49
+ not -moz, -webkit, -o, not -ms, not -khtml, official);
50
+ }
51
+ // @include experimental(property, value)
52
+ // @include experimental(property, value, -moz, -webkit, not -o, not-ks, not -khtml, official)
@@ -1,3 +1,3 @@
1
1
  module Wiskey
2
- VERSION = "0.0.3"
2
+ VERSION = "0.0.4"
3
3
  end
data/test/test_helper.rb CHANGED
@@ -4,9 +4,9 @@ ENV["RAILS_ENV"] = "test"
4
4
  require File.expand_path("../dummy/config/environment.rb", __FILE__)
5
5
  require "rails/test_help"
6
6
 
7
- ActionMailer::Base.delivery_method = :test
8
- ActionMailer::Base.perform_deliveries = true
9
- ActionMailer::Base.default_url_options[:host] = "test.com"
7
+ # ActionMailer::Base.delivery_method = :test
8
+ # ActionMailer::Base.perform_deliveries = true
9
+ # ActionMailer::Base.default_url_options[:host] = "test.com"
10
10
 
11
11
  Rails.backtrace_cleaner.remove_silencers!
12
12
 
@@ -16,7 +16,7 @@ Capybara.default_driver = :rack_test
16
16
  Capybara.default_selector = :css
17
17
 
18
18
  # Run any available migration
19
- ActiveRecord::Migrator.migrate File.expand_path("../dummy/db/migrate/", __FILE__)
19
+ # ActiveRecord::Migrator.migrate File.expand_path("../dummy/db/migrate/", __FILE__)
20
20
 
21
21
  # Load support files
22
- Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
22
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
data/wiskey.gemspec CHANGED
@@ -9,7 +9,7 @@ Gem::Specification.new do |s|
9
9
  s.homepage = "http://aratak.github.com/wiskey/"
10
10
  s.description = "The rails 3 gem, which include SCSS mixins and default rails templates for true-cutupping."
11
11
  s.files = `git ls-files`.split("\n")
12
- s.version = "0.0.3"
12
+ s.version = "0.0.4"
13
13
 
14
14
  s.add_dependency "rails" , "~> 3.1.0"
15
15
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wiskey
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
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-11-09 00:00:00.000000000Z
12
+ date: 2011-12-18 00:00:00.000000000Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
16
- requirement: &70358842840620 !ruby/object:Gem::Requirement
16
+ requirement: &70259248591540 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ~>
@@ -21,7 +21,7 @@ dependencies:
21
21
  version: 3.1.0
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *70358842840620
24
+ version_requirements: *70259248591540
25
25
  description: The rails 3 gem, which include SCSS mixins and default rails templates
26
26
  for true-cutupping.
27
27
  email:
@@ -43,6 +43,7 @@ files:
43
43
  - app/assets/stylesheets/css3/_border-radius.scss
44
44
  - app/assets/stylesheets/css3/_box-shadow.scss
45
45
  - app/assets/stylesheets/css3/_box-sizing.scss
46
+ - app/assets/stylesheets/css3/_column-count.scss
46
47
  - app/assets/stylesheets/css3/_flex-box.scss
47
48
  - app/assets/stylesheets/css3/_inline-block.scss
48
49
  - app/assets/stylesheets/css3/_linear-gradient.scss
@@ -53,7 +54,6 @@ files:
53
54
  - app/assets/stylesheets/css3/_transform.scss
54
55
  - app/assets/stylesheets/css3/_transition.scss
55
56
  - app/assets/stylesheets/functions/_experimental.scss
56
- - app/assets/stylesheets/functions/_linear-gradient.scss
57
57
  - lib/tasks/install.rake
58
58
  - lib/wiskey.rb
59
59
  - lib/wiskey/engine.rb
@@ -69,7 +69,6 @@ files:
69
69
  - test/dummy/config/boot.rb
70
70
  - test/dummy/config/environment.rb
71
71
  - test/dummy/config/environments/development.rb
72
- - test/dummy/config/environments/production.rb
73
72
  - test/dummy/config/environments/test.rb
74
73
  - test/dummy/config/initializers/backtrace_silencers.rb
75
74
  - test/dummy/config/initializers/inflections.rb
@@ -108,7 +107,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
108
107
  version: '0'
109
108
  requirements: []
110
109
  rubyforge_project:
111
- rubygems_version: 1.8.11
110
+ rubygems_version: 1.8.10
112
111
  signing_key:
113
112
  specification_version: 3
114
113
  summary: The solutoiuns for the rails cutupping.
@@ -1,21 +0,0 @@
1
- @function linear-gradient($pos: top, $G1: false, $G2: false,
2
- $G3: false, $G4: false,
3
- $G5: false, $G6: false,
4
- $G7: false, $G8: false,
5
- $G9: false, $G10: false) {
6
-
7
- // Detect what type of value exists in $pos
8
- $pos-type: type-of(nth($pos, 1));
9
-
10
- // If $pos is missing from mixin, reassign vars and add default position
11
- @if ($pos-type == color) or (nth($pos, 1) == "transparent") {
12
- $G10: $G9; $G9: $G8; $G8: $G7; $G7: $G6; $G6: $G5;
13
- $G5: $G4; $G4: $G3; $G3: $G2; $G2: $G1; $G1: $pos;
14
- $pos: top; // Default position
15
- }
16
-
17
- $full: compact($G1, $G2, $G3, $G4, $G5, $G6, $G7, $G8, $G9, $G10);
18
-
19
- @return join($pos, $full, comma);
20
-
21
- }
@@ -1,49 +0,0 @@
1
- Dummy::Application.configure do
2
- # Settings specified here will take precedence over those in config/application.rb
3
-
4
- # Code is not reloaded between requests
5
- config.cache_classes = true
6
-
7
- # Full error reports are disabled and caching is turned on
8
- config.consider_all_requests_local = false
9
- config.action_controller.perform_caching = true
10
-
11
- # Disable Rails's static asset server (Apache or nginx will already do this)
12
- config.serve_static_assets = false
13
-
14
- # Compress both stylesheets and JavaScripts
15
- config.assets.js_compressor = :uglifier
16
- config.assets.css_compressor = :scss
17
-
18
- # Specifies the header that your server uses for sending files
19
- # (comment out if your front-end server doesn't support this)
20
- config.action_dispatch.x_sendfile_header = "X-Sendfile" # Use 'X-Accel-Redirect' for nginx
21
-
22
- # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
23
- # config.force_ssl = true
24
-
25
- # See everything in the log (default is :info)
26
- # config.log_level = :debug
27
-
28
- # Use a different logger for distributed setups
29
- # config.logger = SyslogLogger.new
30
-
31
- # Use a different cache store in production
32
- # config.cache_store = :mem_cache_store
33
-
34
- # Enable serving of images, stylesheets, and JavaScripts from an asset server
35
- # config.action_controller.asset_host = "http://assets.example.com"
36
-
37
- # Precompile additional assets (application.js, application.css, and all non-JS/CSS are already added)
38
- # config.assets.precompile += %w( search.js )
39
-
40
- # Enable threaded mode
41
- # config.threadsafe!
42
-
43
- # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
44
- # the I18n.default_locale when a translation can not be found)
45
- config.i18n.fallbacks = true
46
-
47
- # Send deprecation notices to registered listeners
48
- config.active_support.deprecation = :notify
49
- end