Sha256: e0277d26b171f1a3875290992a6fef6a4a09b40bb28279b93e7f077c62661955
Contents?: true
Size: 1.14 KB
Versions: 2
Compression:
Stored size: 1.14 KB
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "guided_randomness/version" Gem::Specification.new do |s| s.name = "guided_randomness" s.version = GuidedRandomness::VERSION s.platform = Gem::Platform::RUBY s.authors = ["Piotr Esse Szmielew"] s.email = ["p.szmielew@roflcopter.pl"] s.homepage = "" s.summary = %q{Simple gem for Ruby which extends Array class, and gave possibility to pick element from it at random, however with certain probability (probability is given for each element).} s.description = %q{Simple gem for Ruby which extends Array class, and gave possibility to pick element from it at random, however with certain probability (probability is given for each element). Adds the get_rand function to array class, which take array of chances as arguments (for example [1,2,3].get_rand([3,4,5]))} s.rubyforge_project = "guided_randomness" 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
guided_randomness-0.1.3 | guided_randomness.gemspec |
guided_randomness-0.1.2 | guided_randomness.gemspec |