-
Notifications
You must be signed in to change notification settings - Fork 68
/
apotomo.gemspec
32 lines (27 loc) · 1.19 KB
/
apotomo.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# -*- 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.license = 'MIT'
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", "< 4.0.0"
s.add_dependency "onfire", "~> 0.2.0"
s.add_dependency "hooks", "~> 0.4.0" # brings us uber.
s.add_development_dependency "rake"
s.add_development_dependency "slim"
s.add_development_dependency "haml"
s.add_development_dependency "tzinfo"
s.add_development_dependency "minitest", "~> 4.7.5"
end