chriseppstein-compass-960-plugin 0.9.9 → 0.9.10

Sign up to get free protection for your applications and to get access to all the features.
data/Manifest CHANGED
@@ -1,5 +1,5 @@
1
+ compass-960-plugin.gemspec
1
2
  lib/ninesixty/compass_plugin.rb
2
- lib/ninesixty/sass_extensions.rb
3
3
  lib/ninesixty.rb
4
4
  Manifest
5
5
  Rakefile
data/Rakefile CHANGED
@@ -1,6 +1,5 @@
1
1
  require 'fileutils'
2
2
  require 'sass'
3
- require 'lib/ninesixty/sass_extensions'
4
3
 
5
4
  begin
6
5
  require 'echoe'
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.9.9
1
+ 0.9.10
@@ -2,15 +2,15 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{compass-960-plugin}
5
- s.version = "0.9.9"
5
+ s.version = "0.9.10"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Chris Eppstein"]
9
- s.date = %q{2009-09-24}
9
+ s.date = %q{2009-09-27}
10
10
  s.description = %q{The 960 Grid System is an effort to streamline web development workflow by providing commonly used dimensions, based on a width of 960 pixels. http://960.gs/}
11
11
  s.email = %q{chris@eppsteins.net}
12
- s.extra_rdoc_files = ["lib/ninesixty/compass_plugin.rb", "lib/ninesixty/sass_extensions.rb", "lib/ninesixty.rb", "README.mkdn"]
13
- s.files = ["lib/ninesixty/compass_plugin.rb", "lib/ninesixty/sass_extensions.rb", "lib/ninesixty.rb", "Manifest", "Rakefile", "README.mkdn", "sass/960/_grid.sass", "sass/960/_text.sass", "templates/project/grid.sass", "templates/project/manifest.rb", "templates/project/text.sass", "VERSION", "compass-960-plugin.gemspec"]
12
+ s.extra_rdoc_files = ["lib/ninesixty/compass_plugin.rb", "lib/ninesixty.rb", "README.mkdn"]
13
+ s.files = ["compass-960-plugin.gemspec", "lib/ninesixty/compass_plugin.rb", "lib/ninesixty.rb", "Manifest", "Rakefile", "README.mkdn", "sass/960/_grid.sass", "sass/960/_text.sass", "templates/project/grid.sass", "templates/project/manifest.rb", "templates/project/text.sass", "VERSION"]
14
14
  s.homepage = %q{http://github.com/chriseppstein/compass-960-plugin}
15
15
  s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Compass-960-plugin", "--main", "README.mkdn"]
16
16
  s.require_paths = ["lib"]
@@ -1,2 +1 @@
1
1
  require File.join(File.dirname(__FILE__), 'ninesixty', 'compass_plugin')
2
- require File.join(File.dirname(__FILE__), 'ninesixty', 'sass_extensions')
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: chriseppstein-compass-960-plugin
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.9
4
+ version: 0.9.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Eppstein
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-09-24 00:00:00 -07:00
12
+ date: 2009-09-27 00:00:00 -07:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -40,12 +40,11 @@ extensions: []
40
40
 
41
41
  extra_rdoc_files:
42
42
  - lib/ninesixty/compass_plugin.rb
43
- - lib/ninesixty/sass_extensions.rb
44
43
  - lib/ninesixty.rb
45
44
  - README.mkdn
46
45
  files:
46
+ - compass-960-plugin.gemspec
47
47
  - lib/ninesixty/compass_plugin.rb
48
- - lib/ninesixty/sass_extensions.rb
49
48
  - lib/ninesixty.rb
50
49
  - Manifest
51
50
  - Rakefile
@@ -56,7 +55,6 @@ files:
56
55
  - templates/project/manifest.rb
57
56
  - templates/project/text.sass
58
57
  - VERSION
59
- - compass-960-plugin.gemspec
60
58
  has_rdoc: false
61
59
  homepage: http://github.com/chriseppstein/compass-960-plugin
62
60
  licenses:
@@ -1,7 +0,0 @@
1
- require 'sass'
2
-
3
- module Sass::Script::Functions
4
- def enumerate(prefix, from_index, to_index)
5
- Sass::Script::String.new(((from_index.value)..(to_index.value)).map{|i| "#{prefix}#{i}"}.join(", "))
6
- end
7
- end