rom 4.0.0.beta1 → 4.0.0.beta2

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 (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +12 -8
  3. data/lib/rom/version.rb +1 -1
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 304e3537705e77485f4f27c58c27698057461759
4
- data.tar.gz: 8a4bcd904982f455a99449acdef956924b564375
3
+ metadata.gz: 0f7a78c4a103ba091665c00b9bb7f59c613f2dd0
4
+ data.tar.gz: c1a240434af5e388551fdef1e269b00ab4706d78
5
5
  SHA512:
6
- metadata.gz: 60487759bd9bc6efb078b8effa92347be83fd1e4de7e89c35c7b686e46b6be85a2288d2c2e0cc644cca3dbd191876a8b31f1a852b1e2a996c488f7ec2894bed2
7
- data.tar.gz: 6da1684c51c9ade0d97df4c285ec88bea58261eb627c2da8ca05163428b4dcb0008bafa560d552d4dd086a5010489c47c82e796d2714286dd620afd6b352345b
6
+ metadata.gz: 2cbcbafea8a42c5abe86cb0326a193e9823e60c2ec4cac2bf36c6368b22a7736669d3cf24c40bb0be80c5aa1ebc73285024a1b37c4ccda685804f071d8b84256
7
+ data.tar.gz: d8d505c7c30f0312e9d9f99a9e088fa5466b65b97c1cf9f0553791578b5fc4ccd8b787cd99b6ecf5db2a0006777f813968551755fb93c9495d8c7f77a401bcf6
data/README.md CHANGED
@@ -16,9 +16,16 @@
16
16
  [![OpenCollective](https://opencollective.com/rom/backers/badge.svg)](#backers)
17
17
  [![OpenCollective](https://opencollective.com/rom/sponsors/badge.svg)](#sponsors)
18
18
 
19
- Ruby Object Mapper (ROM) is a data mapping and persistence toolkit for Ruby
19
+ Ruby Object Mapper (rom-rb) is a data mapping and persistence toolkit for Ruby
20
20
  with the goal to provide powerful object mapping capabilities without limiting
21
- the full power of your datastore.
21
+ the full power of your database.
22
+
23
+ Main rom gem provides following components:
24
+
25
+ * [core](https://github.com/rom-rb/rom/blob/master/core/README.md) - Core and Adapter APIs
26
+ * [mapper](https://github.com/rom-rb/rom/blob/master/mapper/README.md) - Data mappers integrated with rom-core
27
+ * [changeset](https://github.com/rom-rb/rom/blob/master/changeset/README.md) - Changeset objects integrated with rom-core
28
+ * [repository](https://github.com/rom-rb/rom/blob/master/repository/README.md) - Additional repository abstraction integrated with rom-core
22
29
 
23
30
  Learn more:
24
31
 
@@ -99,13 +106,14 @@ Become a sponsor and get your logo on our README on Github with a link to your s
99
106
 
100
107
  There are other gems within the rom ecosystem that you will find useful:
101
108
 
102
- * [rom-repository](https://github.com/rom-rb/rom-repository) a higher-level, convenient abstraction with auto-mapping
109
+ * [rom-factory](https://github.com/rom-rb/rom-factory) struct generator with support for persistence
103
110
  * (WIP) [rom-migrator](https://github.com/rom-rb/rom-migrator) common APIs for database migrations
104
111
 
105
112
  ## Adapters
106
113
 
107
- * [rom-sql](https://github.com/rom-rb/rom-sql) (supported URI schemes: ado amalgalite cubrid db2 dbi do fdbsql firebird ibmdb informix jdbc mysql mysql2 odbc openbase oracle postgres sqlanywhere sqlite swift tinytds)
114
+ * [rom-sql](https://github.com/rom-rb/rom-sql)
108
115
  * [rom-yesql](https://github.com/rom-rb/rom-yesql)
116
+ * [rom-elasticsearch](https://github.com/rom-rb/rom-elasticsearch)
109
117
  * [rom-http](https://github.com/rom-rb/rom-http)
110
118
  * [rom-couchdb](https://github.com/rom-rb/rom-couchdb)
111
119
  * [rom-csv](https://github.com/rom-rb/rom-csv)
@@ -120,13 +128,9 @@ There are other gems within the rom ecosystem that you will find useful:
120
128
  * [rom-neo4j](https://github.com/rom-rb/rom-neo4j)
121
129
  * [rom-rethinkdb](https://github.com/rom-rb/rom-rethinkdb)
122
130
 
123
- See [issues](https://github.com/rom-rb/rom/issues?q=is%3Aopen+is%3Aissue+label%3Aadapter+label%3Afeature)
124
- for a list of adapters that are planned to be added soon.
125
-
126
131
  ## Framework integrations
127
132
 
128
133
  * [rom-rails](https://github.com/rom-rb/rom-rails)
129
- * [rom-roda](https://github.com/rom-rb/rom-roda)
130
134
 
131
135
  ## Community
132
136
 
data/lib/rom/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module ROM
2
- VERSION = '4.0.0.beta1'.freeze
2
+ VERSION = '4.0.0.beta2'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rom
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.0.beta1
4
+ version: 4.0.0.beta2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Piotr Solnica
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-06-30 00:00:00.000000000 Z
11
+ date: 2017-07-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rom-core