This repository was archived by the owner on Nov 9, 2017. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 3636PATH
3737 remote: .
3838 specs:
39- berkshelf-api (2.1.3 )
39+ berkshelf-api (2.2.0 )
4040 activesupport (~> 4.0 )
4141 archive (= 0.0.6 )
4242 buff-config (~> 1.0 )
Original file line number Diff line number Diff line change 11require 'thor'
2+ require "bundler/gem_tasks"
23
34class BuildGem < Thor
45 require 'thor/rake_compat'
56 namespace "gem"
67
78 include Thor ::RakeCompat
8- Bundler ::GemHelper . install_tasks
99
1010 desc "build" , "Build berkshelf-api-#{ Berkshelf ::API ::VERSION } .gem into the pkg directory"
1111 def build
12- Rake ::Task [ "build" ] . execute
12+ Rake ::Task [ "build" ] . invoke
1313 end
1414
1515 desc "install" , "Build and install berkshelf-api-#{ Berkshelf ::API ::VERSION } .gem into system gems"
1616 def install
17- Rake ::Task [ "install" ] . execute
17+ Rake ::Task [ "install" ] . invoke
1818 end
1919
2020 desc "release" , "Create tag v#{ Berkshelf ::API ::VERSION } and build and push berkshelf-api-#{ Berkshelf ::API ::VERSION } .gem to Rubygems"
2121 def release
22- Rake ::Task [ "release" ] . execute
22+ Rake ::Task [ "release" ] . invoke
2323 end
2424
2525 class Spec < Thor
You can’t perform that action at this time.
0 commit comments