sassy_list 0.0.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.
@@ -0,0 +1,4 @@
1
+ *.gem
2
+ .bundle
3
+ Gemfile.lock
4
+ pkg/*
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source "http://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in sassy_list.gemspec
4
+ gemspec
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,10 @@
1
+ require "sassy_list/version"
2
+
3
+ require "compass"
4
+
5
+ base_directory = File.join(File.dirname(__FILE__))
6
+ Compass::Frameworks.register('sassy_list', :path => base_directory)
7
+
8
+ module SassyList
9
+ # Your code goes here...
10
+ end
@@ -0,0 +1,3 @@
1
+ module SassyList
2
+ VERSION = "0.0.1"
3
+ end
@@ -0,0 +1,15 @@
1
+ @mixin sassy-list($color)
2
+ {
3
+ list-style-type: none;
4
+ position: relative;
5
+ margin-left: 1em;
6
+ padding-left: 0;
7
+
8
+ li:before {
9
+ content: "\2022";
10
+ position: absolute;
11
+ left: -1em;
12
+ color: $color;
13
+ margin-right: 5px;
14
+ }
15
+ }
@@ -0,0 +1,22 @@
1
+ # -*- encoding: utf-8 -*-
2
+ $:.push File.expand_path("../lib", __FILE__)
3
+ require "sassy_list/version"
4
+
5
+ Gem::Specification.new do |s|
6
+ s.name = "sassy_list"
7
+ s.version = SassyList::VERSION
8
+ s.authors = ["Simon Davies"]
9
+ s.email = ["hello@simon-davies.name"]
10
+ s.homepage = "http://simon-davies.name"
11
+ s.summary = %q{A compass plugin to allow you to set differnt colours for bullets in ul lists}
12
+ s.description = %q{A compass plugin to allow you to set differnt colours for bullets in ul lists}
13
+
14
+ s.rubyforge_project = "sassy_list"
15
+
16
+ s.files = `git ls-files`.split("\n")
17
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
18
+ s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
19
+ s.require_paths = ["lib"]
20
+
21
+ s.add_dependency "compass"
22
+ end
metadata ADDED
@@ -0,0 +1,73 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: sassy_list
3
+ version: !ruby/object:Gem::Version
4
+ prerelease:
5
+ version: 0.0.1
6
+ platform: ruby
7
+ authors:
8
+ - Simon Davies
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+
13
+ date: 2013-07-10 00:00:00 +01:00
14
+ default_executable:
15
+ dependencies:
16
+ - !ruby/object:Gem::Dependency
17
+ name: compass
18
+ prerelease: false
19
+ requirement: &id001 !ruby/object:Gem::Requirement
20
+ none: false
21
+ requirements:
22
+ - - ">="
23
+ - !ruby/object:Gem::Version
24
+ version: "0"
25
+ type: :runtime
26
+ version_requirements: *id001
27
+ description: A compass plugin to allow you to set differnt colours for bullets in ul lists
28
+ email:
29
+ - hello@simon-davies.name
30
+ executables: []
31
+
32
+ extensions: []
33
+
34
+ extra_rdoc_files: []
35
+
36
+ files:
37
+ - .gitignore
38
+ - Gemfile
39
+ - Rakefile
40
+ - lib/sassy_list.rb
41
+ - lib/sassy_list/version.rb
42
+ - lib/stylesheets/_sassy_list.scss
43
+ - sassy_list.gemspec
44
+ has_rdoc: true
45
+ homepage: http://simon-davies.name
46
+ licenses: []
47
+
48
+ post_install_message:
49
+ rdoc_options: []
50
+
51
+ require_paths:
52
+ - lib
53
+ required_ruby_version: !ruby/object:Gem::Requirement
54
+ none: false
55
+ requirements:
56
+ - - ">="
57
+ - !ruby/object:Gem::Version
58
+ version: "0"
59
+ required_rubygems_version: !ruby/object:Gem::Requirement
60
+ none: false
61
+ requirements:
62
+ - - ">="
63
+ - !ruby/object:Gem::Version
64
+ version: "0"
65
+ requirements: []
66
+
67
+ rubyforge_project: sassy_list
68
+ rubygems_version: 1.6.2
69
+ signing_key:
70
+ specification_version: 3
71
+ summary: A compass plugin to allow you to set differnt colours for bullets in ul lists
72
+ test_files: []
73
+