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.
- data/events/db/migrate/20111102145626_add_more_fields_to_events.rb +13 -13
- data/events/db/migrate/20111104165944_add_more_fields_to_sessions.rb +3 -3
- data/events/db/migrate/20111104182420_add_details_to_events.rb +4 -4
- data/events/lib/social_stream/events/version.rb +1 -1
- data/lib/social_stream/version.rb +1 -1
- data/social_stream.gemspec +1 -1
- metadata +6 -6
@@ -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, :
|
6
|
+
add_column :events, :machine_id, :integer
|
7
7
|
add_column :events, :repeat, :string
|
8
|
-
add_column :events, :at_job, :
|
9
|
-
add_column :events, :parent_id, :
|
10
|
-
add_column :events, :character, :
|
11
|
-
add_column :events, :public_read, :
|
12
|
-
add_column :events, :marte_event, :
|
13
|
-
add_column :events, :marte_room, :
|
14
|
-
add_column :events, :spam, :
|
15
|
-
add_column :events, :notes, :
|
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, :
|
20
|
-
add_column :events, :vc_mode, :
|
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, :
|
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, :
|
9
|
-
add_column :sessions, :cm_streaming, :
|
10
|
-
add_column :sessions, :cm_recording, :
|
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, :
|
9
|
-
add_column :events, :spam, :
|
10
|
-
add_column :events, :vc_mode, :
|
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
|
data/social_stream.gemspec
CHANGED
@@ -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.
|
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:
|
4
|
+
hash: 35
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 12
|
9
|
-
-
|
10
|
-
version: 0.12.
|
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:
|
62
|
+
hash: 57
|
63
63
|
segments:
|
64
64
|
- 0
|
65
65
|
- 0
|
66
|
-
-
|
67
|
-
version: 0.0.
|
66
|
+
- 19
|
67
|
+
version: 0.0.19
|
68
68
|
type: :runtime
|
69
69
|
version_requirements: *id003
|
70
70
|
- !ruby/object:Gem::Dependency
|