-
Notifications
You must be signed in to change notification settings - Fork 5
/
novus-nvd3-rails.gemspec
executable file
·27 lines (24 loc) · 1.15 KB
/
novus-nvd3-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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'novus/nvd3/rails/version'
Gem::Specification.new do |spec|
spec.name = "novus-nvd3-rails"
spec.version = Novus::Nvd3::Rails::VERSION
spec.authors = ["dbackowski"]
spec.email = ["damianbackowski@gmail.com"]
spec.summary = %q{Nvd3 - reusable chart library for d3.js.}
spec.description = %q{Asset pipeline bundling of the nvd3-community library.}
spec.homepage = "https://github.com/dbackowski/novus-nvd3-rails"
spec.license = "MIT"
spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_development_dependency "bundler", "~> 1.12"
spec.add_development_dependency "rake", "~> 10.0"
spec.add_development_dependency 'rails', '>= 4.0', '< 5.1'
spec.add_development_dependency 'rspec-rails', '~> 3.0'
spec.add_development_dependency 'capybara', '~> 2.6'
spec.add_development_dependency 'sqlite3', '~> 1.3'
end