nutella 0.11 → 0.11.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.
Files changed (46) hide show
  1. checksums.yaml +7 -0
  2. data/.rspec +0 -0
  3. data/LICENSE +0 -0
  4. data/README.md +2 -2
  5. data/Rakefile +0 -0
  6. data/lib/nutella/core_ext/enumerable/apply.rb +0 -0
  7. data/lib/nutella/core_ext/enumerable/group.rb +0 -0
  8. data/lib/nutella/core_ext/enumerable/map.rb +0 -0
  9. data/lib/nutella/core_ext/enumerable/search.rb +0 -0
  10. data/lib/nutella/core_ext/enumerable/sum.rb +0 -0
  11. data/lib/nutella/core_ext/enumerable.rb +0 -0
  12. data/lib/nutella/core_ext/file.rb +0 -0
  13. data/lib/nutella/core_ext/hash.rb +0 -0
  14. data/lib/nutella/core_ext/integer/digits.rb +0 -0
  15. data/lib/nutella/core_ext/integer/format.rb +0 -0
  16. data/lib/nutella/core_ext/integer/multiples.rb +0 -0
  17. data/lib/nutella/core_ext/integer.rb +0 -0
  18. data/lib/nutella/core_ext/numeric/bytes.rb +0 -0
  19. data/lib/nutella/core_ext/numeric/percent.rb +0 -0
  20. data/lib/nutella/core_ext/numeric/sanity_check.rb +0 -0
  21. data/lib/nutella/core_ext/numeric.rb +0 -0
  22. data/lib/nutella/core_ext/object/aliases.rb +0 -0
  23. data/lib/nutella/core_ext/object/blank.rb +0 -0
  24. data/lib/nutella/core_ext/object.rb +0 -0
  25. data/lib/nutella/core_ext/string/aliases.rb +0 -0
  26. data/lib/nutella/core_ext/string/colour.rb +0 -0
  27. data/lib/nutella/core_ext/string/exclude.rb +0 -0
  28. data/lib/nutella/core_ext/string/heredoc.rb +0 -0
  29. data/lib/nutella/core_ext/string.rb +0 -0
  30. data/lib/nutella/core_ext.rb +0 -0
  31. data/lib/nutella/input.rb +0 -0
  32. data/lib/nutella/version.rb +1 -1
  33. data/lib/nutella.rb +0 -0
  34. data/nutella.gemspec +2 -2
  35. data/spec/nutella/core_ext/enumerable_spec.rb +0 -0
  36. data/spec/nutella/core_ext/file_spec.rb +0 -0
  37. data/spec/nutella/core_ext/hash_spec.rb +0 -0
  38. data/spec/nutella/core_ext/integer_spec.rb +0 -0
  39. data/spec/nutella/core_ext/numeric_spec.rb +0 -0
  40. data/spec/nutella/core_ext/object_spec.rb +0 -0
  41. data/spec/nutella/core_ext/string_spec.rb +0 -0
  42. data/spec/spec_helper.rb +0 -0
  43. data/spec/support/alias.rb +0 -0
  44. data/spec/support/apply_tester.rb +0 -0
  45. data/spec/support/number_formats.rb +0 -0
  46. metadata +46 -60
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 2a987835f74115420358299ced5270af19f6f07d
4
+ data.tar.gz: edb583cff27a3152e6482bd88850a3bba3803dce
5
+ SHA512:
6
+ metadata.gz: 0435310cb4a5e2589766dd4cc2330409bc9dfaf9043b557df8dd8a49053523770af93fe800961b1fd785f7adeda115ff16034e3d969743342521985c771d69a9
7
+ data.tar.gz: fe0f174e16f1919b1e57ec5dbe0f4829b536b7ae489616a622dde02c56fba391b539a3f2f4fd03d3b53011efc9daea44f548d929c94501791e1dcf4ad9886b35
data/.rspec CHANGED
File without changes
data/LICENSE CHANGED
File without changes
data/README.md CHANGED
@@ -1,10 +1,10 @@
1
- # Nutella [![Build Status](https://secure.travis-ci.org/gbchaosmaster/nutella.png)](http://travis-ci.org/gbchaosmaster/nutella) [![Dependency Status](https://gemnasium.com/gbchaosmaster/nutella.png)](https://gemnasium.com/gbchaosmaster/nutella) [![Code Climate](https://codeclimate.com/badge.png)](https://codeclimate.com/github/gbchaosmaster/nutella)
1
+ # Nutella [![Build Status](https://secure.travis-ci.org/vinnydiehl/nutella.png)](http://travis-ci.org/vinnydiehl/nutella) [![Dependency Status](https://gemnasium.com/vinnydiehl/nutella.png)](https://gemnasium.com/vinnydiehl/nutella) [![Code Climate](https://codeclimate.com/badge.png)](https://codeclimate.com/github/vinnydiehl/nutella)
2
2
 
3
3
  This library is my personal collection of Ruby utilities, mainly core
4
4
  extensions.
5
5
 
6
6
  * [RubyGems Release Page](https://rubygems.org/gems/nutella)
7
- * [Documentation on RubyDoc](http://rubydoc.info/github/gbchaosmaster/nutella/master/frames)
7
+ * [Documentation on RubyDoc](http://rubydoc.info/github/vinnydiehl/nutella/master/frames)
8
8
 
9
9
  ## Installation
10
10
 
data/Rakefile CHANGED
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
data/lib/nutella/input.rb CHANGED
File without changes
@@ -1,4 +1,4 @@
1
1
  module Nutella
2
2
  # The current version of Nutella.
3
- VERSION = "0.11"
3
+ VERSION = "0.11.1"
4
4
  end
data/lib/nutella.rb CHANGED
File without changes
data/nutella.gemspec CHANGED
@@ -5,7 +5,7 @@ Gem::Specification.new do |gem|
5
5
  gem.version = Nutella::VERSION
6
6
 
7
7
  gem.author = "Vinny Diehl"
8
- gem.email = "gbchaosmaster926@gmail.com"
8
+ gem.email = "vinny.diehl@gmail.com"
9
9
  gem.homepage = "https://github.com/gbchaosmaster/nutella"
10
10
 
11
11
  gem.license = "MIT"
@@ -19,7 +19,7 @@ Gem::Specification.new do |gem|
19
19
  .rspec LICENSE Rakefile README.md nutella.gemspec
20
20
  ]
21
21
 
22
- gem.required_ruby_version = "~> 1.9"
22
+ gem.required_ruby_version = "~> 2.0"
23
23
  gem.add_development_dependency "fuubar", "~> 1.1"
24
24
  gem.add_development_dependency "rake", "~> 10.0"
25
25
  gem.add_development_dependency "redcarpet", "~> 2.2"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
data/spec/spec_helper.rb CHANGED
File without changes
File without changes
File without changes
File without changes
metadata CHANGED
@@ -1,20 +1,18 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nutella
3
3
  version: !ruby/object:Gem::Version
4
- version: '0.11'
5
- prerelease:
4
+ version: 0.11.1
6
5
  platform: ruby
7
6
  authors:
8
7
  - Vinny Diehl
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2012-12-07 00:00:00.000000000 Z
11
+ date: 2014-10-15 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: fuubar
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
17
  - - ~>
20
18
  - !ruby/object:Gem::Version
@@ -22,7 +20,6 @@ dependencies:
22
20
  type: :development
23
21
  prerelease: false
24
22
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
23
  requirements:
27
24
  - - ~>
28
25
  - !ruby/object:Gem::Version
@@ -30,7 +27,6 @@ dependencies:
30
27
  - !ruby/object:Gem::Dependency
31
28
  name: rake
32
29
  requirement: !ruby/object:Gem::Requirement
33
- none: false
34
30
  requirements:
35
31
  - - ~>
36
32
  - !ruby/object:Gem::Version
@@ -38,7 +34,6 @@ dependencies:
38
34
  type: :development
39
35
  prerelease: false
40
36
  version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
37
  requirements:
43
38
  - - ~>
44
39
  - !ruby/object:Gem::Version
@@ -46,7 +41,6 @@ dependencies:
46
41
  - !ruby/object:Gem::Dependency
47
42
  name: redcarpet
48
43
  requirement: !ruby/object:Gem::Requirement
49
- none: false
50
44
  requirements:
51
45
  - - ~>
52
46
  - !ruby/object:Gem::Version
@@ -54,7 +48,6 @@ dependencies:
54
48
  type: :development
55
49
  prerelease: false
56
50
  version_requirements: !ruby/object:Gem::Requirement
57
- none: false
58
51
  requirements:
59
52
  - - ~>
60
53
  - !ruby/object:Gem::Version
@@ -62,7 +55,6 @@ dependencies:
62
55
  - !ruby/object:Gem::Dependency
63
56
  name: rdoc
64
57
  requirement: !ruby/object:Gem::Requirement
65
- none: false
66
58
  requirements:
67
59
  - - ~>
68
60
  - !ruby/object:Gem::Version
@@ -70,7 +62,6 @@ dependencies:
70
62
  type: :development
71
63
  prerelease: false
72
64
  version_requirements: !ruby/object:Gem::Requirement
73
- none: false
74
65
  requirements:
75
66
  - - ~>
76
67
  - !ruby/object:Gem::Version
@@ -78,7 +69,6 @@ dependencies:
78
69
  - !ruby/object:Gem::Dependency
79
70
  name: rspec
80
71
  requirement: !ruby/object:Gem::Requirement
81
- none: false
82
72
  requirements:
83
73
  - - ~>
84
74
  - !ruby/object:Gem::Version
@@ -86,7 +76,6 @@ dependencies:
86
76
  type: :development
87
77
  prerelease: false
88
78
  version_requirements: !ruby/object:Gem::Requirement
89
- none: false
90
79
  requirements:
91
80
  - - ~>
92
81
  - !ruby/object:Gem::Version
@@ -94,7 +83,6 @@ dependencies:
94
83
  - !ruby/object:Gem::Dependency
95
84
  name: yard
96
85
  requirement: !ruby/object:Gem::Requirement
97
- none: false
98
86
  requirements:
99
87
  - - ~>
100
88
  - !ruby/object:Gem::Version
@@ -102,56 +90,55 @@ dependencies:
102
90
  type: :development
103
91
  prerelease: false
104
92
  version_requirements: !ruby/object:Gem::Requirement
105
- none: false
106
93
  requirements:
107
94
  - - ~>
108
95
  - !ruby/object:Gem::Version
109
96
  version: '0.8'
110
97
  description: My collection of Ruby utilities, mainly core extensions.
111
- email: gbchaosmaster926@gmail.com
98
+ email: vinny.diehl@gmail.com
112
99
  executables: []
113
100
  extensions: []
114
101
  extra_rdoc_files: []
115
102
  files:
116
- - lib/nutella/input.rb
103
+ - lib/nutella/core_ext.rb
117
104
  - lib/nutella/version.rb
118
- - lib/nutella/core_ext/string.rb
119
- - lib/nutella/core_ext/file.rb
120
- - lib/nutella/core_ext/object/aliases.rb
121
- - lib/nutella/core_ext/object/blank.rb
122
- - lib/nutella/core_ext/integer.rb
123
- - lib/nutella/core_ext/enumerable/map.rb
124
- - lib/nutella/core_ext/enumerable/group.rb
125
- - lib/nutella/core_ext/enumerable/apply.rb
126
- - lib/nutella/core_ext/enumerable/search.rb
127
- - lib/nutella/core_ext/enumerable/sum.rb
128
- - lib/nutella/core_ext/object.rb
129
- - lib/nutella/core_ext/numeric.rb
105
+ - lib/nutella/input.rb
130
106
  - lib/nutella/core_ext/enumerable.rb
131
- - lib/nutella/core_ext/hash.rb
132
- - lib/nutella/core_ext/string/heredoc.rb
133
- - lib/nutella/core_ext/string/aliases.rb
107
+ - lib/nutella/core_ext/string.rb
134
108
  - lib/nutella/core_ext/string/exclude.rb
135
109
  - lib/nutella/core_ext/string/colour.rb
136
- - lib/nutella/core_ext/numeric/percent.rb
137
- - lib/nutella/core_ext/numeric/bytes.rb
138
- - lib/nutella/core_ext/numeric/sanity_check.rb
110
+ - lib/nutella/core_ext/string/heredoc.rb
111
+ - lib/nutella/core_ext/string/aliases.rb
139
112
  - lib/nutella/core_ext/integer/multiples.rb
140
113
  - lib/nutella/core_ext/integer/format.rb
141
114
  - lib/nutella/core_ext/integer/digits.rb
142
- - lib/nutella/core_ext.rb
115
+ - lib/nutella/core_ext/integer.rb
116
+ - lib/nutella/core_ext/object/blank.rb
117
+ - lib/nutella/core_ext/object/aliases.rb
118
+ - lib/nutella/core_ext/hash.rb
119
+ - lib/nutella/core_ext/numeric.rb
120
+ - lib/nutella/core_ext/numeric/sanity_check.rb
121
+ - lib/nutella/core_ext/numeric/bytes.rb
122
+ - lib/nutella/core_ext/numeric/percent.rb
123
+ - lib/nutella/core_ext/object.rb
124
+ - lib/nutella/core_ext/file.rb
125
+ - lib/nutella/core_ext/enumerable/map.rb
126
+ - lib/nutella/core_ext/enumerable/apply.rb
127
+ - lib/nutella/core_ext/enumerable/sum.rb
128
+ - lib/nutella/core_ext/enumerable/search.rb
129
+ - lib/nutella/core_ext/enumerable/group.rb
143
130
  - lib/nutella.rb
144
- - spec/spec_helper.rb
145
- - spec/support/alias.rb
146
- - spec/support/apply_tester.rb
147
- - spec/support/number_formats.rb
148
- - spec/nutella/core_ext/integer_spec.rb
149
- - spec/nutella/core_ext/hash_spec.rb
150
- - spec/nutella/core_ext/object_spec.rb
151
- - spec/nutella/core_ext/string_spec.rb
152
131
  - spec/nutella/core_ext/file_spec.rb
153
- - spec/nutella/core_ext/numeric_spec.rb
132
+ - spec/nutella/core_ext/string_spec.rb
154
133
  - spec/nutella/core_ext/enumerable_spec.rb
134
+ - spec/nutella/core_ext/numeric_spec.rb
135
+ - spec/nutella/core_ext/hash_spec.rb
136
+ - spec/nutella/core_ext/integer_spec.rb
137
+ - spec/nutella/core_ext/object_spec.rb
138
+ - spec/support/alias.rb
139
+ - spec/support/number_formats.rb
140
+ - spec/support/apply_tester.rb
141
+ - spec/spec_helper.rb
155
142
  - .rspec
156
143
  - LICENSE
157
144
  - Rakefile
@@ -160,38 +147,37 @@ files:
160
147
  homepage: https://github.com/gbchaosmaster/nutella
161
148
  licenses:
162
149
  - MIT
150
+ metadata: {}
163
151
  post_install_message:
164
152
  rdoc_options: []
165
153
  require_paths:
166
154
  - lib
167
155
  required_ruby_version: !ruby/object:Gem::Requirement
168
- none: false
169
156
  requirements:
170
157
  - - ~>
171
158
  - !ruby/object:Gem::Version
172
- version: '1.9'
159
+ version: '2.0'
173
160
  required_rubygems_version: !ruby/object:Gem::Requirement
174
- none: false
175
161
  requirements:
176
- - - ! '>='
162
+ - - '>='
177
163
  - !ruby/object:Gem::Version
178
164
  version: '0'
179
165
  requirements: []
180
166
  rubyforge_project:
181
- rubygems_version: 1.8.24
167
+ rubygems_version: 2.0.14
182
168
  signing_key:
183
- specification_version: 3
169
+ specification_version: 4
184
170
  summary: Spread some Nutella on Ruby to sweeten up its functionality.
185
171
  test_files:
186
- - spec/spec_helper.rb
187
- - spec/support/alias.rb
188
- - spec/support/apply_tester.rb
189
- - spec/support/number_formats.rb
190
- - spec/nutella/core_ext/integer_spec.rb
191
- - spec/nutella/core_ext/hash_spec.rb
192
- - spec/nutella/core_ext/object_spec.rb
193
- - spec/nutella/core_ext/string_spec.rb
194
172
  - spec/nutella/core_ext/file_spec.rb
195
- - spec/nutella/core_ext/numeric_spec.rb
173
+ - spec/nutella/core_ext/string_spec.rb
196
174
  - spec/nutella/core_ext/enumerable_spec.rb
175
+ - spec/nutella/core_ext/numeric_spec.rb
176
+ - spec/nutella/core_ext/hash_spec.rb
177
+ - spec/nutella/core_ext/integer_spec.rb
178
+ - spec/nutella/core_ext/object_spec.rb
179
+ - spec/support/alias.rb
180
+ - spec/support/number_formats.rb
181
+ - spec/support/apply_tester.rb
182
+ - spec/spec_helper.rb
197
183
  has_rdoc: