Skip to content
This repository has been archived by the owner on Dec 24, 2020. It is now read-only.

Commit

Permalink
Add gem specification file
Browse files Browse the repository at this point in the history
  • Loading branch information
dasch authored and augustl committed Oct 8, 2009
1 parent ef4b701 commit bb08f1b
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -0,0 +1 @@
*.gem
17 changes: 17 additions & 0 deletions more.gemspec
@@ -0,0 +1,17 @@

require 'rake'

SPEC = Gem::Specification.new do |s|
s.name = "more"
s.summary = "LESS on Rails"
s.homepage = "http://github.com/cloudhead/more"
s.description = <<-EOS
More is a plugin for Ruby on Rails applications. It automatically
parses your applications .less files through LESS and outputs CSS files.
EOS
s.author = "Alexis Sellier"
s.version = "0.0.1"
s.files = FileList["README.markdown", "MIT-LICENSE", "Rakefile", "lib/*.rb", "rails/init.rb", "tasks/*", "test/*"]
s.has_rdoc = true
s.add_dependency "less"
end

0 comments on commit bb08f1b

Please sign in to comment.