Sha256: 2fdd49d23fa876f84c0b9c300cd535e010ebac4733f69a7d81957ad80c1f14a8

Contents?: true

Size: 910 Bytes

Versions: 1

Compression:

Stored size: 910 Bytes

Contents

# -*- encoding: utf-8 -*-
$LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
require 'divisible/version'

Gem::Specification.new do |s|
  s.name        = "divisible"
  s.version     = Divisible::VERSION
  s.platform    = Gem::Platform::RUBY
  s.authors     = ["Vlado Cingel"]
  s.email       = ["vlado@cingel.hr"]
  s.homepage    = "https://github.com/vlado/divisible"
  s.summary     = "Useful to find out if one number is divisible by another"
  s.description = "Useful to find out if one number is divisible by another. For example 9.divisible_by(3) will return true, and 10.divisible_by(3) will return false"

  s.required_rubygems_version = ">= 1.3.6"
  s.rubyforge_project         = "divisible"

  s.add_development_dependency "bundler", ">= 1.0.0.rc.5"

  s.files        = `git ls-files`.split("\n")
  s.executables  = `git ls-files`.split("\n").select{|f| f =~ /^bin/}
  s.require_path = 'lib'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
divisible-0.0.2 divisible.gemspec