si_styles 0.0.2 → 0.0.3

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: 236b1e02e3d6de04bc348880fe53f1b69b58c64b
4
- data.tar.gz: 353bc7daca5f167d31bb55238d82c33b6c1f337a
3
+ metadata.gz: 286a6917299728ae0540a575bf2b13dc647f4e41
4
+ data.tar.gz: 4ac7a9129a6b09266327f43e0714dd663beb804a
5
5
  SHA512:
6
- metadata.gz: f64aa79003aec2c34bfb746680f71446e224ce3a27bb5f381cd9adf6ecbab59497598052c9d8bb25ca089fbf8ed7b364abd1b35f5a51525a47093a9ca4db43b8
7
- data.tar.gz: a4cb221659ea0481a7de4943560f2b3db29159b0370edfef618168ac40d943a9875cb34ea12e2bbd62226b4d3d141c7fe15eb347fe5edb90804662cea21c9255
6
+ metadata.gz: d8f0dfd5b5f6281b7ea849e082a233310cab531bbfed6cc5c83954ccc5bb1e900a6ba5e341a494eee7def3e81389a9434bb268f3fddee1cb3d7df9ad74a5bde3
7
+ data.tar.gz: 666696c21539edb1ed405a646a0acb8ee85b628555eaa13264be1156fb30ae34733f1ed53daeaf6a3a7bb086b5e478cd36c06d3ea18074fac0ce0d777a5d9317
data/.DS_Store CHANGED
Binary file
@@ -0,0 +1,24 @@
1
+ // This is your framework's main stylesheet. Use it to import all default modules.
2
+
3
+ // Load Zen Grids
4
+ @import "zen";
5
+
6
+ // Import Variables
7
+ @import "si_styles/variables/normalize-vars";
8
+ @import "si_styles/variables/media-queries";
9
+ @import "si_styles/variables/colors";
10
+ @import "si_styles/variables/display-variables";
11
+
12
+ // Normalize
13
+ @import "si_styles/modules/normalize";
14
+
15
+ // Custom Functions and Mixins
16
+ @import "si_styles/modules/functions";
17
+ @import "si_styles/modules/mixins";
18
+
19
+ // Typography
20
+ @import "si_styles/partials/typography";
21
+
22
+ // Elements
23
+ @import "si_styles/partials/forms";
24
+ @import "si_styles/partials/accessories";
@@ -1,9 +1,11 @@
1
1
  require 'si_styles/version'
2
2
 
3
3
  require 'compass'
4
- extension_path = File.expand_path(File.join(File.dirname(__FILE__), ".."))
5
- Compass::Frameworks.register('si_styles', :path => extension_path)
4
+ project_path = File.join(File.dirname(__FILE__), '..')
5
+ stylesheets_path = File.join(project_path)
6
6
 
7
- module SiStyles
8
- # Your code goes here...
9
- end
7
+ Compass::Frameworks.register(
8
+ 'si_styles',
9
+ :path => project_path,
10
+ :stylesheets_directory => stylesheets_path,
11
+ )
@@ -1,3 +1,3 @@
1
1
  module SiStyles
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: si_styles
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Paul Northup
@@ -51,7 +51,7 @@ files:
51
51
  - LICENSE.txt
52
52
  - README.md
53
53
  - Rakefile
54
- - _si_styles.sass
54
+ - _si_styles.scss
55
55
  - lib/si_styles.rb
56
56
  - lib/si_styles/version.rb
57
57
  - si_styles.gemspec
@@ -66,8 +66,6 @@ files:
66
66
  - si_styles/variables/_display-variables.scss
67
67
  - si_styles/variables/_media-queries.scss
68
68
  - si_styles/variables/_normalize-vars.scss
69
- - templates/project/manifest.rb
70
- - templates/project/screen.sass
71
69
  homepage: ''
72
70
  licenses:
73
71
  - MIT
@@ -1,24 +0,0 @@
1
- // This is your framework's main stylesheet. Use it to import all default modules.
2
-
3
- // Load Zen Grids
4
- @import "zen";
5
-
6
- // Import Variables
7
- @import "variables/normalize-vars";
8
- @import "variables/media-queries";
9
- @import "variables/colors";
10
- @import "variables/display-variables";
11
-
12
- // Normalize
13
- @import "modules/normalize";
14
-
15
- // Custom Functions and Mixins
16
- @import "modules/functions";
17
- @import "modules/mixins";
18
-
19
- // Typography
20
- @import "partials/typography";
21
-
22
- // Elements
23
- @import "partials/forms";
24
- @import "partials/accessories";
@@ -1,2 +0,0 @@
1
- # Make sure you list all the project template files here in the manifest.
2
- stylesheet 'screen.sass', :media => 'screen, projection'
@@ -1,2 +0,0 @@
1
- // This is where you put the contents of the main stylesheet for the user's project.
2
- // It should import your sass stylesheets and demonstrate how to use them.