Sha256: 520cc192891faa347c3d9126883241c6f3a89f7572923bae64f63b73910d7929

Contents?: true

Size: 1.3 KB

Versions: 2

Compression:

Stored size: 1.3 KB

Contents

# coding: utf-8
$:.push File.expand_path('../lib', __FILE__)
require 'inverter/version'

Gem::Specification.new do |s|
  s.name        = 'inverter'
  s.version     = Inverter::VERSION
  s.platform    = Gem::Platform::RUBY
  s.authors     = ['Alexander Kravets']
  s.email       = 'alex@slatestudio.com'
  s.license     = 'MIT'
  s.homepage    = 'http://slatestudio.com'
  s.summary     = 'An easy way to connect Rails templates content to CMS.'
  s.description = <<-DESC
Easy way to connect Rails templates content to CMS. HTML content is marked using
special formatted comments. Then it automatically populated to models and is accessible
via CMS of choice. When template is rendered content stored in models content is
pulled from databased automatically.
  DESC

  s.rubyforge_project = 'inverter'

  s.files         = `git ls-files`.split("\n")
  s.require_paths = ['lib']

  s.add_dependency "render_anywhere", ">= 0.0.10"
  s.add_dependency "redcarpet", ">= 3.2.3"

  s.add_development_dependency 'bundler', '~> 1.9'
  s.add_development_dependency 'rake', '~> 10.0'
  s.add_development_dependency 'rails', '~> 4.1.2'
  s.add_development_dependency 'database_cleaner'
  s.add_development_dependency 'factory_girl_rails'
  s.add_development_dependency 'minitest-reporters'
  s.add_development_dependency 'minitest-focus'
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
inverter-0.5.1 inverter.gemspec
inverter-0.5.0 inverter.gemspec