mddb 0.0.14 → 0.0.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. data/lib/mddb/config.rb +0 -1
  2. data/lib/mddb/version.rb +1 -1
  3. metadata +1 -1
@@ -13,7 +13,6 @@ module Mddb
13
13
  config['database']['host'] = 'localhost' if config['database']['host'].nil?
14
14
  config['database']['port'] = 27017 if config['database']['port'].nil?
15
15
  raise "bad config file: database name needs to be defined" if config['database']['name'].nil?
16
- raise "bad config file: rcut needs to be defined" if config['simulation']['rcut'].nil?
17
16
  config['simulation']['dimensions'] = config['simulation']['dimensions'].split(',').collect {|a| a.to_f}
18
17
  @@config = config
19
18
  self.connect
@@ -1,3 +1,3 @@
1
1
  module Mddb
2
- VERSION = "0.0.14"
2
+ VERSION = "0.0.15"
3
3
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: mddb
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.0.14
5
+ version: 0.0.15
6
6
  platform: ruby
7
7
  authors:
8
8
  - Thomas Mulvaney