|
1 | 1 | # coding: utf-8
|
2 |
| -lib = File.expand_path('../lib', __FILE__) |
3 |
| -$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) |
4 |
| -require 'auto_html/contrib/version' |
5 | 2 |
|
6 | 3 | Gem::Specification.new do |spec|
|
7 |
| - spec.name = "auto_html-contrib" |
8 |
| - spec.version = AutoHtml::Contrib::VERSION |
9 |
| - spec.authors = ["Dejan Simic"] |
10 |
| - spec.email = ["[email protected]"] |
| 4 | + spec.name = 'auto_html-contrib' |
| 5 | + spec.version = '0.0.1' |
| 6 | + spec.authors = ['Dejan Simic'] |
| 7 | + spec.email = ['[email protected]'] |
11 | 8 |
|
12 |
| - spec.summary = %q{Filters for `auto_html` gem} |
13 |
| - spec.description = %q{Filters for `auto_html` gem} |
14 |
| - spec.homepage = "https://github.com/dejan/auto_html-contrib" |
15 |
| - spec.license = "MIT" |
16 |
| - |
17 |
| - # Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or |
18 |
| - # delete this section to allow pushing this gem to any host. |
19 |
| - if spec.respond_to?(:metadata) |
20 |
| - spec.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com'" |
21 |
| - else |
22 |
| - raise "RubyGems 2.0 or newer is required to protect against public gem pushes." |
23 |
| - end |
| 9 | + spec.summary = 'Filters for `auto_html` gem' |
| 10 | + spec.description = 'Filters for `auto_html` gem' |
| 11 | + spec.homepage = 'https://github.com/dejan/auto_html-contrib' |
| 12 | + spec.license = 'MIT' |
24 | 13 |
|
25 | 14 | spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
26 |
| - spec.bindir = "exe" |
| 15 | + spec.bindir = 'exe' |
27 | 16 | spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
28 |
| - spec.require_paths = ["lib"] |
| 17 | + spec.require_paths = ['lib'] |
| 18 | + |
| 19 | + spec.add_dependency 'tag_helper', '~> 0.5' |
29 | 20 |
|
30 |
| - spec.add_development_dependency "bundler", "~> 1.10" |
31 |
| - spec.add_development_dependency "rake", "~> 10.0" |
32 |
| - spec.add_development_dependency "rspec" |
| 21 | + spec.add_development_dependency 'bundler', '~> 1.10' |
| 22 | + spec.add_development_dependency 'rake', '~> 10.0' |
| 23 | + spec.add_development_dependency 'rspec', '~> 3.3' |
| 24 | + spec.add_development_dependency 'rubocop', '~> 0.33' |
| 25 | + spec.add_development_dependency 'fakeweb', '~> 1.3' |
33 | 26 | end
|
0 commit comments