neography-batch 1.0.1 → 1.0.2

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.
@@ -1,5 +1,5 @@
1
1
  module Neography
2
- module Batch
2
+ module Composable
3
3
  class Batch
4
4
  private
5
5
  def initialize(graph_db = Neography::Rest.new, commands = [])
@@ -1,5 +1,5 @@
1
1
  module Neography
2
- module Batch
2
+ module Composable
3
3
  class BatchReference
4
4
  def initialize(command)
5
5
  @command = command
@@ -1,3 +1,3 @@
1
1
  require 'neography'
2
2
  require_relative '../lib/neography-batch/batch'
3
- require_relative '../lib/neography-batch/batch_reference'
3
+ require_relative '../lib/neography-batch/batch_reference'
@@ -3,7 +3,7 @@ $:.push File.expand_path("../lib", __FILE__)
3
3
 
4
4
  Gem::Specification.new do |s|
5
5
  s.name = "neography-batch"
6
- s.version = "1.0.1"
6
+ s.version = "1.0.2"
7
7
  s.platform = Gem::Platform::RUBY
8
8
  s.authors = "Jorg Jenni"
9
9
  s.email = "jorg.jenni@jennius.co.uk"
data/publish.sh ADDED
@@ -0,0 +1,3 @@
1
+ gem build neography-batch.gemspec
2
+ gem push neography-batch-*.gem
3
+ rm neography-batch-*.gem
@@ -1,7 +1,7 @@
1
1
  require "spec_helper"
2
2
 
3
3
  module Neography
4
- module Batch
4
+ module Composable
5
5
  describe BatchReference do
6
6
  describe "==" do
7
7
  specify do
data/spec/batch_spec.rb CHANGED
@@ -2,7 +2,7 @@ require_relative 'spec_helper'
2
2
 
3
3
 
4
4
  module Neography
5
- module Batch
5
+ module Composable
6
6
  describe Batch do
7
7
 
8
8
  def create_batches(command1, command2, command3)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: neography-batch
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -75,6 +75,7 @@ files:
75
75
  - lib/neography-batch/batch.rb
76
76
  - lib/neography-batch/batch_reference.rb
77
77
  - neography-batch.gemspec
78
+ - publish.sh
78
79
  - spec/batch_reference_spec.rb
79
80
  - spec/batch_spec.rb
80
81
  - spec/spec_helper.rb