flexbox-rails 1.0.1 → 1.0.2

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1b516bd9df42e93e1501e38cfb9b225227b21827
4
- data.tar.gz: a05bc82a8daecc748770ba00b1886c7373878485
3
+ metadata.gz: cc021d1147307098e4add3dee40d6bd7794479ac
4
+ data.tar.gz: 18aa4c04fd2ab3b8c1512efcad41b34a92fdc23b
5
5
  SHA512:
6
- metadata.gz: 04c15a6e2503e29d89c7be12af86808d2b0e487068475f561da5a2350b10f76bf2264b1d8ed0256d93000900261e0e6995531ddd9ddc3155f1236d7f08f90ce5
7
- data.tar.gz: 35521100a2e0a2cb3cf4a46d1be02f9d6b8e5705fa063faeb57bc27708464ea7a021dfce75f5e64352893b447a78fa9dd2a3c869c49e9f09b2a9d942c40b88f2
6
+ metadata.gz: cc4a92b030b4fce79103a56bb7d658365cd6546509648ba3e123c206df5bff1022cfddcea6360ecbe5058181f90f26e212cb3b2971512b22dd7f244f244b03cf
7
+ data.tar.gz: 23acd4de3752f255c0a6d92ddfe9a694e45148498e7280c44cb762f8aad55a228a41eeaa720daf00c07b6ade38d54dc02e1b4396f6ea1d85d8aae73c8a846c80
@@ -0,0 +1,4 @@
1
+ require "flexbox-rails/version"
2
+
3
+ module Flexbox
4
+ end
@@ -0,0 +1,4 @@
1
+ module Flexbox
2
+ class Engine < ::Rails::Engine
3
+ end
4
+ end
@@ -0,0 +1,3 @@
1
+ module Flexbox
2
+ VERSION = "1.0.2"
3
+ end
@@ -3014,61 +3014,60 @@
3014
3014
  align-content: stretch;
3015
3015
  }
3016
3016
 
3017
+ /* O H T E R F O R F L E X */
3018
+ .f10a {
3019
+ -webkit-flex: 1 0 auto;
3020
+ flex: 1 0 auto;
3021
+ }
3022
+ .f10100 {
3023
+ -webkit-flex: 1 0 100%;
3024
+ flex: 1 0 100%;
3025
+ }
3026
+ .f00a {
3027
+ -webkit-flex: 0 0 auto;
3028
+ flex: 0 0 auto;
3029
+ }
3017
3030
  /* E N D F L E X */
3018
3031
 
3019
- .w100
3020
- {
3032
+ .w100 {
3021
3033
  width: 100%;
3022
3034
  }
3023
- .h100
3024
- {
3035
+ .h100 {
3025
3036
  height: 100%;
3026
3037
  }
3027
- .ha
3028
- {
3038
+ .ha {
3029
3039
  height: auto;
3030
3040
  }
3031
- .h100vh
3032
- {
3041
+ .h100vh {
3033
3042
  height: 100vh;
3034
3043
  }
3035
- .h100vw
3036
- {
3044
+ .h100vw {
3037
3045
  height: 100vw;
3038
3046
  }
3039
- .w100vw
3040
- {
3047
+ .w100vw {
3041
3048
  width: 100vw;
3042
3049
  }
3043
- .w100vh
3044
- {
3050
+ .w100vh {
3045
3051
  width: 100vh;
3046
3052
  }
3047
- .w100vmin
3048
- {
3053
+ .w100vmin {
3049
3054
  width: 100vmin;
3050
3055
  }
3051
- .w100vmax
3052
- {
3056
+ .w100vmax {
3053
3057
  width: 100vmax;
3054
3058
  }
3055
- .h100vmax
3056
- {
3059
+ .h100vmax {
3057
3060
  height: 100vmax;
3058
3061
  }
3059
- .h100vmin
3060
- {
3062
+ .h100vmin {
3061
3063
  height: 100vmin;
3062
3064
  }
3063
- .prel
3064
- {
3065
+ .prel {
3065
3066
  position: relative;
3066
3067
  }
3067
- .pabs
3068
- {
3068
+ .pabs {
3069
3069
  position: absolute;
3070
3070
  }
3071
- .pfix
3072
- {
3071
+ .pfix {
3073
3072
  position: fixed;
3074
3073
  }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: flexbox-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - woodcrust
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-08-19 00:00:00.000000000 Z
11
+ date: 2017-08-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -74,8 +74,9 @@ executables: []
74
74
  extensions: []
75
75
  extra_rdoc_files: []
76
76
  files:
77
- - lib/flexbox/rails.rb
78
- - lib/flexbox/rails/version.rb
77
+ - lib/flexbox-rails.rb
78
+ - lib/flexbox-rails/engine.rb
79
+ - lib/flexbox-rails/version.rb
79
80
  - spec/flexbox/rails_spec.rb
80
81
  - spec/spec_helper.rb
81
82
  - vendor/assets/stylesheets/flexbox.css
@@ -99,7 +100,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
99
100
  version: '0'
100
101
  requirements: []
101
102
  rubyforge_project:
102
- rubygems_version: 2.5.1
103
+ rubygems_version: 2.6.12
103
104
  signing_key:
104
105
  specification_version: 4
105
106
  summary: This is flexbox assets
@@ -1,8 +0,0 @@
1
- require "flexbox/rails/version"
2
-
3
- module Flexbox
4
- module Rails
5
- class Engine < ::Rails::Engine
6
- end
7
- end
8
- end
@@ -1,5 +0,0 @@
1
- module Flexbox
2
- module Rails
3
- VERSION = "1.0.1"
4
- end
5
- end