Sha256: 7fea6e6ce9b1c43b831fdc56b3efccf18b8590488c09a7b0c13258fcb935d810
Contents?: true
Size: 939 Bytes
Versions: 5
Compression:
Stored size: 939 Bytes
Contents
# encoding: utf-8 require 'rubygems' require 'bundler' begin Bundler.setup(:default, :development) rescue Bundler::BundlerError => e $stderr.puts e.message $stderr.puts "Run `bundle install` to install missing gems" exit e.status_code end require 'rake' require 'jeweler' Jeweler::Tasks.new do |gem| # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options gem.name = "termup" gem.homepage = "http://github.com/kenn/termup" gem.license = "MIT" gem.summary = "Initialize terminal tabs with preset commands" gem.description = "Initialize terminal tabs with preset commands" gem.email = "kenn.ejima@gmail.com" gem.authors = ["Kenn Ejima"] gem.executables = ["termup"] end Jeweler::RubygemsDotOrgTasks.new require 'rspec/core' require 'rspec/core/rake_task' RSpec::Core::RakeTask.new(:spec) do |spec| spec.pattern = FileList['spec/**/*_spec.rb'] end task :default => :spec
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
termup-1.2.2 | Rakefile |
termup-1.2.1 | Rakefile |
termup-1.2.0 | Rakefile |
termup-1.1.0 | Rakefile |
termup-1.0.1 | Rakefile |