Sha256: 41ac70898bccac76457dd4642e88a4d168d695bac4fbf20b000bdb8a714c1dfd

Contents?: true

Size: 1.11 KB

Versions: 1

Compression:

Stored size: 1.11 KB

Contents

# Provide a simple gemspec so you can easily use your enginex
# project in your rails apps through git.
$:.push File.expand_path("../lib", __FILE__)
require 'custom_report/version'

Gem::Specification.new do |s|
  s.name = "custom_report"
  s.files = `git ls-files`.split("\n")
  s.version = "0.0.1"
  s.name                      = "custom_report"
  s.version                   = CustomReport::VERSION
  s.platform                  = Gem::Platform::RUBY
  s.authors                   = [ "Your Name" ]
  s.email                     = [ "your@email.com" ]
  s.homepage                  = "http://yourwebsite.com"
  s.summary                   = "Create CustomReports to make quick customized reports."
  s.description               = "Use CustomReports to get a good quick glipse into your application data."
  s.license		      = "MIT"

  s.required_rubygems_version = "> 1.3.6"

  s.add_dependency "activesupport" , ">= 3.2.8"
  s.add_dependency "rails"         , ">= 3.2.8"

  s.files = `git ls-files`.split("\n")
  s.executables = `git ls-files`.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact
  s.require_path = 'lib'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
custom_report-0.0.1 custom_report.gemspec