Sha256: 214e4b9cbbfb0f313238be58b3b421020c35aa9624cbd35a1e6f193484d9b107
Contents?: true
Size: 1.69 KB
Versions: 4
Compression:
Stored size: 1.69 KB
Contents
# Encoding: UTF-8 require 'pathname' gempath = Pathname.new(File.expand_path('../../', __FILE__)) require gempath.join('..', 'base', 'lib', 'base', 'refinery') gemspec = <<EOF # Encoding: UTF-8 # DO NOT EDIT THIS FILE DIRECTLY! Instead, use lib/gemspec.rb to generate it. Gem::Specification.new do |s| s.name = %q{#{gemname = 'refinerycms-authentication'}} s.version = %q{#{::Refinery.version}} s.summary = %q{Authentication engine for Refinery CMS} s.description = %q{The default authentication engine for Refinery CMS} s.date = %q{#{Time.now.strftime('%Y-%m-%d')}} s.email = %q{info@refinerycms.com} s.homepage = %q{http://refinerycms.com} s.rubyforge_project = %q{refinerycms} s.authors = ['Resolve Digital', 'Philip Arndt', 'David Jones', 'Steven Heidel', 'Uģis Ozols'] s.license = %q{MIT} s.require_paths = %w(lib) s.executables = %w(#{Pathname.glob(gempath.join('bin/*')).map{|d| d.relative_path_from(gempath)}.sort.join(" ")}) s.add_dependency 'refinerycms-core', '= #{::Refinery::Version}' s.add_dependency 'devise', '~> 1.3.0' s.add_dependency 'friendly_id_globalize3', '~> 3.2.1' s.files = [ '#{%w( **/{*,.rspec,.gitignore,.yardopts} ).map { |file| Pathname.glob(gempath.join(file)) }.flatten.reject{|f| !f.exist? or f.to_s =~ /\.gem$/ or (f.directory? and f.children.empty?) }.map{|d| d.relative_path_from(gempath)}.uniq.sort.join("',\n '")}' ] end EOF (gemfile = gempath.join("#{gemname}.gemspec")).open('w') {|f| f.puts(gemspec)} puts `cd #{gempath} && gem build #{gemfile}` if ARGV.any?{|a| a == "BUILD=true"}
Version data entries
4 entries across 4 versions & 1 rubygems