├── .document ├── .github └── workflows │ └── ruby.yml ├── .gitignore ├── .rspec ├── .travis.yml ├── .yardopts ├── ChangeLog.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── gemspec.yml ├── lib └── rubygems │ ├── tasks.rb │ └── tasks │ ├── build.rb │ ├── build │ ├── gem.rb │ ├── tar.rb │ ├── task.rb │ └── zip.rb │ ├── console.rb │ ├── install.rb │ ├── printing.rb │ ├── project.rb │ ├── push.rb │ ├── release.rb │ ├── scm.rb │ ├── scm │ ├── push.rb │ ├── status.rb │ └── tag.rb │ ├── sign.rb │ ├── sign │ ├── checksum.rb │ ├── pgp.rb │ └── task.rb │ └── task.rb ├── rubygems-tasks.gemspec └── spec ├── build_spec.rb ├── console_spec.rb ├── install_spec.rb ├── project_spec.rb ├── projects ├── bundler-project │ ├── .gitignore │ ├── Gemfile │ ├── LICENSE │ ├── README.md │ ├── Rakefile │ ├── bundler-project.gemspec │ └── lib │ │ ├── bundler-project.rb │ │ └── bundler-project │ │ └── version.rb ├── rubygems-multi-project │ ├── .gitignore │ ├── LICENSE.txt │ ├── README.md │ ├── lib │ │ └── rubygems │ │ │ └── project │ │ │ └── version.rb │ ├── rubygems-project-lite.gemspec │ └── rubygems-project.gemspec └── rubygems-project │ ├── .gitignore │ ├── LICENSE.txt │ ├── README.md │ ├── lib │ └── rubygems │ │ └── project │ │ └── version.rb │ └── rubygems-project.gemspec ├── push_spec.rb ├── rake_context.rb ├── scm ├── push_spec.rb ├── status_spec.rb └── tag_spec.rb ├── scm_spec.rb ├── sign └── pgp_spec.rb ├── sign_spec.rb ├── spec_helper.rb └── tasks_spec.rb /.document: -------------------------------------------------------------------------------- 1 | lib/**/*.rb 2 | bin/* 3 | - 4 | ChangeLog.* 5 | LICENSE.txt 6 | -------------------------------------------------------------------------------- /.github/workflows/ruby.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/rubygems-tasks/HEAD/.github/workflows/ruby.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /Gemfile.lock 2 | /doc/ 3 | /pkg/ 4 | /vendor/bundle 5 | -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --colour --format documentation 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/rubygems-tasks/HEAD/.travis.yml -------------------------------------------------------------------------------- /.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/rubygems-tasks/HEAD/.yardopts -------------------------------------------------------------------------------- /ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/rubygems-tasks/HEAD/ChangeLog.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/rubygems-tasks/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/rubygems-tasks/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/rubygems-tasks/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/rubygems-tasks/HEAD/Rakefile -------------------------------------------------------------------------------- /gemspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/rubygems-tasks/HEAD/gemspec.yml -------------------------------------------------------------------------------- /lib/rubygems/tasks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/rubygems-tasks/HEAD/lib/rubygems/tasks.rb -------------------------------------------------------------------------------- /lib/rubygems/tasks/build.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/rubygems-tasks/HEAD/lib/rubygems/tasks/build.rb -------------------------------------------------------------------------------- /lib/rubygems/tasks/build/gem.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/rubygems-tasks/HEAD/lib/rubygems/tasks/build/gem.rb -------------------------------------------------------------------------------- /lib/rubygems/tasks/build/tar.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/rubygems-tasks/HEAD/lib/rubygems/tasks/build/tar.rb -------------------------------------------------------------------------------- /lib/rubygems/tasks/build/task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/rubygems-tasks/HEAD/lib/rubygems/tasks/build/task.rb -------------------------------------------------------------------------------- /lib/rubygems/tasks/build/zip.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/rubygems-tasks/HEAD/lib/rubygems/tasks/build/zip.rb -------------------------------------------------------------------------------- /lib/rubygems/tasks/console.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/rubygems-tasks/HEAD/lib/rubygems/tasks/console.rb -------------------------------------------------------------------------------- /lib/rubygems/tasks/install.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/rubygems-tasks/HEAD/lib/rubygems/tasks/install.rb -------------------------------------------------------------------------------- /lib/rubygems/tasks/printing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/rubygems-tasks/HEAD/lib/rubygems/tasks/printing.rb -------------------------------------------------------------------------------- /lib/rubygems/tasks/project.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/rubygems-tasks/HEAD/lib/rubygems/tasks/project.rb -------------------------------------------------------------------------------- /lib/rubygems/tasks/push.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/rubygems-tasks/HEAD/lib/rubygems/tasks/push.rb -------------------------------------------------------------------------------- /lib/rubygems/tasks/release.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/rubygems-tasks/HEAD/lib/rubygems/tasks/release.rb -------------------------------------------------------------------------------- /lib/rubygems/tasks/scm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/rubygems-tasks/HEAD/lib/rubygems/tasks/scm.rb -------------------------------------------------------------------------------- /lib/rubygems/tasks/scm/push.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/rubygems-tasks/HEAD/lib/rubygems/tasks/scm/push.rb -------------------------------------------------------------------------------- /lib/rubygems/tasks/scm/status.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/rubygems-tasks/HEAD/lib/rubygems/tasks/scm/status.rb -------------------------------------------------------------------------------- /lib/rubygems/tasks/scm/tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/rubygems-tasks/HEAD/lib/rubygems/tasks/scm/tag.rb -------------------------------------------------------------------------------- /lib/rubygems/tasks/sign.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/rubygems-tasks/HEAD/lib/rubygems/tasks/sign.rb -------------------------------------------------------------------------------- /lib/rubygems/tasks/sign/checksum.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/rubygems-tasks/HEAD/lib/rubygems/tasks/sign/checksum.rb -------------------------------------------------------------------------------- /lib/rubygems/tasks/sign/pgp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/rubygems-tasks/HEAD/lib/rubygems/tasks/sign/pgp.rb -------------------------------------------------------------------------------- /lib/rubygems/tasks/sign/task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/rubygems-tasks/HEAD/lib/rubygems/tasks/sign/task.rb -------------------------------------------------------------------------------- /lib/rubygems/tasks/task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/rubygems-tasks/HEAD/lib/rubygems/tasks/task.rb -------------------------------------------------------------------------------- /rubygems-tasks.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/rubygems-tasks/HEAD/rubygems-tasks.gemspec -------------------------------------------------------------------------------- /spec/build_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/rubygems-tasks/HEAD/spec/build_spec.rb -------------------------------------------------------------------------------- /spec/console_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/rubygems-tasks/HEAD/spec/console_spec.rb -------------------------------------------------------------------------------- /spec/install_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/rubygems-tasks/HEAD/spec/install_spec.rb -------------------------------------------------------------------------------- /spec/project_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/rubygems-tasks/HEAD/spec/project_spec.rb -------------------------------------------------------------------------------- /spec/projects/bundler-project/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/rubygems-tasks/HEAD/spec/projects/bundler-project/.gitignore -------------------------------------------------------------------------------- /spec/projects/bundler-project/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/rubygems-tasks/HEAD/spec/projects/bundler-project/Gemfile -------------------------------------------------------------------------------- /spec/projects/bundler-project/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/rubygems-tasks/HEAD/spec/projects/bundler-project/LICENSE -------------------------------------------------------------------------------- /spec/projects/bundler-project/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/rubygems-tasks/HEAD/spec/projects/bundler-project/README.md -------------------------------------------------------------------------------- /spec/projects/bundler-project/Rakefile: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env rake 2 | require "bundler/gem_tasks" 3 | -------------------------------------------------------------------------------- /spec/projects/bundler-project/bundler-project.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/rubygems-tasks/HEAD/spec/projects/bundler-project/bundler-project.gemspec -------------------------------------------------------------------------------- /spec/projects/bundler-project/lib/bundler-project.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/rubygems-tasks/HEAD/spec/projects/bundler-project/lib/bundler-project.rb -------------------------------------------------------------------------------- /spec/projects/bundler-project/lib/bundler-project/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/rubygems-tasks/HEAD/spec/projects/bundler-project/lib/bundler-project/version.rb -------------------------------------------------------------------------------- /spec/projects/rubygems-multi-project/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/rubygems-tasks/HEAD/spec/projects/rubygems-multi-project/.gitignore -------------------------------------------------------------------------------- /spec/projects/rubygems-multi-project/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/rubygems-tasks/HEAD/spec/projects/rubygems-multi-project/LICENSE.txt -------------------------------------------------------------------------------- /spec/projects/rubygems-multi-project/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/rubygems-tasks/HEAD/spec/projects/rubygems-multi-project/README.md -------------------------------------------------------------------------------- /spec/projects/rubygems-multi-project/lib/rubygems/project/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/rubygems-tasks/HEAD/spec/projects/rubygems-multi-project/lib/rubygems/project/version.rb -------------------------------------------------------------------------------- /spec/projects/rubygems-multi-project/rubygems-project-lite.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/rubygems-tasks/HEAD/spec/projects/rubygems-multi-project/rubygems-project-lite.gemspec -------------------------------------------------------------------------------- /spec/projects/rubygems-multi-project/rubygems-project.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/rubygems-tasks/HEAD/spec/projects/rubygems-multi-project/rubygems-project.gemspec -------------------------------------------------------------------------------- /spec/projects/rubygems-project/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/rubygems-tasks/HEAD/spec/projects/rubygems-project/.gitignore -------------------------------------------------------------------------------- /spec/projects/rubygems-project/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/rubygems-tasks/HEAD/spec/projects/rubygems-project/LICENSE.txt -------------------------------------------------------------------------------- /spec/projects/rubygems-project/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/rubygems-tasks/HEAD/spec/projects/rubygems-project/README.md -------------------------------------------------------------------------------- /spec/projects/rubygems-project/lib/rubygems/project/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/rubygems-tasks/HEAD/spec/projects/rubygems-project/lib/rubygems/project/version.rb -------------------------------------------------------------------------------- /spec/projects/rubygems-project/rubygems-project.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/rubygems-tasks/HEAD/spec/projects/rubygems-project/rubygems-project.gemspec -------------------------------------------------------------------------------- /spec/push_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/rubygems-tasks/HEAD/spec/push_spec.rb -------------------------------------------------------------------------------- /spec/rake_context.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/rubygems-tasks/HEAD/spec/rake_context.rb -------------------------------------------------------------------------------- /spec/scm/push_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/rubygems-tasks/HEAD/spec/scm/push_spec.rb -------------------------------------------------------------------------------- /spec/scm/status_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/rubygems-tasks/HEAD/spec/scm/status_spec.rb -------------------------------------------------------------------------------- /spec/scm/tag_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/rubygems-tasks/HEAD/spec/scm/tag_spec.rb -------------------------------------------------------------------------------- /spec/scm_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/rubygems-tasks/HEAD/spec/scm_spec.rb -------------------------------------------------------------------------------- /spec/sign/pgp_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/rubygems-tasks/HEAD/spec/sign/pgp_spec.rb -------------------------------------------------------------------------------- /spec/sign_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/rubygems-tasks/HEAD/spec/sign_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/rubygems-tasks/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/tasks_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/rubygems-tasks/HEAD/spec/tasks_spec.rb --------------------------------------------------------------------------------