Sha256: 3fddf21fd81e83c74492d44c321e488c1e79a09d5142215f1fe8a69e91bae46b
Contents?: true
Size: 854 Bytes
Versions: 1
Compression:
Stored size: 854 Bytes
Contents
module Hexx module RSpec # The generator creates a Rakefile in a destination root class Install < Thor::Group include Thor::Actions # @!scope class # @!method start # Populates files into current directory # # @return [undefined] # # @api public # @private def self.source_root @source_root ||= File.expand_path "../install", __FILE__ end namespace :install desc "Installs the 'hexx-rspec' gem." # @private def create_rakefile copy_file "Rakefile" end # @private def create_rspec copy_file "_rspec", ".rspec" end # @private def create_simplecov copy_file "simplecov.yml", "config/metrics/simplecov.yml" end end # class Install end # module RSpec end # module Hexx
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
hexx-rspec-0.0.1 | lib/hexx/rspec/install.rb |