1# Replace extension with the name of your extension's .rb file 2require './lib/modular-scale' 3 4Gem::Specification.new do |s| 5 # Release Specific Information 6 s.version = ModularScale::VERSION 7 s.date = ModularScale::DATE 8 9 # Gem Details 10 # Replace "modular-scale" with the name of your extension 11 s.name = "modular-scale" 12 s.rubyforge_project = "modular-scale" 13 # Description of your extension 14 s.description = %q{A generalized Compass extension to build off of} 15 # A summary of your Compass extension. Should be different than Description 16 s.summary = %q{An easy to use system for writing and managing media queries.} 17 # The names of the author(s) of the extension. 18 # If more than one author, comma separate inside of the brackets 19 s.authors = ["First Last"] 20 # The email address(es) of the author(s) 21 # If more than one author, comma separate inside of the brackets 22 s.email = ["firstlast@extension.com"] 23 # URL of the extension 24 s.homepage = "http://extension.com" 25 26 # Gem Files 27 # These are the files to be included in your Compass extension. 28 # Uncomment those that you use. 29 30 # README file 31 s.files = ["readme.md"] 32 33 # CHANGELOG 34 s.files += ["changelog.md"] 35 36 s.license = "MIT" 37 38 s.files = ["license.md"] 39 40 # Library Files 41 s.files += Dir.glob("lib/**/*.*") 42 43 # Sass Files 44 s.files += Dir.glob("stylesheets/**/*.*") 45 46 # Template Files 47 s.files += Dir.glob("templates/**/*.*") 48 49 # Gem Bookkeeping 50 # Versions of Ruby and Rubygems you require 51 s.required_rubygems_version = ">= 1.3.6" 52 s.rubygems_version = %q{1.3.6} 53 54 # Gems Dependencies 55 # Gem names and versions that are required for your Compass extension. 56 # These are Gem dependencies, not Compass dependencies. Including gems 57 # here will make sure the relevant gem and version are installed on the 58 # user's system when installing your gem. 59 s.add_dependency("compass", [">= 0.12.0"]) 60end