Sha256: 457a110f31051f255252baa8cdb92943847d2fad3848c801f5fa159dfb2db400

Contents?: true

Size: 1.71 KB

Versions: 6

Compression:

Stored size: 1.71 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.8.7'

  [

    [ 'smartname',    '0.2.3'   ],

    [ 'uuid',         '~> 2.3'  ],
    [ 'paperclip',    '~> 2.8'  ],
    [ 'htmlentities', '~> 4.3'  ],
    [ 'rmagick',      '~> 2.13' ],
    [ 'recaptcha',    '~> 0.3'  ],
    [ '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

6 entries across 6 versions & 1 rubygems

Version Path
card-1.15.7 card.gemspec
card-1.15.6 card.gemspec
card-1.15.5 card.gemspec
card-1.15.4 card.gemspec
card-1.15.3 card.gemspec
card-1.15.2 card.gemspec