Sha256: e974b80861a2028441c1b5c261c5e91a2575fdc1b08ea3167ef715bf1084672a
Contents?: true
Size: 1.84 KB
Versions: 2
Compression:
Stored size: 1.84 KB
Contents
module Roro class CLI < Thor desc "rollon::ruby_gem::with_ci_cd", "Generate files for containerized gem testing, CircleCI, and releasing to RubyGems." map "rollon::ruby_gem::with_ci_cd" => "rollon_ruby_gem_with_ci_cd" def rollon_ruby_gem_with_ci_cd(*args) ruby_gem_with_ci_cd(*args) configure_for_rollon end no_commands do def ruby_gem_with_ci_cd(*args) answer = ask("\nYou can add your rubygems api key in\n\t './roro/containers/ruby_gem/ci.env' \n\nlater, or we'll try to add it here:", default: '') rubygems_api_key = (answer.eql?("") ? 'some-key' : answer) @config.app['rubygems_api_key'] = rubygems_api_key @config.app['rubies'] = [] 3.times do |index| newruby = @config.app['ruby_version'].gsub('.', '').to_i - index @config.app['rubies'] << newruby.to_s.split('').join('.') end directory 'ruby_gem/roro', './roro', @config.app directory 'ruby_gem/.circleci', './.circleci', @config.app copy_file 'ruby_gem/docker-compose.yml', './docker-compose.yml' @config.app['rubies'].each do |ruby| file = '.circleci/config.yml' spacer = "\n - run: " rv = "RUBY_VERSION=#{ruby} docker-compose " build = "build ruby_gem" up = "up -d --force-recreate ruby_gem" run_tests = "run ruby_gem bundle exec rake test" append_to_file file, spacer + rv + run_tests, after: "- placeholder" append_to_file file, spacer + rv + up, after: "- placeholder" append_to_file file, spacer + rv + build, after: "- placeholder" end gsub_file '.circleci/config.yml', "- placeholder", "- checkout" append_to_file ".gitignore", "\nGemfile.lock" gitignore_sensitive_files end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
roro-0.3.17 | lib/roro/cli/rollon/ruby_gem/with_ci_cd.rb |
roro-0.3.16 | lib/roro/cli/rollon/ruby_gem/with_ci_cd.rb |