Sha256: b908141804f1ef0e6ec233a3581d3168780d5bed940d0e6c99df57c21ee9cf18

Contents?: true

Size: 1.63 KB

Versions: 25

Compression:

Stored size: 1.63 KB

Contents

require "rubygems"
require "hoe"

Hoe.spec "rvm" do

  developer "Wayne E. Seguin", "wayneeseguin@gmail.com"

  # TODO: package the release with the API .gem
  #gemspec.files           = [
  #  "README", "sha1", "LICENCE", "rvm.gemspec",
  #  # TODO: Go through manifest carefully.
  #  # FOR NOW glob
  #  Dir::glob("lib/**/**"),
  #  Dir::glob("releases/rvm-#{RVM::Version::STRING}.tar.gz*")
  #].flatten

  spec_extras[:rdoc_options] = proc do |ary|
    # hoe kinda sucks for this! TODO: submit patch for Hoe#rdoc_options
    ary.push "--inline-source", "--charset=UTF-8"
  end

  spec_extras[:post_install_message] = <<-POST_INSTALL_MESSAGE
#{"*" * 80}

  This gem contains only the Ruby libraries for the RVM Ruby API.

  In order to install RVM please use one of the methods listed in the
  documentation:

    https://rvm.beginrescueend.com/rvm/install/

  such as,

    bash < <(curl -s -B https://rvm.beginrescueend.com/install/rvm)

  followed by placing the sourcing line in your ~/.bash_profile or wherever may
  be appropriate for your setup (example, .zshenv, /etc/profile, ...):

    # Load RVM into a shell session *as a function*
    [[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm"

  After completing setup please open a new shell to use RVM and be sure to run
  'rvm notes' to gain a list of dependencies to install before installing the
  first Ruby. You can read more details about this process on the above
  mentioned install page as well as the basics page:

    https://rvm.beginrescueend.com/rvm/basics/

  Enjoy!

      ~Wayne

#{"*" * 80}
    POST_INSTALL_MESSAGE
end

task :test do
  exec "bash -l -c \"./test/suite\""
end

Version data entries

25 entries across 25 versions & 1 rubygems

Version Path
rvm-1.7.0 Rakefile
rvm-1.6.32 Rakefile
rvm-1.6.31 Rakefile
rvm-1.6.30 Rakefile
rvm-1.6.29 Rakefile
rvm-1.6.27 Rakefile
rvm-1.6.24 Rakefile
rvm-1.6.23 Rakefile
rvm-1.6.22 Rakefile
rvm-1.6.21 Rakefile
rvm-1.6.20 Rakefile
rvm-1.6.19 Rakefile
rvm-1.6.16 Rakefile
rvm-1.6.13 Rakefile
rvm-1.6.12 Rakefile
rvm-1.6.11 Rakefile
rvm-1.6.10 Rakefile
rvm-1.6.9 Rakefile
rvm-1.6.8 Rakefile
rvm-1.6.7 Rakefile