little_boxes 0.5.0 → 0.5.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 +4 -4
- data/lib/little_boxes/version.rb +1 -1
- data/little_boxes.gemspec +4 -4
- metadata +10 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e2869808e2916f27b85168ee9abfaa5a18fe39d7
|
|
4
|
+
data.tar.gz: 98ea80413b718cb71471138134038748d95431f6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 624ea9fa373d690d0f911ab89879e03658875bb5416447829be8be4976a1a0bf74df149ea1d430934c7205ae3041517c7c0423cbc19b5b6c7449446aeada1230
|
|
7
|
+
data.tar.gz: 543d27b8d47f07620b473294312be802bb8b3f1edba60a279ede195e7856119d40ca3cc9d3caa64a12f64b48826d0112e9f2ffd53d2be210ec4a53eddb17da67
|
data/lib/little_boxes/version.rb
CHANGED
data/little_boxes.gemspec
CHANGED
|
@@ -10,10 +10,10 @@ Gem::Specification.new do |spec|
|
|
|
10
10
|
spec.version = LittleBoxes::VERSION
|
|
11
11
|
spec.authors = ["Workshare's dev team"]
|
|
12
12
|
spec.email = ['_Development@workshare.com']
|
|
13
|
-
spec.
|
|
14
|
-
spec.
|
|
13
|
+
spec.summary = "Dependency injection library in Ruby."
|
|
14
|
+
spec.description = "LittleBoxes is a light library that provides a dependency tree that represents your application configuration. It automatically configures your dependencies and lazy-loads by default."
|
|
15
15
|
spec.homepage = "https://github.com/worshare/#{spec.name.gsub('_','-')}"
|
|
16
|
-
spec.license = "
|
|
16
|
+
spec.license = "MIT"
|
|
17
17
|
|
|
18
18
|
spec.files = `git ls-files`.split($/)
|
|
19
19
|
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
|
@@ -21,5 +21,5 @@ Gem::Specification.new do |spec|
|
|
|
21
21
|
spec.require_paths = ["lib"]
|
|
22
22
|
|
|
23
23
|
spec.add_development_dependency "bundler", "~> 1.3"
|
|
24
|
-
spec.add_development_dependency "rake"
|
|
24
|
+
spec.add_development_dependency "rake", "~> 12.0"
|
|
25
25
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: little_boxes
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.5.
|
|
4
|
+
version: 0.5.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Workshare's dev team
|
|
@@ -28,17 +28,19 @@ dependencies:
|
|
|
28
28
|
name: rake
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
30
30
|
requirements:
|
|
31
|
-
- - "
|
|
31
|
+
- - "~>"
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: '0'
|
|
33
|
+
version: '12.0'
|
|
34
34
|
type: :development
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
|
-
- - "
|
|
38
|
+
- - "~>"
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: '0'
|
|
41
|
-
description:
|
|
40
|
+
version: '12.0'
|
|
41
|
+
description: LittleBoxes is a light library that provides a dependency tree that represents
|
|
42
|
+
your application configuration. It automatically configures your dependencies and
|
|
43
|
+
lazy-loads by default.
|
|
42
44
|
email:
|
|
43
45
|
- _Development@workshare.com
|
|
44
46
|
executables: []
|
|
@@ -77,7 +79,7 @@ files:
|
|
|
77
79
|
- tmp/.gitkeep
|
|
78
80
|
homepage: https://github.com/worshare/little-boxes
|
|
79
81
|
licenses:
|
|
80
|
-
-
|
|
82
|
+
- MIT
|
|
81
83
|
metadata: {}
|
|
82
84
|
post_install_message:
|
|
83
85
|
rdoc_options: []
|
|
@@ -98,7 +100,7 @@ rubyforge_project:
|
|
|
98
100
|
rubygems_version: 2.2.2
|
|
99
101
|
signing_key:
|
|
100
102
|
specification_version: 4
|
|
101
|
-
summary:
|
|
103
|
+
summary: Dependency injection library in Ruby.
|
|
102
104
|
test_files:
|
|
103
105
|
- spec/benchmarks_spec.rb
|
|
104
106
|
- spec/docs/readme_spec.rb
|