orientea 0.1.2 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c2ea34a18705679e0d4e2500397f3026c54ebbf6
4
- data.tar.gz: 57d9957dd68f2da1614d594494b0b6dda326ce2e
3
+ metadata.gz: 0f7444f330d643a8ff54e89832df7875d267752a
4
+ data.tar.gz: e305376f6c3eb7e9ba3c854dffa29d843b3d0be8
5
5
  SHA512:
6
- metadata.gz: 8abe4ff817513dcdc144015e30748afdc2878f4aa421476d98cd2caf1d06a2edc2a0fd723f93286d0748aa5bf75ac95f6bda6f1c34ced161f531a4079aa6cf6b
7
- data.tar.gz: 868da415df5610321d5f30e01ce2bec0a3292abaf9658a45ae9f8c80bc915a263ad4cfb9369c4e90b135fc339b7048a6fed84fd00265c56f7a9c462669b034b1
6
+ metadata.gz: 5a12228ac3067c0d500e5e66d7799101c6f29ea66754c29afba79d7d6d73b88866eb16c63b95f4dd3c594f828646ced4b715a4d7df3e8fbb2d8965ccb6b17a8a
7
+ data.tar.gz: 06c561db68f82b720d8849876758ca49c68970633a3e6064ef5554b7a8ab790775d9fb4e95c20ad6983a267a9aeb8198353ee654c5d692aca25c59aa57318168
data/README.md CHANGED
@@ -6,6 +6,14 @@ You can store the command object , perform it by action method , or undo it by u
6
6
 
7
7
  Note: this gem use postgresql with hstore extension.
8
8
 
9
+ ## INSTALL:
10
+
11
+ ```
12
+ gem install 'orientea'
13
+ ```
14
+
15
+ ## USAGE:
16
+
9
17
  ```ruby
10
18
  @record = Record.new
11
19
  reate_command = Orientea::CreatingCommand.build(@record) # would build and save the command
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.2
1
+ 0.1.3
@@ -0,0 +1,7 @@
1
+ class CreateOrienteaCommand < ActiveRecord::Migration
2
+ create_table :orientea_commands do |t|
3
+ t.hstore :data
4
+ t.boolean :done
5
+ t.string :type
6
+ end
7
+ end
data/orientea.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "orientea"
8
- s.version = "0.1.2"
8
+ s.version = "0.1.3"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Vincent Zhu"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: orientea
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vincent Zhu