Skip to content

Commit

Permalink
Setting up the gem
Browse files Browse the repository at this point in the history
  • Loading branch information
petebrowne committed Sep 19, 2011
0 parents commit 72b8c81
Show file tree
Hide file tree
Showing 11 changed files with 92 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
*.gem
.bundle
Gemfile.lock
pkg/*
2 changes: 2 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
source :rubygems
gemspec
20 changes: 20 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
Copyright (c) 2011 Peter Browne

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
Sass::Sprockets
===============

Sass::Sprockets is a gem that fixes `@import` when used within Sprockets + Sass projects.

Installation
------------

``` bash
$ gem install sass-sprockets
```

Usage
-----

TODO...

Copyright
---------

Copyright (c) 2011 [Peter Browne](http://petebrowne.com). See LICENSE for details.
6 changes: 6 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
require "bundler/gem_tasks"

require "rspec/core/rake_task"
RSpec::Core::RakeTask.new

task :default => :spec
1 change: 1 addition & 0 deletions lib/sass-sprockets.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
require "sass/sprockets"
1 change: 1 addition & 0 deletions lib/sass/sprockets.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
require "sass/sprockets/version"
5 changes: 5 additions & 0 deletions lib/sass/sprockets/version.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module Sass
module Sprockets
VERSION = "0.0.1"
end
end
25 changes: 25 additions & 0 deletions sass-sprockets.gemspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "sass/sprockets/version"

Gem::Specification.new do |s|
s.name = "sass-sprockets"
s.version = Sass::Sprockets::VERSION
s.authors = ["Pete Browne"]
s.email = ["me@petebrowne.com"]
s.homepage = "http://github.com/petebrowne/sass-sprockets"
s.summary = %q{Better Sass integration with Sprockets 2.0}
s.description = %q{Sass::Sprockets is a gem that fixes @import when used within Sprockets + Sass projects.}

s.rubyforge_project = "sass-sprockets"

s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]

s.add_runtime_dependency "sprockets", "~> 2.0"
s.add_runtime_dependency "tilt", "~> 1.3"
s.add_development_dependency "rake"
s.add_development_dependency "rspec", "~> 2.6"
end
5 changes: 5 additions & 0 deletions spec/sass_sprockets_spec.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
require "spec_helper"

describe Sass::Sprockets do
it "does something..."
end
2 changes: 2 additions & 0 deletions spec/spec_helper.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
require "bundler"
Bundler.require :default, :development

0 comments on commit 72b8c81

Please sign in to comment.