Sha256: eddb2e17e6ade9a449a74dfbeabc865421e664b5c2906782336f3820e6d951e7
Contents?: true
Size: 1.94 KB
Versions: 8
Compression:
Stored size: 1.94 KB
Contents
# -*- encoding : utf-8 -*- Gem::Specification.new do |s| s.name = 'card' s.version = File.open(File.expand_path( '../VERSION', __FILE__ )).read.chomp s.authors = ["Ethan McCutchen", "Lewis Hoffman", "Gerry Gleason", "Philipp Kühl"] s.email = ['info@wagn.org'] # s.date = '2013-12-20' s.summary = "an atomic, set-driven content engine" s.description = "Cards are data atoms that are grouped into Sets to which Rules can apply. Cards can formatted with Views and transformed with Events." s.homepage = 'http://wagn.org' s.license = 'GPL' s.files = `git ls-files`.split($/) # add submodule files (seed data) `git submodule --quiet foreach pwd`.split($\).each do |submod_path| gem_root = File.expand_path File.dirname(__FILE__) relative_submod_path = submod_path.gsub "#{gem_root}/", '' Dir.chdir(submod_path) do s.files += `git ls-files`.split($\).map do |filename| "#{relative_submod_path}/#{filename}" end end end s.test_files = s.files.grep(%r{^(test|spec|features)/}) s.require_paths = ["lib"] s.required_ruby_version = '>= 1.9.3' [ [ 'smartname', '0.2.3' ], [ 'activerecord-session_store', '~> 0.1' ], [ 'uuid', '~> 2.3' ], [ 'carrierwave' , '~> 0.10' ], [ 'htmlentities', '~> 4.3' ], [ 'mini_magick', '~> 4.2.10' ], [ 'recaptcha', '~> 0.4.0'], [ 'coderay', '~> 1.0' ], [ 'sass', '~> 3.2' ], [ 'coffee-script', '~> 2.2' ], [ 'uglifier', '~> 2.5' ], [ 'haml', '~> 4.0' ], [ 'kaminari', '~> 0.16' ], [ 'bootstrap-kaminari-views', '~> 0.0.5'], [ 'diff-lcs', '~> 1.2' ], ].each do |dep| s.add_runtime_dependency *dep end end
Version data entries
8 entries across 8 versions & 1 rubygems