communicator 0.1.3 → 0.1.4
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.
- data/VERSION +1 -1
- data/communicator.gemspec +1 -1
- data/lib/communicator/tasks.rb +7 -0
- metadata +3 -3
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.4
|
data/communicator.gemspec
CHANGED
data/lib/communicator/tasks.rb
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
# Rake tasks for the communicator gem.
|
|
1
2
|
namespace :communicator do
|
|
2
3
|
desc "Copies all communicator gem migrations to your rails app"
|
|
3
4
|
task :update_migrations do
|
|
@@ -13,4 +14,10 @@ namespace :communicator do
|
|
|
13
14
|
end
|
|
14
15
|
end
|
|
15
16
|
end
|
|
17
|
+
|
|
18
|
+
desc "Runs Communicator::Client.push and Communicator::Client.pull in current Rails.env"
|
|
19
|
+
task :communicate do
|
|
20
|
+
Communicator::Client.push
|
|
21
|
+
Communicator::Client.pull
|
|
22
|
+
end
|
|
16
23
|
end
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: communicator
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 19
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 1
|
|
9
|
-
-
|
|
10
|
-
version: 0.1.
|
|
9
|
+
- 4
|
|
10
|
+
version: 0.1.4
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Christoph Olszowka
|