Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
mattdoller committed Dec 27, 2023
1 parent aff1487 commit deb583b
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
steps:
- checkout
- run: |
version=$(ruby -I. -rlib/resque/chalk/version -e 'puts Resque::Chalk::VERSION')
version=$(ruby -I. -rlib/data_uri/version -e 'puts Resque::Chalk::VERSION')
if ! grep "\- v${version}" CHANGELOG.md > /dev/null; then
echo Version ${version} does not appear to have a CHANGELOG entry. Please add one.
exit 1
Expand Down
2 changes: 1 addition & 1 deletion data_uri.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Gem::Specification.new do |s|
s.name = 'data_uri'
s.version = '0.0.3'
s.version = Uri::Data::VERSION
s.author = 'Donald Ball'
s.email = 'donald.ball@gmail.com'
s.homepage = 'http://github.com/dball/data_uri'
Expand Down
1 change: 1 addition & 0 deletions lib/data_uri.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@
require 'stringio'

require 'data_uri/uri'
require 'data_uri/version'
5 changes: 5 additions & 0 deletions lib/data_uri/version.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module URI
class Data
VERSION = "0.0.4"
end
end

0 comments on commit deb583b

Please sign in to comment.