Sha256: f4067ae15802cd95bf1a1969f55dce548bf0d7ef14b7a4e6368d25a110d438ce
Contents?: true
Size: 1.02 KB
Versions: 2
Compression:
Stored size: 1.02 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 page 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 "rails", "~> 3.0" s.add_dependency "cells", "~> 3.4.0" s.add_dependency "onfire", "~> 0.1.1" s.add_dependency "hooks", "~> 0.1.3" s.add_development_dependency "shoulda" end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
apotomo-1.0.5 | apotomo.gemspec |
apotomo-1.0.4 | apotomo.gemspec |