Sha256: 072256f4a6eeb9c74c595f50f1f136445dc4afd77aee5795cfb42859f6f6bd69
Contents?: true
Size: 795 Bytes
Versions: 1
Compression:
Stored size: 795 Bytes
Contents
require 'rubygems/gemcutter_utilities' # Holy shit disgusting Gem.clear_paths paths = ENV['GEM_PATH'].to_s.split(':') paths.unshift(File.expand_path(File.join(File.dirname(__FILE__), '..', '..', '..', 'vendor', 'ruby', '1.8'))) ENV['GEM_PATH'] = paths.join(':') ENV['BUNDLE_GEMFILE'] = File.expand_path(File.join(File.dirname(__FILE__), '..', '..', '..', 'Gemfile')) require 'bundler' Bundler.setup Bundler.require class Gem::Commands::ScanCommand < Gem::Command include Gem::GemcutterUtilities def initialize super('scan', description) end def description 'Scan your gems and upload to gemrage.com' end def arguments '[DIR] Optional directory to scan for project files' end def usage program_name end def execute p 'Hello, World!' end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
gemrage-0.1.0 | lib/rubygems/commands/scan_command.rb |