adavidev_batch_api 0.2.1.pre.2 → 0.2.1

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: 7534a2af10be012a0af6a393d7db504bfed9b153
4
- data.tar.gz: a13259fc6a2eaf65e1afc01c13862eae54762bf0
3
+ metadata.gz: d15eec7fbe80d931f7299791d4c4b55db1125568
4
+ data.tar.gz: 8f05c25ee934667c31435da000b2c4b8ea7da3a6
5
5
  SHA512:
6
- metadata.gz: 3c6924ef94af17cb2310251ebab090a9098eaa525154348771aef0a67a7edf11c3b5d0361d8919daabe5147ca7a2d6e3fe454fb13a4ebfb141aba2dcb1c11bd6
7
- data.tar.gz: c0d80c55b7a5560fc3be70cffd2174ef576a09deb9441eddec5ab229fb3f5fbb9a37fba26690964616dfb9fb9be2d5a17b51488983d2e9c75260ae957813a156
6
+ metadata.gz: 9cbef40498bfb7ce661022b8966ac0c518134ca9e7735a2d7e1c80da1ebf8ea1b3a9d1dfe4d39ac8ad6c9c3d3821f9462a2d236e13ee5625b162ca692a445acd
7
+ data.tar.gz: f249e246d8b4ea143f6754627f5fe0261cffa9b73977bd00384fc5d1ea92f2f6d6145cc4de600c18cde7e0861af9bf0bf549eafee49b3a1c7043d4ab6d27646b
@@ -1,3 +1,3 @@
1
1
  module BatchApi
2
- VERSION = "0.2.1-2"
2
+ VERSION = "0.2.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: adavidev_batch_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1.pre.2
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alex Koppel
@@ -105,7 +105,6 @@ files:
105
105
  - MIT-LICENSE
106
106
  - Rakefile
107
107
  - changelog.md
108
- - lib/adavidev_batch_api.rb
109
108
  - lib/batch_api.rb
110
109
  - lib/batch_api/batch_error.rb
111
110
  - lib/batch_api/configuration.rb
@@ -195,9 +194,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
195
194
  version: '0'
196
195
  required_rubygems_version: !ruby/object:Gem::Requirement
197
196
  requirements:
198
- - - ">"
197
+ - - ">="
199
198
  - !ruby/object:Gem::Version
200
- version: 1.3.1
199
+ version: '0'
201
200
  requirements: []
202
201
  rubyforge_project:
203
202
  rubygems_version: 2.4.1
@@ -1,28 +0,0 @@
1
- require 'batch_api/configuration'
2
- require 'batch_api/version'
3
- require 'batch_api/utils'
4
- require 'batch_api/processor'
5
-
6
- require 'batch_api/internal_middleware'
7
- require 'batch_api/rack_middleware'
8
-
9
- require 'batch_api/error_wrapper'
10
- require 'batch_api/batch_error'
11
-
12
- module BatchApi
13
-
14
- # Public: access the main Batch API configuration object.
15
- #
16
- # Returns a BatchApi::Configuration instance
17
- def self.config
18
- @config ||= Configuration.new
19
- end
20
-
21
- # Public: are we in Rails? This partly exists just so that you
22
- # can stub it in the tests.
23
- #
24
- # Returns true if Rails is a defined constant, false otherwise.
25
- def self.rails?
26
- defined?(Rails)
27
- end
28
- end