synchronisable 0.0.6 → 0.0.7

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6de60703f28fbed5c2a30a924474691bf98c489e
4
- data.tar.gz: f5da8cda6005fa932be6ce2a9ecc8eb6a7973053
3
+ metadata.gz: 1d41bb1595c84099a4d299bfbb3306ea556b8c5d
4
+ data.tar.gz: 6dee577d7397e314d4371a45d0121367b2986316
5
5
  SHA512:
6
- metadata.gz: 485bd2ca85dcf24fc9ff56cec0442498bfe62cfd523cc220cd2a319fb0d5cde49b574f3e3666af35e126528a46774364a967d0d0e232c8d42f13a3b7687f8c4b
7
- data.tar.gz: 68d4ff7a28e5b2952b072cf5bbfa1f8d66c124b8c5bf365f8b958968cd390c48632fbbb54793035ede94e4e061519bbb79ca0519ee63dfd6873e3d3a3bfec14f
6
+ metadata.gz: 1aae6aec66927a5b27f7715ddd3521a11ed28e9e513ff7bae543fa52715c2fde8a2330db53459792b776fb038755dca0fd45c0d5dd11d2da0d2db7e27fc9b8c5
7
+ data.tar.gz: dbe100dfc7099a2d6ab51c063a5be8330a3774287653508721e9df8c7b02e54ee63bd0af9e748d8f402788eafb3e69520736c41d2fc83f7ca1fc2178f5f09755
data/.gitignore CHANGED
@@ -18,3 +18,4 @@ tmp
18
18
  .tags
19
19
  .tags_sorted_by_file
20
20
  tags
21
+ bin/
@@ -2,7 +2,7 @@ module Synchronisable
2
2
  module VERSION
3
3
  MAJOR = 0
4
4
  MINOR = 0
5
- PATCH = 6
5
+ PATCH = 7
6
6
  SUFFIX = nil
7
7
 
8
8
  STRING = [MAJOR, MINOR, PATCH, SUFFIX].compact.join('.')
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: synchronisable
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 0.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vasiliy Yorkin
@@ -280,10 +280,7 @@ description: Provides base fuctionality (models, DSL) for AR synchronization wit
280
280
  external resources (apis, services etc)
281
281
  email:
282
282
  - vasiliy.yorkin@gmail.com
283
- executables:
284
- - autospec
285
- - rake
286
- - rspec
283
+ executables: []
287
284
  extensions: []
288
285
  extra_rdoc_files: []
289
286
  files:
@@ -298,9 +295,6 @@ files:
298
295
  - README.md
299
296
  - Rakefile
300
297
  - TODO.md
301
- - bin/autospec
302
- - bin/rake
303
- - bin/rspec
304
298
  - lib/generators/synchronisable/USAGE
305
299
  - lib/generators/synchronisable/install_generator.rb
306
300
  - lib/generators/synchronisable/templates/create_imports_migration.rb
@@ -1,16 +0,0 @@
1
- #!/usr/bin/env ruby
2
- #
3
- # This file was generated by Bundler.
4
- #
5
- # The application 'autospec' is installed as part of a gem, and
6
- # this file is here to facilitate running it.
7
- #
8
-
9
- require 'pathname'
10
- ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
- Pathname.new(__FILE__).realpath)
12
-
13
- require 'rubygems'
14
- require 'bundler/setup'
15
-
16
- load Gem.bin_path('rspec-core', 'autospec')
data/bin/rake DELETED
@@ -1,16 +0,0 @@
1
- #!/usr/bin/env ruby
2
- #
3
- # This file was generated by Bundler.
4
- #
5
- # The application 'rake' is installed as part of a gem, and
6
- # this file is here to facilitate running it.
7
- #
8
-
9
- require 'pathname'
10
- ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
- Pathname.new(__FILE__).realpath)
12
-
13
- require 'rubygems'
14
- require 'bundler/setup'
15
-
16
- load Gem.bin_path('rake', 'rake')
data/bin/rspec DELETED
@@ -1,16 +0,0 @@
1
- #!/usr/bin/env ruby
2
- #
3
- # This file was generated by Bundler.
4
- #
5
- # The application 'rspec' is installed as part of a gem, and
6
- # this file is here to facilitate running it.
7
- #
8
-
9
- require 'pathname'
10
- ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
- Pathname.new(__FILE__).realpath)
12
-
13
- require 'rubygems'
14
- require 'bundler/setup'
15
-
16
- load Gem.bin_path('rspec-core', 'rspec')