Skip to content

Commit 13ed900

Browse files
committed
Use non-pessimistic version specifiers, update gemspec fields, increment version.
1 parent e8310ad commit 13ed900

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

docx.gemspec

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,17 @@ require 'docx/version'
44
Gem::Specification.new do |s|
55
s.name = 'docx'
66
s.version = Docx::VERSION
7+
s.licenses = ['MIT']
78
s.summary = 'a ruby library/gem for interacting with .docx files'
8-
s.description = s.summary
9+
s.description = 'thin wrapper around rubyzip and nokogiri as a way to get started with docx files'
910
s.authors = ['Christopher Hunt', 'Marcus Ortiz', 'Higgins Dragon', 'Toms Mikoss', 'Sebastian Wittenkamp']
1011
s.email = ['chrahunt@gmail.com']
1112
s.homepage = 'https://github.com/chrahunt/docx'
1213
s.files = Dir["README.md", "LICENSE.md", "lib/**/*.rb"]
1314

14-
s.add_dependency 'nokogiri', '~> 1.8.1'
15-
s.add_dependency 'rubyzip', '~> 1.2.1'
15+
s.add_dependency 'nokogiri', '~> 1.8', '>= 1.8.1'
16+
s.add_dependency 'rubyzip', '~> 1.2', '>= 1.2.1'
1617

17-
s.add_development_dependency 'rspec'
18-
s.add_development_dependency 'rake'
18+
s.add_development_dependency 'rspec', '~> 3.7'
19+
s.add_development_dependency 'rake', '~> 12.3'
1920
end

lib/docx/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module Docx #:nodoc:
2-
VERSION = '0.2.07'
2+
VERSION = '0.3.0'
33
end

0 commit comments

Comments
 (0)