configur 1.0.0 → 1.0.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/README.md +1 -1
- data/configur.gemspec +3 -3
- data/lib/configur.rb +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d3a9c1460ec16fed1e4c4a75a48049d2852ca6dd
|
4
|
+
data.tar.gz: 7ede67283b2cbd74736d8e6b7a6477ac5f318883
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2bbb432dc59330db92ec99a99b8ffca2328e87d32a73122030ec122a5083f597bb8a83308fc10fe5b240dc15a6160e30ff2c4996cd3d0c6137c221c71a12ef18
|
7
|
+
data.tar.gz: f5bd07a6a9613aadc13b5a60192c7b9b17fe8b949e703b3fa119d06f112d3012e8c00510c895acf0d23c0cb463bfe49068748bb02bbdeddee2cf4d9c7d37f121
|
data/README.md
CHANGED
data/configur.gemspec
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
# File: configur.gemspec
|
2
|
-
# Time-stamp: <2014-11-
|
2
|
+
# Time-stamp: <2014-11-26 00:03:40 pierre>
|
3
3
|
# Copyright (C) 2014 Pierre Lecocq
|
4
4
|
# Description: Configur library gemspec file
|
5
5
|
|
@@ -15,8 +15,8 @@ Gem::Specification.new do |gem|
|
|
15
15
|
|
16
16
|
gem.authors = ['Pierre Lecocq']
|
17
17
|
gem.email = ['pierre.lecocq@gmail.com']
|
18
|
-
gem.summary = 'Simply set configuration for
|
19
|
-
gem.description = 'Simply set configuration for
|
18
|
+
gem.summary = 'Simply set configuration for your ruby class or module'
|
19
|
+
gem.description = 'Simply set configuration for your ruby class or module'
|
20
20
|
gem.homepage = 'https://github.com/pierre-lecocq/configur'
|
21
21
|
gem.date = '2014-11-25'
|
22
22
|
gem.license = 'MIT'
|
data/lib/configur.rb
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
2
|
|
3
3
|
# File: configur.rb
|
4
|
-
# Time-stamp: <2014-11-
|
4
|
+
# Time-stamp: <2014-11-26 00:04:32 pierre>
|
5
5
|
# Copyright (C) 2014 Pierre Lecocq
|
6
6
|
# Description: Configur gem module
|
7
7
|
|
8
8
|
# Configur module
|
9
9
|
module Configur
|
10
10
|
# Version constant
|
11
|
-
VERSION = [1, 0,
|
11
|
+
VERSION = [1, 0, 1].join '.'
|
12
12
|
|
13
13
|
# Configur
|
14
14
|
def configur(&block)
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: configur
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Pierre Lecocq
|
@@ -10,7 +10,7 @@ bindir: bin
|
|
10
10
|
cert_chain: []
|
11
11
|
date: 2014-11-25 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
|
-
description: Simply set configuration for
|
13
|
+
description: Simply set configuration for your ruby class or module
|
14
14
|
email:
|
15
15
|
- pierre.lecocq@gmail.com
|
16
16
|
executables: []
|
@@ -44,6 +44,6 @@ rubyforge_project:
|
|
44
44
|
rubygems_version: 2.2.2
|
45
45
|
signing_key:
|
46
46
|
specification_version: 4
|
47
|
-
summary: Simply set configuration for
|
47
|
+
summary: Simply set configuration for your ruby class or module
|
48
48
|
test_files: []
|
49
49
|
has_rdoc:
|