-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtransponder.gemspec
More file actions
21 lines (19 loc) · 937 Bytes
/
transponder.gemspec
File metadata and controls
21 lines (19 loc) · 937 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'transponder/version'
Gem::Specification.new do |gem|
gem.name = "transponder"
gem.version = Transponder::VERSION
gem.authors = ["Zack Siri"]
gem.email = ["zack@artellectual.com"]
gem.description = %q{A Cleaner way of working with rails frontend code}
gem.summary = %q{This library gives you more control over rails ujs, it compliments turbolinks, and any other library you use. It is opinionated and helps you clean up your client side code in many ways.}
gem.homepage = "http://codemy.github.io/transponder"
gem.files = `git ls-files -- lib/*`.split("\n")
gem.files += %w[README.md LICENSE]
gem.test_files = Dir["spec/**/*"]
# add license
gem.license = "MIT"
gem.add_dependency 'coffee-rails', '>= 3.2'
end