Skip to content

Commit

Permalink
Use non-pessimistic version specifiers, update gemspec fields, increm…
Browse files Browse the repository at this point in the history
…ent version.
  • Loading branch information
chrahunt committed Apr 2, 2018
1 parent e8310ad commit 13ed900
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
11 changes: 6 additions & 5 deletions docx.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,17 @@ require 'docx/version'
Gem::Specification.new do |s|
s.name = 'docx'
s.version = Docx::VERSION
s.licenses = ['MIT']
s.summary = 'a ruby library/gem for interacting with .docx files'
s.description = s.summary
s.description = 'thin wrapper around rubyzip and nokogiri as a way to get started with docx files'
s.authors = ['Christopher Hunt', 'Marcus Ortiz', 'Higgins Dragon', 'Toms Mikoss', 'Sebastian Wittenkamp']
s.email = ['chrahunt@gmail.com']
s.homepage = 'https://github.com/chrahunt/docx'
s.files = Dir["README.md", "LICENSE.md", "lib/**/*.rb"]

s.add_dependency 'nokogiri', '~> 1.8.1'
s.add_dependency 'rubyzip', '~> 1.2.1'
s.add_dependency 'nokogiri', '~> 1.8', '>= 1.8.1'
s.add_dependency 'rubyzip', '~> 1.2', '>= 1.2.1'

s.add_development_dependency 'rspec'
s.add_development_dependency 'rake'
s.add_development_dependency 'rspec', '~> 3.7'
s.add_development_dependency 'rake', '~> 12.3'
end
2 changes: 1 addition & 1 deletion lib/docx/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Docx #:nodoc:
VERSION = '0.2.07'
VERSION = '0.3.0'
end

0 comments on commit 13ed900

Please sign in to comment.