HasRemote 0.1.2 → 0.1.3

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/HasRemote.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{HasRemote}
8
- s.version = "0.1.2"
8
+ s.version = "0.1.3"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Sjoerd Andringa"]
@@ -24,9 +24,9 @@ Gem::Specification.new do |s|
24
24
  "Rakefile",
25
25
  "TODO",
26
26
  "VERSION",
27
+ "generators/has_remote_migration/has_remote_migration_generator.rb",
28
+ "generators/has_remote_migration/templates/create_has_remote_synchronizations.erb",
27
29
  "init.rb",
28
- "lib/generators/has_remote_migration/has_remote_migration_generator.rb",
29
- "lib/generators/has_remote_migration/templates/create_has_remote_synchronizations.erb",
30
30
  "lib/has_remote.rb",
31
31
  "lib/has_remote/synchronizable.rb",
32
32
  "lib/has_remote/synchronization.rb",
data/README.rdoc CHANGED
@@ -9,6 +9,10 @@ As a gem; Add the following to <tt>config/environment.rb</tt>:
9
9
 
10
10
  config.gem 'HasRemote', :lib => 'has_remote', :version => ">= 0.1.1"
11
11
 
12
+ Require the rake tasks from your application's <tt>Rakefile</tt> (only if installed as a gem):
13
+
14
+ require 'has_remote/tasks'
15
+
12
16
  As a plugin; Run:
13
17
 
14
18
  script/plugin install git://github.com/innovationfactory/has_remote.git
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.2
1
+ 0.1.3
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: HasRemote
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sjoerd Andringa
@@ -30,9 +30,9 @@ files:
30
30
  - Rakefile
31
31
  - TODO
32
32
  - VERSION
33
+ - generators/has_remote_migration/has_remote_migration_generator.rb
34
+ - generators/has_remote_migration/templates/create_has_remote_synchronizations.erb
33
35
  - init.rb
34
- - lib/generators/has_remote_migration/has_remote_migration_generator.rb
35
- - lib/generators/has_remote_migration/templates/create_has_remote_synchronizations.erb
36
36
  - lib/has_remote.rb
37
37
  - lib/has_remote/synchronizable.rb
38
38
  - lib/has_remote/synchronization.rb