frozeek/xhive

View on GitHub
xhive.gemspec

Summary

Maintainability
Test Coverage
$:.push File.expand_path("../lib", __FILE__)

# Maintain your gem's version:
require "xhive/version"

# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
  s.name        = "xhive"
  s.version     = Xhive::VERSION
  s.authors     = ["frozeek"]
  s.email       = ["marcelo@frozeek.com"]
  s.licenses    = ["MIT"]
  s.homepage    = "http://github.com/frozeek/xhive"
  s.summary     = "Simple Rails AJAX CMS"
  s.description = "Simple Rails AJAX CMS"

  s.files = Dir["{app,config,db,lib}/**/*"] + ["LICENSE", "Rakefile", "README.md"]

  s.add_dependency "rails", "~> 3.2"
  s.add_dependency "jquery-rails"
  s.add_dependency "cells", '3.8.5'
  s.add_dependency "friendly_id", "~> 4.0.1"
  s.add_dependency "liquid"
  s.add_dependency "sass-rails", '~> 3.2.3'
  s.add_dependency "carrierwave"
  s.add_dependency "mini_magick"

  s.add_development_dependency "sqlite3"
  s.add_development_dependency "shoulda-context"
  s.add_development_dependency "shoulda-matchers"
  s.add_development_dependency "mocha"
end