social_stream 0.12.5 → 0.12.6

Sign up to get free protection for your applications and to get access to all the features.
@@ -3,22 +3,22 @@ class AddMoreFieldsToEvents < ActiveRecord::Migration
3
3
  add_column :events, :description, :string
4
4
  add_column :events, :place, :string
5
5
  add_column :events, :isabel_event, :string
6
- add_column :events, :machine_id, :int
6
+ add_column :events, :machine_id, :integer
7
7
  add_column :events, :repeat, :string
8
- add_column :events, :at_job, :int
9
- add_column :events, :parent_id, :int
10
- add_column :events, :character, :int
11
- add_column :events, :public_read, :int
12
- add_column :events, :marte_event, :int
13
- add_column :events, :marte_room, :int
14
- add_column :events, :spam, :int
15
- add_column :events, :notes, :int
8
+ add_column :events, :at_job, :integer
9
+ add_column :events, :parent_id, :integer
10
+ add_column :events, :character, :integer
11
+ add_column :events, :public_read, :integer
12
+ add_column :events, :marte_event, :integer
13
+ add_column :events, :marte_room, :integer
14
+ add_column :events, :spam, :integer
15
+ add_column :events, :notes, :integer
16
16
  add_column :events, :location, :text
17
17
  add_column :events, :streamming_url, :text
18
18
  add_column :events, :permalink, :string
19
- add_column :events, :cm_event_id, :int
20
- add_column :events, :vc_mode, :int
19
+ add_column :events, :cm_event_id, :integer
20
+ add_column :events, :vc_mode, :integer
21
21
  add_column :events, :other_participation_url, :text
22
- add_column :events, :web_interface, :int
22
+ add_column :events, :web_interface, :integer
23
23
  end
24
- end
24
+ end
@@ -5,9 +5,9 @@ class AddMoreFieldsToSessions < ActiveRecord::Migration
5
5
  add_column :sessions, :embedded_video, :text
6
6
  add_column :sessions, :video_thumbnail, :text
7
7
  add_column :sessions, :uid, :text
8
- add_column :sessions, :cm_session_id, :int
9
- add_column :sessions, :cm_streaming, :int, :default => false
10
- add_column :sessions, :cm_recording, :int, :default => false
8
+ add_column :sessions, :cm_session_id, :integer
9
+ add_column :sessions, :cm_streaming, :boolean, :default => false
10
+ add_column :sessions, :cm_recording, :boolean, :default => false
11
11
  end
12
12
 
13
13
  end
@@ -5,9 +5,9 @@ class AddDetailsToEvents < ActiveRecord::Migration
5
5
  remove_column :events, :spam
6
6
  remove_column :events, :vc_mode
7
7
  remove_column :events, :web_interface
8
- add_column :events, :marte_event, :int, :default => false
9
- add_column :events, :spam, :int, :default => false
10
- add_column :events, :vc_mode, :int , :default => 0
8
+ add_column :events, :marte_event, :boolean, :default => false
9
+ add_column :events, :spam, :boolean, :default => false
10
+ add_column :events, :vc_mode, :integer , :default => 0
11
11
  add_column :events, :web_interface, :string, :default => false
12
12
  add_column :events, :isabel_interface, :string, :default => false
13
13
  add_column :events, :sip_interface, :string, :default => false
@@ -41,4 +41,4 @@ class AddDetailsToEvents < ActiveRecord::Migration
41
41
  =end
42
42
  end
43
43
 
44
- end
44
+ end
@@ -1,5 +1,5 @@
1
1
  module SocialStream
2
2
  module Events
3
- VERSION = "0.0.18".freeze
3
+ VERSION = "0.0.19".freeze
4
4
  end
5
5
  end
@@ -1,3 +1,3 @@
1
1
  module SocialStream
2
- VERSION = "0.12.5".freeze
2
+ VERSION = "0.12.6".freeze
3
3
  end
@@ -13,7 +13,7 @@ Gem::Specification.new do |s|
13
13
  # Gem dependencies
14
14
  s.add_runtime_dependency('social_stream-base', '~> 0.9.28')
15
15
  s.add_runtime_dependency('social_stream-documents', '~> 0.4.4')
16
- s.add_runtime_dependency('social_stream-events', '~> 0.0.18')
16
+ s.add_runtime_dependency('social_stream-events', '~> 0.0.19')
17
17
 
18
18
  # Development Gem dependencies
19
19
  #
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: social_stream
3
3
  version: !ruby/object:Gem::Version
4
- hash: 37
4
+ hash: 35
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 12
9
- - 5
10
- version: 0.12.5
9
+ - 6
10
+ version: 0.12.6
11
11
  platform: ruby
12
12
  authors:
13
13
  - GING - DIT - UPM
@@ -59,12 +59,12 @@ dependencies:
59
59
  requirements:
60
60
  - - ~>
61
61
  - !ruby/object:Gem::Version
62
- hash: 59
62
+ hash: 57
63
63
  segments:
64
64
  - 0
65
65
  - 0
66
- - 18
67
- version: 0.0.18
66
+ - 19
67
+ version: 0.0.19
68
68
  type: :runtime
69
69
  version_requirements: *id003
70
70
  - !ruby/object:Gem::Dependency