jive-tile 0.0.1 → 0.0.2

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: a8c1ae0eea146652f75fdb34cec013a426c0bf66
4
- data.tar.gz: a705b3c544be25aec9ab421fc9744c6d53e5393f
3
+ metadata.gz: 8b2c509a80b478ad296117b82de5f1b06705162b
4
+ data.tar.gz: 13ddeea69787b113699160ae572ba8ad5cde6ca1
5
5
  SHA512:
6
- metadata.gz: 9d2dff0342b17e0ecf802d6e17373068e9732b0f6e27ef7e801320389e713831cdbd4a07d0ab6e6d1d4cc0a40d1651de7b51cfd6f8d65ee5ecebc0c8ab91da58
7
- data.tar.gz: 366f29cb267611c89621fe6f7d12c17e4485595792b226bc590649a23e2faf1622272276d8929bf775bba4d90344ae179895ef097eba3576e46f2a5bcd848e77
6
+ metadata.gz: 5703006d2e206cc1c0eb42f0ee750cdd5cda56bd57dada368cac99f7e4b0c6931f0838c76268605d2ac6bb0e303b3ef8aa2ffd5f19e8d8bd2947ec99614299c0
7
+ data.tar.gz: 071fba9edcc61f7bbc2992f46c8cceba06969ebefc8a0f439dd7020dad07cd0b39d85b2baedfa69da84ad5f943c5aec2c20f801da527f4446e4a887327a1d755
data/.travis.yml CHANGED
@@ -2,5 +2,4 @@ language: ruby
2
2
  rvm:
3
3
  - 2.1.1
4
4
  - 2.0.0
5
- - 1.9.3
6
5
  script: bundle exec rspec
data/README.md CHANGED
@@ -24,6 +24,7 @@ Or install it yourself as:
24
24
  then run
25
25
 
26
26
  ```ruby
27
+ rails generate jive:add_on:active_record
27
28
  rails generate jive:tile:active_record
28
29
  ```
29
30
 
@@ -2,15 +2,22 @@ class AddJiveTiles010Migration < ActiveRecord::Migration
2
2
  def self.up
3
3
  create_table :jive_tiles do |t|
4
4
  t.integer :jive_add_on_id
5
- t.string :guid
6
- t.string :remote_id
5
+
6
+ t.string :code
7
7
  t.text :config
8
- t.string :name
8
+ t.string :guid
9
9
  t.string :jive_url
10
+ t.string :name
11
+ t.string :parent
12
+ t.string :place_uri
10
13
  t.string :tenant_id
14
+ t.string :url
15
+
16
+ t.string :remote_id
11
17
  t.string :push_url
12
- t.string :code
18
+
13
19
  t.integer :jive_tiles_oauth_token_id
20
+ t.boolean :uninstalled
14
21
 
15
22
  t.timestamps null: false
16
23
  end
@@ -3,6 +3,7 @@ module Jive
3
3
  class Model < ActiveRecord::Base
4
4
  belongs_to :add_on, :class_name => "Jive::AddOn::Model"
5
5
  self.table_name = :jive_tiles
6
+ serialize :config, Hash
6
7
  end
7
8
  end
8
- end
9
+ end
@@ -1,5 +1,5 @@
1
1
  module Jive
2
2
  module Tile
3
- VERSION = "0.0.1"
3
+ VERSION = "0.0.2"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jive-tile
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Butch Marshall
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-01-02 00:00:00.000000000 Z
11
+ date: 2016-01-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord
@@ -190,7 +190,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
190
190
  version: '0'
191
191
  requirements: []
192
192
  rubyforge_project:
193
- rubygems_version: 2.4.8
193
+ rubygems_version: 2.4.6
194
194
  signing_key:
195
195
  specification_version: 4
196
196
  summary: Jive Tile functionality implemented using ActiveRecord.