Sha256: 31fb0657d82980d625113ef3263bd6787876fba092d28186d25551d5f1e93b87
Contents?: true
Size: 1.34 KB
Versions: 149
Compression:
Stored size: 1.34 KB
Contents
# coding: utf-8 config = File.expand_path('../config', __FILE__) require "#{config}/version" Gem::Specification.new do |spec| spec.name = "<%= Origen.app.name %>" spec.version = <%= Origen.app.namespace %>::VERSION spec.authors = ["<%= User.current.name %>"] spec.email = ["<%= User.current.email %>"] spec.summary = "<%= @summary %>" <% if Origen.app.config.web_domain -%> spec.homepage = "<%= Origen.app.config.web_domain %>" <% end -%> spec.required_ruby_version = '>= 1.9.3' spec.required_rubygems_version = '>= 1.8.11' # Only the files that are hit by these wildcards will be included in the # packaged gem, the default should hit everything in most cases but this will # need to be added to if you have any custom directories spec.files = Dir["lib/**/*.rb", "templates/**/*", "config/**/*.rb", "bin/*", "lib/tasks/**/*.rake", "pattern/**/*.rb", "program/**/*.rb" ] spec.executables = [] spec.require_paths = ["lib"] # Add any gems that your plugin needs to run within a host application spec.add_runtime_dependency "origen_core", ">= <%= Origen.version %>" # Add any gems that your plugin needs for its development environment only #spec.add_development_dependency "doc_helpers", ">= 1.7.0" end
Version data entries
149 entries across 149 versions & 1 rubygems