physics 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -32,4 +32,5 @@ module Physics
32
32
  def self.distance_traveled_given_final_velocity_and_acceleration_over_time( final_velocity, acceleration, time )
33
33
  distance_traveled = ( velocity * time ) - ( ( acceleration * ( time ** 2 ) ) / 2 )
34
34
  end
35
+ end
35
36
  end
@@ -1,3 +1,3 @@
1
1
  module Physics
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: physics
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-11-26 00:00:00.000000000 Z
12
+ date: 2012-11-27 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description: Physics formulae covering classical mechanics, general relativity, fundamental
15
15
  constants, and more.
@@ -19,7 +19,7 @@ executables: []
19
19
  extensions: []
20
20
  extra_rdoc_files: []
21
21
  files:
22
- - lib/physics/CelestialMechanics.rb
22
+ - lib/physics/celestial_mechanics.rb
23
23
  - lib/physics/classical_mechanics.rb
24
24
  - lib/physics/fundamental_constants.rb
25
25
  - lib/physics/general_relativity.rb