bluehelmet-utils 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d4ceae1651750b25345e02017b033ff8a8d767cf78771bbebbf265b1fbc0c24b
4
- data.tar.gz: 90cc15bf84473bdffbdf1556e631278fa8f289ad95151998fa0d4352f7558c4a
3
+ metadata.gz: 553a8e2a762dde660e5e598205dbb6b04b5051a77ab8be705872bd247792cc7f
4
+ data.tar.gz: bd70c45ffeccfe4a34d61021b861c9e57ca9d8d3c9857b263e3c8f17d6c42500
5
5
  SHA512:
6
- metadata.gz: '059977ca6d6c9a019cf5053962496d63977727df4a2753eff136fa6658a8aa1bf01c314df8675ebe99056b1918a1d0cbdf7653bc93c2abe08ba209442f820545'
7
- data.tar.gz: 1168bb1ec9523b315d3039dd9df3b76c334ad619807538fe17f8b5630077fa8982f2194d9d01cc998bd2396e4aad169ec6574b4a3325f6df914a13e7728c317e
6
+ metadata.gz: 60b609484b0b0e440a0f342fe312766b9dcdb6b346065b923b1d490409259409cac2f7458ce709a8068c5891599086b142110f727eba3c4216c62eb279691471
7
+ data.tar.gz: cb35f150e118eecf0c89108a1d07ec36d724cd783645bbd24435eab96db31ffba9d25f7dd6f075f7a6acc8982ad2a5f1808d8e22ba4e0c68fc804bf167e837ba
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Bluehelmet::Utils
1
+ # Bluehelmet
2
2
 
3
3
  Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/bluehelmet/utils`. To experiment with that code, run `bin/console` for an interactive prompt.
4
4
 
@@ -40,4 +40,4 @@ The gem is available as open source under the terms of the [MIT License](https:/
40
40
 
41
41
  ## Code of Conduct
42
42
 
43
- Everyone interacting in the Bluehelmet::Utils project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/bluehelmet-utils/blob/master/CODE_OF_CONDUCT.md).
43
+ Everyone interacting in the Bluehelmet project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/bluehelmet-blob/master/CODE_OF_CONDUCT.md).
@@ -1,11 +1,11 @@
1
1
 
2
2
  lib = File.expand_path("../lib", __FILE__)
3
3
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require "bluehelmet/utils/version"
4
+ require "bluehelmet/version"
5
5
 
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = "bluehelmet-utils"
8
- spec.version = Bluehelmet::Utils::VERSION
8
+ spec.version = Bluehelmet::VERSION
9
9
  spec.authors = ["vaskaloidis"]
10
10
  spec.email = ["vas.kaloidis@gmail.com"]
11
11
 
@@ -0,0 +1,3 @@
1
+ module Bluehelmet
2
+ VERSION = "0.1.1"
3
+ end
data/lib/bluehelmet.rb ADDED
@@ -0,0 +1,8 @@
1
+ require "bluehelmet/version"
2
+
3
+ require 'bluehelmet/core_ext/String'
4
+ require 'bluehelmet/view_helper'
5
+
6
+ module Bluehelmet
7
+ include Bluehelmet::ViewHelper
8
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bluehelmet-utils
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - vaskaloidis
@@ -111,10 +111,10 @@ files:
111
111
  - bin/console
112
112
  - bin/setup
113
113
  - bluehelmet-utils.gemspec
114
- - lib/bluehelmet/utils.rb
115
- - lib/bluehelmet/utils/core_ext/String.rb
116
- - lib/bluehelmet/utils/version.rb
117
- - lib/bluehelmet/utils/view_helper.rb
114
+ - lib/bluehelmet.rb
115
+ - lib/bluehelmet/core_ext/String.rb
116
+ - lib/bluehelmet/version.rb
117
+ - lib/bluehelmet/view_helper.rb
118
118
  homepage: http://www.bluehelmet.software
119
119
  licenses:
120
120
  - MIT
@@ -1,5 +0,0 @@
1
- module Bluehelmet
2
- module Utils
3
- VERSION = "0.1.0"
4
- end
5
- end
@@ -1,9 +0,0 @@
1
- require "bluehelmet/utils/version"
2
-
3
- require 'bluehelmet/utils/core_ext/String'
4
- require 'bluehelmet/utils/view_helper'
5
-
6
-
7
- module Bluehelmet
8
- # Your code goes here...
9
- end