myg 2.0.1 → 2.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '09f5697e480e1443cdb068feb7fdf544e7fae3213c6144bd782586211ee88703'
4
- data.tar.gz: 49f0bab3162a78ae135982c443ba7d2c528bde0c0e553b288518f7d8037c1025
3
+ metadata.gz: c2ec96872a4f28b12144efddf43507736ac84ccafedd4447119a237ea0cd1822
4
+ data.tar.gz: 223af43b3039fb7dfb7b63ae258b30f7b769ed8398bd1b39240ad262e3a9bdaf
5
5
  SHA512:
6
- metadata.gz: 299a38aa4839637e93d0e33d0eb940ce3f86cf6308d3b28833a1864782c8fbdaf1a7240b7c6717db76f8f43007b625c2ab753fff670f5f33f21139859205f2b4
7
- data.tar.gz: 41b41f87c32f035e52acdd44d2a9b61cc2c887c7816ad1a335eb8b9d1f260949ebe049dd1170e945b32fbdae8c3a667e001dbca5ebf984e468abdec125db331b
6
+ metadata.gz: 152dae267e0c7d2bac752e54ee613faaac2fbfe0050023074c3451750fa16174670f2c3298bf5e37571871212bb3f3ce9f0baf1892792234ab93625eeef2c714
7
+ data.tar.gz: ab3ec9c583ff8a96718588493a5425a24053a919b65fb1fa3687abab88289dd4c8354503214577dc1d4caaed79f9e394143991cff29777cd7246ddf8cb4679ee
@@ -4,6 +4,11 @@
4
4
 
5
5
  * nothing yet
6
6
 
7
+ ### 2.0.2 - 2018/02/17
8
+
9
+ * bugfixes
10
+ * fixed `theme` generator
11
+
7
12
  ### 2.0.1 - 2018/02/16
8
13
 
9
14
  * bugfixes
@@ -11,7 +11,7 @@ class Myg::ThemeGenerator < Rails::Generators::Base
11
11
  class_option :name, desc: 'Theme name', type: :string, aliases: '-n'
12
12
 
13
13
  def create_assets
14
- template '_theme.scss.erb', "#{Myg.configuration.assets_dir}/theme/_#{options[:name]}.scss"
14
+ template 'stylesheets/_theme.scss.erb', "#{Myg.configuration.stylesheets_dir}/theme/_#{options[:name]}.scss"
15
15
  end
16
16
 
17
17
  end
@@ -1 +1,61 @@
1
1
  @import "myg/src/myg"
2
+
3
+
4
+ // @import "myg-base/base"
5
+ //
6
+ // @import "myg-theme/theme"
7
+ // @import "myg-font/font"
8
+ //
9
+ // @import "myg-action-button/action-button"
10
+ // @import "myg-animate/animate"
11
+ // @import "myg-button/button"
12
+ // @import "myg-card/card"
13
+ // @import "myg-checkbox/checkbox"
14
+ // @import "myg-dialog/dialog"
15
+ // @import "myg-drawer/drawer"
16
+ // @import "myg-dropdown/dropdown"
17
+ // @import "myg-elevation/elevation"
18
+ // @import "myg-footer/footer"
19
+ // @import "myg-form-field/form-field"
20
+ // @import "myg-grid/grid"
21
+ // @import "myg-icon/icon"
22
+ // @import "myg-input/input"
23
+ // @import "myg-label/label"
24
+ // @import "myg-layout/layout"
25
+ // @import "myg-list/list"
26
+ // @import "myg-menu/menu"
27
+ // @import "myg-modal/modal"
28
+ // @import "myg-progress/progress"
29
+ // @import "myg-radio/radio"
30
+ // @import "myg-select/select"
31
+ // @import "myg-sidebar/sidebar"
32
+ // @import "myg-slide/slide"
33
+ // @import "myg-slider/slider"
34
+ // @import "myg-spacing/spacing"
35
+ // @import "myg-switch/switch"
36
+ // @import "myg-tabs/tabs"
37
+ // @import "myg-text/text"
38
+ // @import "myg-titlebar/titlebar"
39
+ // @import "myg-toast/toast"
40
+ // @import "myg-toolbar/toolbar"
41
+ // @import "myg-tooltip/tooltip"
42
+ //
43
+ // +myg-animate--classes
44
+ // +myg-base--classes
45
+ // +myg-button--classes
46
+ // +myg-card--classes
47
+ // +myg-checkbox--classes
48
+ // +myg-drawer--classes
49
+ // +myg-elevation--classes
50
+ // +myg-font--classes
51
+ // +myg-footer--classes
52
+ // +myg-grid--classes
53
+ // +myg-input--classes
54
+ // +myg-label--classes
55
+ // +myg-layout--classes
56
+ // +myg-radio--classes
57
+ // +myg-tabs--classes
58
+ // +myg-text--classes
59
+ // +myg-theme--classes
60
+ // +myg-toast--classes
61
+ // +myg-toolbar--classes
@@ -1,5 +1,5 @@
1
1
  module Myg
2
2
 
3
- VERSION = '2.0.1'
3
+ VERSION = '2.0.2'
4
4
 
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: myg
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.1
4
+ version: 2.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonas Hübotter
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-02-16 00:00:00.000000000 Z
11
+ date: 2018-02-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties
@@ -169,7 +169,7 @@ files:
169
169
  - lib/generators/templates/install/stylesheets/variables/_spacing.scss
170
170
  - lib/generators/templates/install/stylesheets/variables/_text.scss
171
171
  - lib/generators/templates/install/stylesheets/variables/_theme.scss
172
- - lib/generators/templates/theme/_theme.scss.erb
172
+ - lib/generators/templates/theme/stylesheets/_theme.scss.erb
173
173
  - lib/myg.rb
174
174
  - lib/myg/configuration.rb
175
175
  - lib/myg/engine.rb