Sha256: 56a2664c10ac7233a5f5d0fc7e775a782548369a7f1c7c586f8d14b339970019

Contents?: true

Size: 1.13 KB

Versions: 1

Compression:

Stored size: 1.13 KB

Contents

# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)

require 'apotomo/version'

Gem::Specification.new do |s|
  s.name        = "apotomo"
  s.version     = Apotomo::VERSION
  s.platform    = Gem::Platform::RUBY
  s.authors     = ["Nick Sutterer"]
  s.email       = ["apotonick@gmail.com"]
  s.homepage    = "http://github.com/apotonick/apotomo"
  s.summary     = %q{Web components for Rails.}
  s.description = %q{Web component framework for Rails providing widgets that trigger events and know when and how to update themselves with AJAX.}
  
  s.files         = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  s.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  s.require_paths = ["lib"]
  
  s.add_dependency "cells",   ">= 3.6.7"
  s.add_dependency "onfire",  "~> 0.2.0"
  s.add_dependency "hooks",   "~> 0.1.3"

  s.add_development_dependency "shoulda"
  s.add_development_dependency "rake"
  s.add_development_dependency "slim"
  s.add_development_dependency "haml"
  s.add_development_dependency "tzinfo"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
apotomo-1.1.4 apotomo.gemspec