Sha256: 28ee17b003d98f37912a0e54fe04418b7c055e9ca6474f0e13b1897aae51b02f

Contents?: true

Size: 1.17 KB

Versions: 489

Compression:

Stored size: 1.17 KB

Contents

module DPL
  class Provider
    class RubyGems < Provider
      requires 'gems', version: '>= 0.8.3'

      def setup_auth
        ::Gems.key = option(:api_key) if options[:api_key]
        ::Gems.username = option(:user) unless options[:api_key]
        ::Gems.password = option(:password) unless options[:api_key]
      end

      def needs_key?
        false
      end

      def setup_gem
        options[:gem] ||= options[:app]
      end

      def gemspec
        options[:gemspec].gsub('.gemspec', '') if options[:gemspec]
      end

      def check_app
        setup_auth
        setup_gem
        info = ::Gems.info(options[:gem])
        log "Found gem #{info['name']}"
      end

      def check_auth
        setup_auth
        log "Authenticated with username #{::Gems.username}" if ::Gems.username
      end

      def push_app
        setup_auth
        setup_gem
        context.shell "gem build #{gemspec || option(:gem)}.gemspec"
        Dir.glob("#{gemspec || option(:gem)}-*.gem") do |f|
          if options[:host]
            log ::Gems.push(File.new(f), options[:host])
          else
            log ::Gems.push(File.new f)
          end
        end
      end
    end
  end
end

Version data entries

489 entries across 489 versions & 1 rubygems

Version Path
dpl-1.8.26.travis.1776.3 lib/dpl/provider/rubygems.rb
dpl-1.8.26.travis.1775.3 lib/dpl/provider/rubygems.rb
dpl-1.8.26.travis.1771.3 lib/dpl/provider/rubygems.rb
dpl-1.8.26.travis.1765.3 lib/dpl/provider/rubygems.rb
dpl-1.8.26.travis.1759.3 lib/dpl/provider/rubygems.rb
dpl-1.8.26.travis.1753.3 lib/dpl/provider/rubygems.rb
dpl-1.8.25.travis.1743.3 lib/dpl/provider/rubygems.rb
dpl-1.8.25 lib/dpl/provider/rubygems.rb
dpl-1.8.24 lib/dpl/provider/rubygems.rb
dpl-1.8.24.travis.1718.3 lib/dpl/provider/rubygems.rb
dpl-1.8.24.travis.1715.3 lib/dpl/provider/rubygems.rb
dpl-1.8.24.travis.1709.3 lib/dpl/provider/rubygems.rb
dpl-1.8.23 lib/dpl/provider/rubygems.rb
dpl-1.8.23.travis.1706.3 lib/dpl/provider/rubygems.rb
dpl-1.8.23.travis.1701.3 lib/dpl/provider/rubygems.rb
dpl-1.8.23.travis.1694.3 lib/dpl/provider/rubygems.rb
dpl-1.8.22 lib/dpl/provider/rubygems.rb
dpl-1.8.22.travis.1692.3 lib/dpl/provider/rubygems.rb
dpl-1.8.22.travis.1686.3 lib/dpl/provider/rubygems.rb
dpl-1.8.21 lib/dpl/provider/rubygems.rb