Sha256: cf650209f3f4454f0ca1e5c9891346a95d1b7356927a16f4483b5bf94b9ed3f9

Contents?: true

Size: 579 Bytes

Versions: 1

Compression:

Stored size: 579 Bytes

Contents

# frozen_string_literal: true

module JekyllPush
  #
  #
  module Travis
    #
    # @return [String]
    def commit
      "Updated via JekyllPush Travis \"#{ENV['TRAVIS_COMMIT']}\" at #{@time}."
    end

    #
    # @return [String]
    def origin
      @repo_slug = ENV['TRAVIS_REPO_SLUG']
      @user      = @repo_slug.split('/').first
      @token     = ENV['ACCESS_TOKEN']

      "https://#{@user}:#{@token}@github.com/#{@repo_slug}.git"
    end

    #
    # @return [String]
    def msg
      "\nDeploying to branch '#{@target}' from Travis as #{@user}."
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
jekyll_push-0.1.1 lib/jekyll_push/travis.rb