Sha256: 19d43184953af32a7bb104dab42f75319ff2d1b964537d570e2ae8be21658089
Contents?: true
Size: 686 Bytes
Versions: 7
Compression:
Stored size: 686 Bytes
Contents
# encoding: utf-8 begin require "#{dir = File.dirname(__FILE__)}/task/gemgem" rescue LoadError sh "git submodule update --init" exec Gem.ruby, "-S", "rake", *ARGV end Gemgem.dir = dir ($LOAD_PATH << File.expand_path("#{Gemgem.dir}/lib" )).uniq! desc 'Generate gemspec' task 'gem:spec' do Gemgem.spec = Gemgem.create do |s| require 'rest-core/version' s.name = 'rest-core' s.version = RestCore::VERSION s.homepage = 'https://github.com/cardinalblue/rest-core' %w[rest-client].each{ |g| s.add_runtime_dependency(g) } s.authors = ['Cardinal Blue', 'Lin Jen-Shin (godfat)'] s.email = ['dev (XD) cardinalblue.com'] end Gemgem.write end
Version data entries
7 entries across 7 versions & 1 rubygems
Version | Path |
---|---|
rest-core-2.0.4 | Rakefile |
rest-core-2.0.3 | Rakefile |
rest-core-2.0.2 | Rakefile |
rest-core-2.0.1 | Rakefile |
rest-core-2.0.0 | Rakefile |
rest-core-1.0.3 | Rakefile |
rest-core-1.0.2 | Rakefile |