euphoria 0.1.3.3 → 0.1.3.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.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f9e93684ee7b39ec50ec42e32bd04b003066d0e3
|
|
4
|
+
data.tar.gz: a27cbd34ff1a561a5d69aaa82183b17e458c67cd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f2bb76fe26debf8e5d32353ce123748ae1cfb0888a38de8fd5075ce5e65e32a04f1bcc749090062a10bcfb17953e1b824fc57c2bd07d2af21b88e9187a5787e3
|
|
7
|
+
data.tar.gz: 368082f72dbd9b28a529493e3c3f57521b7ed0f6e856a76b5a4c9da01ac43a4650dab1b75fb89c11bd561c3316545cbe184ecbf8e38595aca96aeed2ebfa49ec
|
data/README.md
CHANGED
|
@@ -6,15 +6,16 @@ A lightweight css flex-grid framework to ease workflow. We hate IE
|
|
|
6
6
|
|
|
7
7
|
Add this line to your application's Gemfile:
|
|
8
8
|
|
|
9
|
-
```ruby
|
|
9
|
+
```ruby
|
|
10
10
|
gem 'euphoria'
|
|
11
|
+
|
|
11
12
|
```
|
|
12
13
|
|
|
13
14
|
And then execute:
|
|
14
15
|
|
|
15
16
|
$ bundle
|
|
16
17
|
|
|
17
|
-
Or install it yourself
|
|
18
|
+
Or install it yourself by running:
|
|
18
19
|
|
|
19
20
|
$ gem install euphoria
|
|
20
21
|
|
|
@@ -22,8 +23,17 @@ Or install it yourself as:
|
|
|
22
23
|
|
|
23
24
|
TODO:
|
|
24
25
|
|
|
25
|
-
In the application.js
|
|
26
|
-
|
|
26
|
+
## In the application.js
|
|
27
|
+
|
|
28
|
+
add //= require UI_Modules
|
|
29
|
+
|
|
30
|
+
## In the application.css
|
|
31
|
+
|
|
32
|
+
add *= require load
|
|
33
|
+
|
|
34
|
+
## How to use ?
|
|
35
|
+
|
|
36
|
+
Hang tight coming soon
|
|
27
37
|
|
|
28
38
|
## Development
|
|
29
39
|
|
|
File without changes
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
@import "euphoria/helpers/reset.sass"
|
|
2
|
+
@import "euphoria/helpers/mixins.sass"
|
|
3
|
+
|
|
4
|
+
@import "euphoria/core/responsive.sass"
|
|
5
|
+
@import "euphoria/core/containers.sass"
|
|
6
|
+
@import "euphoria/core/grids.sass"
|
|
7
|
+
@import "euphoria/core/type.sass"
|
|
8
|
+
|
|
9
|
+
@import "euphoria/components/buttons.sass"
|
|
10
|
+
@import "euphoria/components/forms.sass"
|
|
11
|
+
@import "euphoria/components/menus.sass"
|
|
12
|
+
@import "euphoria/components/tables.sass"
|
|
13
|
+
|
|
14
|
+
@import "euphoria/interface/parallax.sass"
|
data/lib/euphoria/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: euphoria
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.3.
|
|
4
|
+
version: 0.1.3.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- paul brunache
|
|
@@ -94,7 +94,7 @@ files:
|
|
|
94
94
|
- LICENSE.txt
|
|
95
95
|
- README.md
|
|
96
96
|
- Rakefile
|
|
97
|
-
- app/assets/javascripts/
|
|
97
|
+
- app/assets/javascripts/UI_Modules.coffee
|
|
98
98
|
- app/assets/stylesheets/euphoria/components/_buttons.sass
|
|
99
99
|
- app/assets/stylesheets/euphoria/components/_forms.sass
|
|
100
100
|
- app/assets/stylesheets/euphoria/components/_menus.sass
|
|
@@ -106,7 +106,7 @@ files:
|
|
|
106
106
|
- app/assets/stylesheets/euphoria/helpers/_mixins.sass
|
|
107
107
|
- app/assets/stylesheets/euphoria/helpers/_reset.sass
|
|
108
108
|
- app/assets/stylesheets/euphoria/interface/parallax.sass
|
|
109
|
-
- app/assets/stylesheets/
|
|
109
|
+
- app/assets/stylesheets/load.sass
|
|
110
110
|
- bin/console
|
|
111
111
|
- bin/setup
|
|
112
112
|
- euphoria.gemspec
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
@import "helpers/reset.sass"
|
|
2
|
-
@import "helpers/mixins.sass"
|
|
3
|
-
|
|
4
|
-
@import "core/responsive.sass"
|
|
5
|
-
@import "core/containers.sass"
|
|
6
|
-
@import "core/grids.sass"
|
|
7
|
-
@import "core/type.sass"
|
|
8
|
-
|
|
9
|
-
@import "components/buttons.sass"
|
|
10
|
-
@import "components/forms.sass"
|
|
11
|
-
@import "components/menus.sass"
|
|
12
|
-
@import "components/tables.sass"
|
|
13
|
-
|
|
14
|
-
@import "interface/parallax.sass"
|