-
Notifications
You must be signed in to change notification settings - Fork 1
/
ir_helper.gemspec
31 lines (25 loc) · 1.11 KB
/
ir_helper.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'ir_helper/version'
Gem::Specification.new do |spec|
spec.name = 'ir_helper'
spec.version = IrHelper::VERSION
spec.authors = ['James Nicol']
spec.email = ['[email protected]']
spec.description = 'Helpers for use with image-resizer service'
spec.summary = 'View helpers and JS file'
spec.homepage = 'https://github.com/jimmynicol/ir-helper'
spec.license = 'MIT'
spec.files = Dir['{app,lib}/**/*'] + ['LICENSE.txt', 'README.md']
spec.executables = spec.files.grep(/^bin/) { |f| File.basename(f) }
spec.test_files = spec.files.grep(/^(test|spec|features)/)
spec.require_paths = ['lib']
spec.add_development_dependency 'bundler', '~> 1.3'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'rspec'
spec.add_development_dependency 'jasmine'
spec.add_development_dependency 'guard'
spec.add_development_dependency 'guard-rspec'
spec.add_development_dependency 'awesome_print'
end