Sha256: 2445ea55af5a36e4eb8b417d3f2db19817e77d82614875f37f6445df5b9038ce

Contents?: true

Size: 1.49 KB

Versions: 6

Compression:

Stored size: 1.49 KB

Contents

# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "appstats/version"

Gem::Specification.new do |s|
  s.name        = "appstats"
  s.version     = Appstats::VERSION
  s.platform    = Gem::Platform::RUBY
  s.authors     = ["Andrew Forward"]
  s.email       = ["aforward@gmail.com"]
  s.homepage    = "http://github.com/aforward/appstats"
  s.summary     = %q{Provide usage statistics about how your application is being used}
  s.description = %q{Provide usage statistics about how your application is being used}

  # Models are to be used in Rails 3 environment, but the logger can work with Rails 2 apps
  # But, for testing appstats itself, you will need Rails 3
  s.add_dependency('rails','>=2.3.0')
  s.add_dependency('daemons')
  s.add_dependency('net-scp')
  s.add_dependency('redis')
  
  s.add_development_dependency('rake')
  s.add_development_dependency('rspec')
  s.add_development_dependency('ZenTest')
  s.add_development_dependency('standalone_migrations')
  s.add_development_dependency('mysql')
  s.add_development_dependency('metric_fu')
  s.add_development_dependency('guard-rspec')
  s.add_development_dependency('autotest-fsevent') if RUBY_PLATFORM =~ /darwin/i
  s.add_development_dependency('rb-fsevent') if RUBY_PLATFORM =~ /darwin/i

  s.files         = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  s.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  s.require_paths = ["lib"]
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
appstats-0.23.5 appstats.gemspec
appstats-0.23.4 appstats.gemspec
appstats-0.23.3 appstats.gemspec
appstats-0.23.2 appstats.gemspec
appstats-0.23.1 appstats.gemspec
appstats-0.23.0 appstats.gemspec