opensprints-core 0.5.1 → 0.5.2

Sign up to get free protection for your applications and to get access to all the features.
data/README.rdoc CHANGED
@@ -1,17 +1,12 @@
1
1
  = opensprints-core
2
2
 
3
- Description goes here.
3
+ This is a library for interacting with the data recorded by opensprints. Racers, Speed, Events, best time, losses, speed, etc. are all encapsulated here. If you'd like to create a ruby application for goldsprints registration, conducting races, or analyzing performances "opensprints-core" is your gem.
4
+
5
+ This library was extracted from opensprints[http://github.com/evanfarrar/opensprints]. This is the "model" for opensprints's view. This portion of the application had good test coverage (the view portion has none). This portion of the app has kept a similar structure since the beginning of the project (opensprints' view has been completely rewritten with at least 4 different architectures and libraries). This gem is currently only used in the stats[http://github.com/evanfarrar/opensprints.org] application and the opensprints shoes[http://github.com/evanfarrar/opensprints] application. If you're using it in your project, let me know (evan (at) opensprints (period) org).
4
6
 
5
7
  == Note on Patches/Pull Requests
6
8
 
7
- * Fork the project.
8
- * Make your feature addition or bug fix.
9
- * Add tests for it. This is important so I don't break it in a
10
- future version unintentionally.
11
- * Commit, do not mess with rakefile, version, or history.
12
- (if you want to have your own version, that is fine but
13
- bump version in a commit by itself I can ignore when I pull)
14
- * Send me a pull request. Bonus points for topic branches.
9
+ OpenSprints has an aggressively liberal commit policy. If you follow or fork the project on github, we'll add you the project's collaborators list.
15
10
 
16
11
  == Copyright
17
12
 
data/Rakefile CHANGED
@@ -6,7 +6,7 @@ begin
6
6
  Jeweler::Tasks.new do |gem|
7
7
  gem.name = "opensprints-core"
8
8
  gem.summary = %Q{A lib for interacting with opensprints race records data}
9
- gem.description = %Q{This contains everything common between the stats app and the opensprints shoes app. If you want to write a new application to display opensprints stats or run races, this is your gem. }
9
+ gem.description = %Q{A lib for interacting with opensprints race records data. If you want to write a new application to display opensprints stats or run races, this is your gem. }
10
10
  gem.email = "evanfarrar@gmail.com"
11
11
  gem.homepage = "http://github.com/evanfarrar/opensprints-core"
12
12
  gem.authors = ["Evan Farrar"]
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.5.1
1
+ 0.5.2
File without changes
File without changes
File without changes
@@ -12,10 +12,10 @@ else #Test environment
12
12
  end
13
13
  Sequel::Migrator.apply(DB, 'lib/migrations/')
14
14
  Infinity = 1/0.0
15
- require 'lib/tournament'
16
- require 'lib/tournament_participation'
17
- require 'lib/category'
18
- require 'lib/racer'
19
- require 'lib/race'
20
- require 'lib/race_participation'
21
- require 'lib/categorization'
15
+ require 'opensprints-core/tournament'
16
+ require 'opensprints-core/tournament_participation'
17
+ require 'opensprints-core/category'
18
+ require 'opensprints-core/racer'
19
+ require 'opensprints-core/race'
20
+ require 'opensprints-core/race_participation'
21
+ require 'opensprints-core/categorization'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: opensprints-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.1
4
+ version: 0.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Evan Farrar
@@ -32,7 +32,7 @@ dependencies:
32
32
  - !ruby/object:Gem::Version
33
33
  version: "0"
34
34
  version:
35
- description: "This contains everything common between the stats app and the opensprints shoes app. If you want to write a new application to display opensprints stats or run races, this is your gem. "
35
+ description: "A lib for interacting with opensprints race records data. If you want to write a new application to display opensprints stats or run races, this is your gem. "
36
36
  email: evanfarrar@gmail.com
37
37
  executables: []
38
38
 
@@ -48,19 +48,19 @@ files:
48
48
  - README.rdoc
49
49
  - Rakefile
50
50
  - VERSION
51
- - lib/categorization.rb
52
- - lib/category.rb
53
51
  - lib/migrations/001_create_categories.rb
54
52
  - lib/migrations/002_create_racers.rb
55
53
  - lib/migrations/003_create_categorizations.rb
56
54
  - lib/migrations/004_create_races.rb
57
55
  - lib/migrations/005_create_tournaments.rb
58
56
  - lib/opensprints-core.rb
59
- - lib/race.rb
60
- - lib/race_participation.rb
61
- - lib/racer.rb
62
- - lib/tournament.rb
63
- - lib/tournament_participation.rb
57
+ - lib/opensprints-core/categorization.rb
58
+ - lib/opensprints-core/category.rb
59
+ - lib/opensprints-core/race.rb
60
+ - lib/opensprints-core/race_participation.rb
61
+ - lib/opensprints-core/racer.rb
62
+ - lib/opensprints-core/tournament.rb
63
+ - lib/opensprints-core/tournament_participation.rb
64
64
  - test/opensprints-core_spec.rb
65
65
  - test/spec_helper.rb
66
66
  - test/test_category.rb