forked from Janther/khipu-rails
-
Notifications
You must be signed in to change notification settings - Fork 1
/
khipu-rails.gemspec
27 lines (23 loc) · 1.03 KB
/
khipu-rails.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'khipu_rails/version'
Gem::Specification.new do |gem|
gem.name = "khipu-rails"
gem.version = KhipuRails::VERSION
gem.authors = ["Klaus Hott Vidal"]
gem.email = ["[email protected]"]
gem.description = %q{This gem provides an ActionView helper that creates a form following Khipu's documentation.}
gem.summary = %q{Wrapper for the Khipu api.}
gem.homepage = %q{https://github.com/janther/khipu-rails}
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.add_dependency "rails", ">= 3.1"
gem.add_dependency "jquery-rails"
gem.add_dependency "nokogiri"
gem.add_dependency "httpclient"
gem.add_development_dependency "rspec-rails"
gem.add_development_dependency "capybara", "~> 1.1.2"
end