Sha256: 4af91aaedc2209cd44fc98d840fa27daed344569978c9c4f281e22b5357d909b

Contents?: true

Size: 1.77 KB

Versions: 31

Compression:

Stored size: 1.77 KB

Contents

require 'fileutils'
require 'yaml'

module Awspec
  class Setup
    def self.run
      generate_spec_helper
      generate_rakefile
      generate_dotgitignore
      generate_dotrspec
    end

    def self.generate_spec_helper
      content = <<-'EOF'
require 'awspec'
Awspec::Helper::CredentialsLoader.load
EOF
      dir = 'spec'
      if File.exist? dir
        unless File.directory? dir
          $stderr.puts '!! #{dir} already exists and is not a directory'
        end
      else
        FileUtils.mkdir dir
        puts " + #{dir}/"
      end

      if File.exist? 'spec/spec_helper.rb'
        $stderr.puts '!! spec/spec_helper.rb already exists'
      else
        File.open('spec/spec_helper.rb', 'w') do |f|
          f.puts content
        end
        puts ' + spec/spec_helper.rb'
      end
    end

    def self.generate_rakefile
      content = <<-'EOF'
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new('spec')
task :default => :spec
EOF

      if File.exist? 'Rakefile'
        $stderr.puts '!! Rakefile already exists'
      else
        File.open('Rakefile', 'w') do |f|
          f.puts content
        end
        puts ' + Rakefile'
      end
    end

    def self.generate_dotgitignore
      content = <<-'EOF'
secrets.yml
EOF
      if File.exist? 'spec/.gitignore'
        $stderr.puts '!! spec/.gitignore already exists'
      else
        File.open('spec/.gitignore', 'w') do |f|
          f.puts content
        end
        puts ' + spec/.gitignore'
      end
    end

    def self.generate_dotrspec
      content = <<-'EOF'
--color
--format documentation
EOF
      if File.exist? '.rspec'
        $stderr.puts '!! .rspec already exists'
      else
        File.open('.rspec', 'w') do |f|
          f.puts content
        end
        puts ' + .rspec'
      end
    end
  end
end

Version data entries

31 entries across 31 versions & 1 rubygems

Version Path
awspec-0.30.0 lib/awspec/setup.rb
awspec-0.29.0 lib/awspec/setup.rb
awspec-0.28.1 lib/awspec/setup.rb
awspec-0.28.0 lib/awspec/setup.rb
awspec-0.27.2 lib/awspec/setup.rb
awspec-0.27.1 lib/awspec/setup.rb
awspec-0.27.0 lib/awspec/setup.rb
awspec-0.26.2 lib/awspec/setup.rb
awspec-0.26.1 lib/awspec/setup.rb
awspec-0.26.0 lib/awspec/setup.rb
awspec-0.25.3 lib/awspec/setup.rb
awspec-0.25.2 lib/awspec/setup.rb
awspec-0.25.1 lib/awspec/setup.rb
awspec-0.25.0 lib/awspec/setup.rb
awspec-0.24.2 lib/awspec/setup.rb
awspec-0.24.1 lib/awspec/setup.rb
awspec-0.24.0 lib/awspec/setup.rb
awspec-0.23.0 lib/awspec/setup.rb
awspec-0.22.1 lib/awspec/setup.rb
awspec-0.22.0 lib/awspec/setup.rb