jive-tile 0.0.1 → 0.0.2
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.
- checksums.yaml +4 -4
- data/.travis.yml +0 -1
- data/README.md +1 -0
- data/lib/generators/jive/tile/templates/migration_0.1.0.rb +11 -4
- data/lib/jive/tile/model.rb +2 -1
- data/lib/jive/tile/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8b2c509a80b478ad296117b82de5f1b06705162b
|
|
4
|
+
data.tar.gz: 13ddeea69787b113699160ae572ba8ad5cde6ca1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5703006d2e206cc1c0eb42f0ee750cdd5cda56bd57dada368cac99f7e4b0c6931f0838c76268605d2ac6bb0e303b3ef8aa2ffd5f19e8d8bd2947ec99614299c0
|
|
7
|
+
data.tar.gz: 071fba9edcc61f7bbc2992f46c8cceba06969ebefc8a0f439dd7020dad07cd0b39d85b2baedfa69da84ad5f943c5aec2c20f801da527f4446e4a887327a1d755
|
data/.travis.yml
CHANGED
data/README.md
CHANGED
|
@@ -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
|
-
|
|
6
|
-
t.string :
|
|
5
|
+
|
|
6
|
+
t.string :code
|
|
7
7
|
t.text :config
|
|
8
|
-
t.string :
|
|
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
|
-
|
|
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
|
data/lib/jive/tile/model.rb
CHANGED
data/lib/jive/tile/version.rb
CHANGED
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.
|
|
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-
|
|
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.
|
|
193
|
+
rubygems_version: 2.4.6
|
|
194
194
|
signing_key:
|
|
195
195
|
specification_version: 4
|
|
196
196
|
summary: Jive Tile functionality implemented using ActiveRecord.
|