Skip to content
This repository has been archived by the owner on Apr 15, 2023. It is now read-only.

Commit

Permalink
Relax prawn requirement
Browse files Browse the repository at this point in the history
So far prawn-labels has worked with the entire 1.x line, so let's assume
it continues working and allow any 1.x version to be used. We can always
swoop in and fix any bugs that come up in later prawn releases.
  • Loading branch information
jordanbyron committed Jan 21, 2015
1 parent 6538690 commit 19b42c6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
14 changes: 7 additions & 7 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
PATH
remote: .
specs:
prawn-labels (1.2.1)
prawn (~> 1.2.0)
prawn-labels (1.2.2)
prawn (>= 1.0.0, < 2.0)

GEM
remote: https://rubygems.org/
specs:
minitest (2.12.1)
pdf-core (0.2.5)
prawn (1.2.1)
pdf-core (~> 0.2.5)
ttfunk (~> 1.2.0)
pdf-core (0.4.0)
prawn (1.3.0)
pdf-core (~> 0.4.0)
ttfunk (~> 1.4.0)
purdytest (1.0.0)
minitest (~> 2.2)
minitest (~> 2.2)
Expand Down Expand Up @@ -54,7 +54,7 @@ GEM
minitest (~> 2.2)
minitest (~> 2.2)
minitest (~> 2.2)
ttfunk (1.2.0)
ttfunk (1.4.0)

PLATFORMS
ruby
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.2.1
1.2.2
2 changes: 1 addition & 1 deletion prawn-labels.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ END_DESC
spec.email = ["[email protected]"]
spec.rubyforge_project = "prawn-labels"

spec.add_dependency('prawn', '~> 1.2.0')
spec.add_dependency 'prawn', ['>= 1.0.0', '< 2.0']
end

0 comments on commit 19b42c6

Please sign in to comment.