public
Description: A ruby implementation of the skating system used in dance competitions
Homepage: http://wildfalcon.com/software/skating-system/
Clone URL: git://github.com/wildfalcon/skating-system.git
skating-system / skating-system.gemspec
100644 16 lines (14 sloc) 0.736 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Gem::Specification.new do |s|
    s.platform = Gem::Platform::RUBY
    s.name = "skating-system"
    s.version = "0.0.2"
    s.author = "Laurie Young"
    s.email = "skating_system@wildfalcon.com"
    s.summary = "Implemetation of the skating system."
    s.files = ['lib/skating_system.rb', 'lib/skating_system/scorer.rb', 'lib/skating_system/performance_results.rb', 'lib/skating_system/ranking.rb',
                    'spec/spec.opts', 'spec/spec_helper.rb', 'spec/spec/scorer_spec.rb', 'spec/spec/performance_results_spec.rb', 'spec/spec/ranking_spec.rb']
    s.require_path = "lib"
    s.autorequire = "skating_system"
    s.has_rdoc = true
    s.extra_rdoc_files = ["README"]
end