safer_bus_api 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 +4 -4
- data/init.rb +2 -0
- data/lib/safer_base_api.rb +3 -1
- data/lib/safer_bus_api/version.rb +1 -1
- data/safer_bus_api.gemspec +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 706b948849669706728ee7764f5729610d0d55ce
|
|
4
|
+
data.tar.gz: a4f196eaf14ab4d67c4786265a35e7c10d8346e2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b85d8d50d9127bc29fa9c41dee520592b7e64ec431a650efc0b6bc9b8d4de8299325428e1e311ebb2ecbc3fcbeaafe99d9c875917243485eacb8cfe925ae95a9
|
|
7
|
+
data.tar.gz: 730249f6751b03c7c9fdec72c760e5070ff42ece9084200311dd80ed4285996654c43903e285ec7e98ce09f1f413ed403b08aa894617d91f73c7f0258403205c
|
data/init.rb
ADDED
data/lib/safer_base_api.rb
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
|
-
|
|
1
|
+
$:.unshift File.dirname(__FILE__)
|
|
2
|
+
|
|
2
3
|
require 'safer_bus_api/version'
|
|
3
4
|
require 'safer_bus_api/configuration'
|
|
4
5
|
require 'safer_bus_api/query'
|
|
5
6
|
require 'safer_bus_api/request'
|
|
6
7
|
require 'safer_bus_api/response'
|
|
7
8
|
|
|
9
|
+
|
|
8
10
|
module SaferBusApi
|
|
9
11
|
def configure
|
|
10
12
|
yield SaferBusApi::Configuration
|
data/safer_bus_api.gemspec
CHANGED
|
@@ -12,7 +12,7 @@ Gem::Specification.new do |gem|
|
|
|
12
12
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
|
13
13
|
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
|
14
14
|
gem.name = "safer_bus_api"
|
|
15
|
-
gem.
|
|
15
|
+
gem.require_path = 'lib'
|
|
16
16
|
gem.version = SaferBusApi::VERSION
|
|
17
17
|
gem.license = 'MIT'
|
|
18
18
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: safer_bus_api
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nathan Bertram
|
|
@@ -48,6 +48,7 @@ extra_rdoc_files: []
|
|
|
48
48
|
files:
|
|
49
49
|
- MIT-LICENSE
|
|
50
50
|
- README.md
|
|
51
|
+
- init.rb
|
|
51
52
|
- lib/safer_base_api.rb
|
|
52
53
|
- lib/safer_bus_api/configuration.rb
|
|
53
54
|
- lib/safer_bus_api/query.rb
|