inuit-rails 6.0.0.beta.4 → 6.0.0.beta.5

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
  SHA1:
3
- metadata.gz: 4c86eb71182660e982274c7a42709605e8d0bbff
4
- data.tar.gz: 35f1273e0c43c19e54e34098c657fa37682c80a5
3
+ metadata.gz: 17041ebe47395267b35b08595b39973f40361c95
4
+ data.tar.gz: 786f2e0bb259d2c0100f88360e77db698a691e1d
5
5
  SHA512:
6
- metadata.gz: bf1b8490579815e34111179152cae1f2bd9b8bcb16d681054b20a160469e3fad40090660ee333e7463ed19b234eb12e93c659d8fa021b936e1de4e2ba447e521
7
- data.tar.gz: ef95adbc197b8e0bbcb21534308b56d60b44f30afae62932c9f39675fff65ab541de1cd50a14634fd2372283db8938f4c15a69bd6a72887e84db793461d4a68e
6
+ metadata.gz: 14a0ae96ce1d7312a6f0de83330c5d5d76f6f4b2c1809060099610817f64f63b60409a806d93d56dbd43d79a0ba2cca1168d5750035177f0fc2df827d0c66861
7
+ data.tar.gz: d8374c3ca955ae83a53fac10cde37fe66cf5416b3cf705e77aaa7b706b2b07bf9216d43709b287617dbde2c1b9eb589a6369725202a4740941cc5e831fcd526e
data/.gitignore CHANGED
@@ -26,9 +26,9 @@ pkg
26
26
  #
27
27
  # Not sure what to needs to be ignored for particular editors/OSes? Here's some ideas to get you started. (Remember, remove the leading # of the line)
28
28
  #
29
+
29
30
  # For MacOS:
30
- #
31
- #.DS_Store
31
+ .DS_Store
32
32
 
33
33
  # For TextMate
34
34
  #*.tmproj
@@ -40,7 +40,8 @@ pkg
40
40
  #.\#*
41
41
 
42
42
  # For vim:
43
- #*.swp
43
+ *.swp
44
+ *.swo
44
45
 
45
46
  # For redcar:
46
47
  #.redcar
@@ -53,3 +54,6 @@ vendor/assets/stylesheets/**/*.gitignore
53
54
  vendor/assets/stylesheets/**/*.bower.json
54
55
 
55
56
  Gemfile.lock
57
+
58
+ # For ctags
59
+ tags
data/README.md CHANGED
@@ -22,6 +22,10 @@ Or install it yourself as:
22
22
 
23
23
  ## Usage
24
24
 
25
+ Generate the style guide using the following command:
26
+
27
+ $ rails g inuit_rails:install
28
+
25
29
  TODO: Write usage instructions here
26
30
 
27
31
  ## Development
data/inuit-rails.gemspec CHANGED
@@ -6,8 +6,8 @@ require 'inuit-rails/rails/version'
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = "inuit-rails"
8
8
  spec.version = Inuit::Rails::VERSION
9
- spec.authors = ["Dan Garland"]
10
- spec.email = ["dan@dangarland.co.uk"]
9
+ spec.authors = ["Dan Garland", "Finn Francis"]
10
+ spec.email = ["dan@dangarland.co.uk", "finn_francis@yahoo.com"]
11
11
 
12
12
  spec.summary = %q{A Rails engine that permits the use of the inuit css framework within a Rails application.}
13
13
  spec.homepage = "https://github.com/dmgarland/inuit-rails"
@@ -0,0 +1,11 @@
1
+ module InuitRails
2
+ class InstallGenerator < Rails::Generators::Base
3
+ source_root File.expand_path("../../templates", __FILE__)
4
+
5
+ desc "Generate a scss file to import the inuit styles"
6
+
7
+ def copy_install_file
8
+ copy_file('example.main.scss', "app/assets/stylesheets/inuit_styles.scss")
9
+ end
10
+ end
11
+ end
@@ -75,40 +75,40 @@
75
75
  */
76
76
 
77
77
  // SETTINGS
78
- @import "settings/example.settings.config";
79
- @import "settings/settings.core";
80
- @import "settings/example.settings.global";
78
+ @import "inuitcss/settings/example.settings.config";
79
+ @import "inuitcss/settings/settings.core";
80
+ @import "inuitcss/settings/example.settings.global";
81
81
 
82
82
 
83
83
 
84
84
 
85
85
 
86
86
  // TOOLS
87
- @import "tools/tools.rem";
88
- @import "tools/tools.font-size";
89
- @import "tools/tools.clearfix";
90
- @import "tools/tools.hidden";
91
- @import "node_modules/sass-mq/mq";
87
+ @import "inuitcss/tools/tools.rem";
88
+ @import "inuitcss/tools/tools.font-size";
89
+ @import "inuitcss/tools/tools.clearfix";
90
+ @import "inuitcss/tools/tools.hidden";
91
+ // @import "inuitcss/node_modules/sass-mq/mq";
92
92
 
93
93
 
94
94
 
95
95
 
96
96
 
97
97
  // GENERIC
98
- @import "generic/generic.box-sizing";
99
- @import "generic/generic.normalize";
100
- @import "generic/generic.reset";
101
- @import "generic/generic.shared";
98
+ @import "inuitcss/generic/generic.box-sizing";
99
+ @import "inuitcss/generic/generic.normalize";
100
+ @import "inuitcss/generic/generic.reset";
101
+ @import "inuitcss/generic/generic.shared";
102
102
 
103
103
 
104
104
 
105
105
 
106
106
 
107
107
  // ELEMENTS
108
- @import "elements/elements.page";
109
- @import "elements/elements.headings";
110
- @import "elements/elements.images";
111
- @import "elements/elements.tables";
108
+ @import "inuitcss/elements/elements.page";
109
+ @import "inuitcss/elements/elements.headings";
110
+ @import "inuitcss/elements/elements.images";
111
+ @import "inuitcss/elements/elements.tables";
112
112
 
113
113
 
114
114
 
@@ -117,18 +117,18 @@
117
117
  // OBJECTS
118
118
  //
119
119
  // Uncomment and add to this section as necessary.
120
- @import "objects/objects.wrapper";
121
- @import "objects/objects.layout";
122
- @import "objects/objects.media";
123
- @import "objects/objects.flag";
124
- @import "objects/objects.list-bare";
125
- @import "objects/objects.list-inline";
126
- @import "objects/objects.box";
127
- @import "objects/objects.block";
128
- @import "objects/objects.ratio";
129
- @import "objects/objects.crop";
130
- @import "objects/objects.tables";
131
- @import "objects/objects.pack";
120
+ @import "inuitcss/objects/objects.wrapper";
121
+ @import "inuitcss/objects/objects.layout";
122
+ @import "inuitcss/objects/objects.media";
123
+ @import "inuitcss/objects/objects.flag";
124
+ @import "inuitcss/objects/objects.list-bare";
125
+ @import "inuitcss/objects/objects.list-inline";
126
+ @import "inuitcss/objects/objects.box";
127
+ @import "inuitcss/objects/objects.block";
128
+ @import "inuitcss/objects/objects.ratio";
129
+ @import "inuitcss/objects/objects.crop";
130
+ @import "inuitcss/objects/objects.tables";
131
+ @import "inuitcss/objects/objects.pack";
132
132
 
133
133
 
134
134
 
@@ -137,18 +137,18 @@
137
137
  // COMPONENTS
138
138
  //
139
139
  // Build and include your project’s UI Compoments here.
140
- @import "components/example.components.buttons";
140
+ @import "inuitcss/components/example.components.buttons";
141
141
 
142
142
 
143
143
 
144
144
 
145
145
 
146
146
  // UTILITIES
147
- @import "utilities/utilities.clearfix";
147
+ @import "inuitcss/utilities/utilities.clearfix";
148
148
 
149
149
  $inuit-offsets: true;
150
- @import "utilities/utilities.widths";
151
- @import "utilities/utilities.headings";
152
- @import "utilities/utilities.spacing";
153
- @import "utilities/utilities.print";
154
- @import "utilities/utilities.hide";
150
+ @import "inuitcss/utilities/utilities.widths";
151
+ @import "inuitcss/utilities/utilities.headings";
152
+ @import "inuitcss/utilities/utilities.spacing";
153
+ @import "inuitcss/utilities/utilities.print";
154
+ @import "inuitcss/utilities/utilities.hide";
@@ -1,5 +1,5 @@
1
1
  module Inuit
2
2
  module Rails
3
- VERSION = "6.0.0.beta.4"
3
+ VERSION = "6.0.0.beta.5"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: inuit-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.0.0.beta.4
4
+ version: 6.0.0.beta.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dan Garland
8
+ - Finn Francis
8
9
  autorequire:
9
10
  bindir: exe
10
11
  cert_chain: []
11
- date: 2016-11-30 00:00:00.000000000 Z
12
+ date: 2016-12-05 00:00:00.000000000 Z
12
13
  dependencies:
13
14
  - !ruby/object:Gem::Dependency
14
15
  name: bundler
@@ -55,6 +56,7 @@ dependencies:
55
56
  description:
56
57
  email:
57
58
  - dan@dangarland.co.uk
59
+ - finn_francis@yahoo.com
58
60
  executables: []
59
61
  extensions: []
60
62
  extra_rdoc_files: []
@@ -73,6 +75,8 @@ files:
73
75
  - bin/setup
74
76
  - bower.json
75
77
  - inuit-rails.gemspec
78
+ - lib/generators/inuit_rails/install_generator.rb
79
+ - lib/generators/templates/example.main.scss
76
80
  - lib/inuit-rails.rb
77
81
  - lib/inuit-rails/rails.rb
78
82
  - lib/inuit-rails/rails/engine.rb
@@ -84,7 +88,6 @@ files:
84
88
  - vendor/assets/stylesheets/inuitcss/elements/_elements.images.scss
85
89
  - vendor/assets/stylesheets/inuitcss/elements/_elements.page.scss
86
90
  - vendor/assets/stylesheets/inuitcss/elements/_elements.tables.scss
87
- - vendor/assets/stylesheets/inuitcss/example.main.scss
88
91
  - vendor/assets/stylesheets/inuitcss/generic/_generic.box-sizing.scss
89
92
  - vendor/assets/stylesheets/inuitcss/generic/_generic.normalize.scss
90
93
  - vendor/assets/stylesheets/inuitcss/generic/_generic.reset.scss