sassy-maps 0.1.1

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: e2fc7c65541ec4bacd403d5aab6edf043b4fce7d
4
+ data.tar.gz: 0b1363002e269b6f9fd20d67d29d52fbc9df7c53
5
+ SHA512:
6
+ metadata.gz: dd5a0e3272e574cea26dc7d6197cf224b2de9577caae6c2388e68dc698a6c9b9bdcdae3028a0e9142e105188b582459461bfc1bce87d6c2051d72821d9b90f26
7
+ data.tar.gz: 785c2f4ef1c53fc7f3331845f66bbd86316f274c79c84eeec8374dba84ddc6ea521bf01564c6f8d4ef9454a058f010cceb414c5dbfe22589c66f46c1f0904eae
data/lib/sassy-maps.rb ADDED
@@ -0,0 +1,33 @@
1
+ # All gems that are required for this extension to work should go here.
2
+ # These are the requires you would normally put in your config.rb file
3
+ # By default, you should always included Compass. Do not include your
4
+ # extension.
5
+ require 'sass'
6
+ require 'compass'
7
+
8
+ # This tells Compass what your Compass extension is called, and where to find
9
+ # its files
10
+ # Replace 'styleguide' with the name of your style guide. Spaces allowed.
11
+ base_directory = File.join(File.dirname(__FILE__), '..')
12
+ stylesheets_dir = File.join(base_directory, 'stylesheets')
13
+ templates_dir = File.join(base_directory, 'templates')
14
+ Compass::Frameworks.register('sassy-maps', :stylesheets_directory => stylesheets_dir, :templates_directory => templates_dir)
15
+
16
+ # Version and date of version for your Compass extension.
17
+ # Replace Extemsopm with the name of your style guide
18
+ # Letters, numbers, and underscores only
19
+ # Version is a number. If a version contains alphas, it will be created as
20
+ # a prerelease version
21
+ # Date is in the form of YYYY-MM-DD
22
+ module SassyMaps
23
+ VERSION = "0.1.1"
24
+ DATE = "2013-10-25"
25
+ end
26
+
27
+ # This is where any custom SassScript should be placed. The functions will be
28
+ # available on require of your extension without the need for users to import
29
+ # any partials. Uncomment below.
30
+
31
+ # module Sass::Script::Functions
32
+ #
33
+ # end
@@ -0,0 +1,9 @@
1
+ //////////////////////////////
2
+ // Getting Helpers
3
+ //////////////////////////////
4
+ @import "sassy-maps/map-get";
5
+
6
+ //////////////////////////////
7
+ // Setting Helpers
8
+ //////////////////////////////
9
+ @import "sassy-maps/map-set";
File without changes
@@ -0,0 +1,3 @@
1
+ @function map-set($map, $key, $value) {
2
+ @return map-merge($map, ($key: $value));
3
+ }
@@ -0,0 +1,6 @@
1
+ # Pull gems from RubyGems
2
+ source 'https://rubygems.org'
3
+ gem 'sass', '3.3.0.rc.1'
4
+ gem 'compass', '0.13.alpha.10'
5
+
6
+ gem 'Sassy Maps', '~>0.1.1'
@@ -0,0 +1,30 @@
1
+ description "Sassy Maps"
2
+
3
+ skip_compilation!
4
+
5
+ discover :javascripts
6
+ discover :images
7
+ discover :fonts
8
+
9
+ # file 'Gemfile.txt', :to => 'Gemfile'
10
+ file 'editorconfig.txt', :to => '.editorconfig'
11
+ file 'jshintrc.txt', :to => '.jshintrc'
12
+ file 'csslintrc.txt', :to => '.csslintrc'
13
+
14
+ help %Q{
15
+ Please contact Sam Richard with questions:
16
+
17
+ sam@snug.ug
18
+ }
19
+
20
+ welcome_message %Q{
21
+
22
+ Sassy Maps
23
+
24
+ The awesome template for Sassy Maps.
25
+
26
+ To use the Sassy Maps, include the following at the top of your Sass file:
27
+
28
+ @import "sassy-maps";
29
+
30
+ }
metadata ADDED
@@ -0,0 +1,78 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: sassy-maps
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.1
5
+ platform: ruby
6
+ authors:
7
+ - Sam Richard
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-10-25 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: sass
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - '='
18
+ - !ruby/object:Gem::Version
19
+ version: 3.3.0.rc.1
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - '='
25
+ - !ruby/object:Gem::Version
26
+ version: 3.3.0.rc.1
27
+ - !ruby/object:Gem::Dependency
28
+ name: compass
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '='
32
+ - !ruby/object:Gem::Version
33
+ version: 0.13.alpha.10
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '='
39
+ - !ruby/object:Gem::Version
40
+ version: 0.13.alpha.10
41
+ description: A long description of this awesome compass extension
42
+ email:
43
+ - sam@snug.ug
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - lib/sassy-maps.rb
49
+ - stylesheets/_sassy-maps.scss
50
+ - stylesheets/sassy-maps/_map-get.scss
51
+ - stylesheets/sassy-maps/_map-set.scss
52
+ - templates/project/Gemfile.txt
53
+ - templates/project/manifest.rb
54
+ homepage: https://github.com/Snugug/Sassy-Maps
55
+ licenses:
56
+ - MIT
57
+ metadata: {}
58
+ post_install_message:
59
+ rdoc_options: []
60
+ require_paths:
61
+ - lib
62
+ required_ruby_version: !ruby/object:Gem::Requirement
63
+ requirements:
64
+ - - '>='
65
+ - !ruby/object:Gem::Version
66
+ version: '0'
67
+ required_rubygems_version: !ruby/object:Gem::Requirement
68
+ requirements:
69
+ - - '>='
70
+ - !ruby/object:Gem::Version
71
+ version: 1.3.6
72
+ requirements: []
73
+ rubyforge_project: sassy-maps
74
+ rubygems_version: 2.0.3
75
+ signing_key:
76
+ specification_version: 4
77
+ summary: A short summary of this awesome compass extension
78
+ test_files: []