data_store 0.0.6 → 0.0.7

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ##0.0.7
2
+
3
+ * Partial rollback: sequel and celluloid again part of the gemspec
4
+
1
5
  ##0.0.6
2
6
 
3
7
  * Move gem dependencies from gemspec to Gemfile in order to install correctly on JRuby
data/Gemfile CHANGED
@@ -2,9 +2,6 @@ source 'https://rubygems.org'
2
2
 
3
3
  gemspec
4
4
 
5
- gem 'sequel'
6
- gem 'celluloid'
7
-
8
5
  platforms :jruby do
9
6
  gem 'jdbc-mysql'
10
7
  gem 'jdbc-sqlite3'
data/README.md CHANGED
@@ -22,6 +22,22 @@ Or install it yourself as:
22
22
 
23
23
  ## Usage
24
24
 
25
+ ### Install database adapter
26
+
27
+ Depending on the database you want to use and on which platform it is going to run, add the correct adapter to your projects Gemfile.
28
+
29
+ For MRI and Rubinius you can choose between:
30
+
31
+ gem 'mysql2'
32
+ gem 'sqlite3'
33
+ gem 'pg'
34
+
35
+ For JRuby on of the following:
36
+
37
+ gem 'jdbc-mysql'
38
+ gem 'jdbc-sqlite3'
39
+ gem 'jdbc-postgres'
40
+
25
41
  ### Configuration
26
42
 
27
43
  DataStore.configure do |config|
data/data_store.gemspec CHANGED
@@ -15,4 +15,7 @@ Gem::Specification.new do |gem|
15
15
  gem.name = 'data_store'
16
16
  gem.require_paths = ['lib']
17
17
  gem.version = DataStore::VERSION
18
+
19
+ gem.add_dependency('sequel')
20
+ gem.add_dependency('celluloid')
18
21
  end
@@ -1,3 +1,3 @@
1
1
  module DataStore
2
- VERSION = '0.0.6'
2
+ VERSION = '0.0.7'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: data_store
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 0.0.7
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -10,7 +10,39 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
  date: 2013-02-23 00:00:00.000000000 Z
13
- dependencies: []
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: sequel
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: '0'
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ! '>='
28
+ - !ruby/object:Gem::Version
29
+ version: '0'
30
+ - !ruby/object:Gem::Dependency
31
+ name: celluloid
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ! '>='
36
+ - !ruby/object:Gem::Version
37
+ version: '0'
38
+ type: :runtime
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ! '>='
44
+ - !ruby/object:Gem::Version
45
+ version: '0'
14
46
  description: DataStore is designed to store real time data but still manage the growth
15
47
  of your dataset and still keeping historical data
16
48
  email: