elastics-rails.gemspec in elastics-rails-1.1.11 vs elastics-rails.gemspec in elastics-rails-1.2.0

- old
+ new

@@ -1,16 +1,19 @@ require 'date' -version_path = %w[../VERSION ../../VERSION].detect{|v| File.exist?(File.expand_path(v, __FILE__))} -version = File.read(File.expand_path(version_path, __FILE__)).strip +version_path = %w[VERSION ../VERSION].detect{|v| File.exist?(v)} +version = File.read(version_path).strip +extra_files = [] +extra_files << 'VERSION' if File.exist?('VERSION') +extra_files << 'LICENSE' if File.exist?('LICENSE') Gem::Specification.new do |s| s.name = 'elastics-rails' s.summary = 'Rails integration for Elastics' s.description = 'Provides the engine, generators and helpers to integrate Elastics with Rails' s.homepage = 'http://elastics.github.io/elastics' s.authors = ["Domizio Demichelis"] s.email = 'dd.nexus@gmail.com' - s.files = `git ls-files -z`.split("\0") + %w[VERSION LICENSE] + s.files = `git ls-files -z`.split("\0") + extra_files s.version = version s.date = Date.today.to_s s.required_rubygems_version = ">= 1.3.6" s.rdoc_options = %w[--charset=UTF-8] s.license = 'MIT'