Sha256: 3031fda2a5c7b711c3876d6a136c569ba942948bf1265d907048e83c9bfe3d56
Contents?: true
Size: 486 Bytes
Versions: 1
Compression:
Stored size: 486 Bytes
Contents
#!/usr/bin/env ruby # frozen_string_literal: true if ARGV.include?('install') # Dir.mkdir 'atome' # Dir.chdir('atome') do %x(git clone https://github.com/atomecorp/atome.git ) Dir.chdir('atome/vendor/assets/build/js/') do %x(git clone https://github.com/atomecorp/atome_third_parties_js.git third_parties) Dir.chdir('../../../../') do `bundle update; bundle install` `gem build atome.gemspec` `gem install atome` # ` rake test` end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
atomize-1.0 | exe/atomize |