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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1760a38a874d4cac46e07b4fe51c57f74ac4f0a2
4
- data.tar.gz: bb94c00e8e67f6895eb2202a2b828647691a6c46
3
+ metadata.gz: e2869808e2916f27b85168ee9abfaa5a18fe39d7
4
+ data.tar.gz: 98ea80413b718cb71471138134038748d95431f6
5
5
  SHA512:
6
- metadata.gz: 6d0e22e9cb55af101a0f235e2ff6a93f8cbcae15d9595e38c9f1d0c9f605de43baa808a3a6da324e396ff8592fcb71b2c8a4b9d8cb870b6bcab07cd3289acb43
7
- data.tar.gz: a54f0f7790d45b98ee9621ddc35c8d137a68a76858a8a54c9f0d67ffc555e057af210d3e5aac2d426a40741811903f2f4fe449cd8a3532a2c5ae362401c0ba40
6
+ metadata.gz: 624ea9fa373d690d0f911ab89879e03658875bb5416447829be8be4976a1a0bf74df149ea1d430934c7205ae3041517c7c0423cbc19b5b6c7449446aeada1230
7
+ data.tar.gz: 543d27b8d47f07620b473294312be802bb8b3f1edba60a279ede195e7856119d40ca3cc9d3caa64a12f64b48826d0112e9f2ffd53d2be210ec4a53eddb17da67
@@ -1,3 +1,3 @@
1
1
  module LittleBoxes
2
- VERSION = "0.5.0"
2
+ VERSION = "0.5.1"
3
3
  end
@@ -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.description = File.read('README.md').split("\n").reject{|l| l.length == 0 || l =~ /^[#=]+/ }.first
14
- spec.summary = spec.description
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 = "Copyright"
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.0
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: "[![Gem Version](https://badge.fury.io/rb/little_boxes.svg)](http://badge.fury.io/rb/little_boxes)"
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
- - Copyright
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: "[![Gem Version](https://badge.fury.io/rb/little_boxes.svg)](http://badge.fury.io/rb/little_boxes)"
103
+ summary: Dependency injection library in Ruby.
102
104
  test_files:
103
105
  - spec/benchmarks_spec.rb
104
106
  - spec/docs/readme_spec.rb