File tree Expand file tree Collapse file tree 5 files changed +11
-5
lines changed
Expand file tree Collapse file tree 5 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 1+ # Version 1.0.2 - (2016-09-24)
2+
3+ * Fix requiring of ` openssl ` - fixed in [ #81 ] ( https://github.com/mtchavez/circleci/pull/81 )
4+
15# Version 1.0.1 - (2016-09-14)
26
37* Fix regression of ` CircleCi::Project.enable ` HTTP method changing incorrectly to a ` delete `
Original file line number Diff line number Diff line change 11PATH
22 remote: .
33 specs:
4- circleci (1.0.1 )
4+ circleci (1.0.2 )
55
66GEM
77 remote: https://rubygems.org/
Original file line number Diff line number Diff line change @@ -21,9 +21,10 @@ task :checksum do
2121 gem_name = ENV . fetch ( 'GEM_NAME' , nil )
2222 break unless gem_name
2323 require 'digest/sha2'
24- built_gem_path = "pkg/#{ gem_name } gem"
24+ cur_dir = File . expand_path File . dirname ( __FILE__ )
25+ built_gem_path = File . join ( cur_dir , "pkg/#{ gem_name } .gem" )
2526 checksum = Digest ::SHA512 . new . hexdigest ( File . read ( built_gem_path ) )
26- checksum_path = "checksum/#{ gem_name } .gem.sha512"
27+ checksum_path = File . join ( cur_dir , "checksum/#{ gem_name } .gem.sha512" )
2728 File . open ( checksum_path , 'w' ) { |f | f . write ( checksum ) }
2829 puts "Wrote #{ checksum_path } "
2930end
Original file line number Diff line number Diff line change 1+ f285b05f7f54af75be24a116be8b2de338e50d24820a6d175843d0518245694447201440f5428742cd7b38d0d8fa8080e3e5e359db1a28023bdfb5b5da70d435
Original file line number Diff line number Diff line change 11# frozen_string_literal: true
22Gem ::Specification . new do |s |
33 s . name = 'circleci'
4- s . version = '1.0.1 '
5- s . date = '2016-09-14 '
4+ s . version = '1.0.2 '
5+ s . date = '2016-09-24 '
66 s . summary = 'Circle CI REST API gem'
77 s . description = 'Ruby gem for Circle CI REST API'
88 s . licenses = %w[ MIT ]
You can’t perform that action at this time.
0 commit comments