~ubuntu-branches/ubuntu/vivid/foodcritic/vivid-proposed

« back to all changes in this revision

Viewing changes to foodcritic.gemspec

  • Committer: Package Import Robot
  • Author(s): Stefano Rivera
  • Date: 2014-01-16 14:49:30 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20140116144930-0mgwfhgnqtohnud7
Tags: 3.0.3-1
* New upstream release.
* Refresh patches.
* Drop rak-free patch, superseded upstream.
* Drop gherkin-2.11.1 patch, and bump gherkin dependency to 2.11.7.
* Switch to stable tarballs from gemwatch.
* Update copyright years.
* FC010 is currently broken due to changes in Chef. Ignore the test failures.
* Ruby 1.8 is no longer supported in Debian, so declare XS-Ruby-Versions:
  all.
* Bump Standards-Version to 3.9.5, no changes needed.
* The manpage is now included upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
lib = File.expand_path('../lib/', __FILE__)
2
 
$:.unshift lib unless $:.include?(lib)
3
 
require 'foodcritic/version'
4
 
Gem::Specification.new do |s|
5
 
  s.name = 'foodcritic'
6
 
  s.version = FoodCritic::VERSION
7
 
  s.description = 'Lint tool for Opscode Chef cookbooks.'
8
 
  s.summary = "foodcritic-#{s.version}"
9
 
  s.authors = ['Andrew Crump']
10
 
  s.homepage = 'http://acrmp.github.com/foodcritic'
11
 
  s.license = 'MIT'
12
 
  s.executables << 'foodcritic'
13
 
  s.add_dependency('gherkin', '~> 2.11.1')
14
 
  s.add_dependency('nokogiri', '~> 1.5.4')
15
 
  s.add_dependency('treetop', '~> 1.4.10')
16
 
  s.add_dependency('yajl-ruby', '~> 1.1.0')
17
 
  s.add_dependency('erubis')
18
 
  s.files = Dir['chef_dsl_metadata/*.json'] + Dir['lib/**/*.rb']
19
 
  s.required_ruby_version = '>= 1.9.2'
20
 
end