tepee 0.0.2 → 0.1.0

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
- SHA1:
3
- metadata.gz: 0018ed23223a1b07a30efed76e265fb4aeac18ab
4
- data.tar.gz: 3eb5103686c9f87c014bd03e365fc78f25c0aefe
2
+ SHA256:
3
+ metadata.gz: e270733d02cba6c9bad82b682a472518e167c826a34d581bf16969a7aab01a5f
4
+ data.tar.gz: a5b57c732a0ce117e571ac88a0803c74828ffe18f622bfbef85fb7e5ffc57ddf
5
5
  SHA512:
6
- metadata.gz: 4d22023c8b76928aff661d102d2ddfdaee8ef0dc5b12dc3d2da7bceb2e924244eecbd35230ddaf49251dbbfbea67f089ad2444d0c41748884c83fe52267ad138
7
- data.tar.gz: 49625ecd98b9773f52874b5a76ec94887aab2393166d747d214010bfc18d5353ea3b5ec6d579a614777ad38bc57c525255dff7d3ce87155db907b38393685c04
6
+ metadata.gz: 77ca398f89630879d0a61bd99b765bd0fe70c57e38974876aa9372d9993ea239f5aaa8d04d4544c8f6fc1a94246ca15b20e595e3f9a6f7c727cc921d36fd2ac6
7
+ data.tar.gz: 3c4899aab258e01d2749d8a778c958a820f9f712fb15a0f7348d9c97058899d9d60b0b9585507b5472d913a01012871c2fc4b87daf561ac0debdc0a4e1afeb8d
@@ -1,6 +1,18 @@
1
- before_install:
2
- - gem install bundler
3
1
  language: ruby
2
+
3
+ before_install:
4
+ - gem install bundler
5
+
4
6
  rvm:
5
- - 2.3.0
7
+ - 2.3
8
+ - 2.4
9
+ - 2.5
10
+ - ruby-head
11
+
12
+ matrix:
13
+ allow_failures:
14
+ - rvm: ruby-head
15
+
6
16
  script: bundle exec rspec spec
17
+
18
+ cache: bundler
@@ -0,0 +1,24 @@
1
+
2
+ 0.1.0 / 2019-11-13
3
+ ==================
4
+
5
+ * Stop support for Ruby 2.2
6
+ * Update the TravisCI config to test against more ruby versions
7
+ * Be less strict about the required ruby version
8
+ * Add missing requires
9
+ * Bump rspec version
10
+ * Add dependencyCI badge
11
+ * Added the Tepee logo to the readme
12
+ * Fix typo
13
+ * Update README.md
14
+
15
+ 0.0.2 / 2016-06-23
16
+ ==================
17
+
18
+ * Allow configuration values with no default (=nil)
19
+ * Readme typos + gemfile
20
+
21
+ 0.0.1 / 2016-06-22
22
+ ==================
23
+
24
+ * Initial release
@@ -2,19 +2,19 @@ GEM
2
2
  remote: https://rubygems.org/
3
3
  specs:
4
4
  diff-lcs (1.2.5)
5
- rspec (3.4.0)
6
- rspec-core (~> 3.4.0)
7
- rspec-expectations (~> 3.4.0)
8
- rspec-mocks (~> 3.4.0)
9
- rspec-core (3.4.4)
10
- rspec-support (~> 3.4.0)
11
- rspec-expectations (3.4.0)
5
+ rspec (3.5.0)
6
+ rspec-core (~> 3.5.0)
7
+ rspec-expectations (~> 3.5.0)
8
+ rspec-mocks (~> 3.5.0)
9
+ rspec-core (3.5.2)
10
+ rspec-support (~> 3.5.0)
11
+ rspec-expectations (3.5.0)
12
12
  diff-lcs (>= 1.2.0, < 2.0)
13
- rspec-support (~> 3.4.0)
14
- rspec-mocks (3.4.1)
13
+ rspec-support (~> 3.5.0)
14
+ rspec-mocks (3.5.0)
15
15
  diff-lcs (>= 1.2.0, < 2.0)
16
- rspec-support (~> 3.4.0)
17
- rspec-support (3.4.1)
16
+ rspec-support (~> 3.5.0)
17
+ rspec-support (3.5.0)
18
18
 
19
19
  PLATFORMS
20
20
  ruby
data/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2016 Appaloosa.io
3
+ Copyright (c) 2016-2019 Appaloosa.io
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
data/README.md CHANGED
@@ -1,12 +1,14 @@
1
1
  # Tepee: A configuration helper for the braves
2
2
 
3
- [![Build Status](https://travis-ci.org/appaloosa-store/tepee.svg)](https://travis-ci.org/appaloosa-store/tepee)
3
+ [![Build Status](https://travis-ci.org/appaloosa-store/tepee.svg)](https://travis-ci.org/appaloosa-store/tepee) [![Dependency Status](https://dependencyci.com/github/appaloosa-store/tepee/badge)](https://dependencyci.com/github/appaloosa-store/tepee)
4
4
 
5
- ## Purpose
5
+ <img align="right" height="400" src="https://s3.eu-central-1.amazonaws.com/appaloosa-design/github/Tepee-v0.2c.svg">
6
6
 
7
- This gem aims to make your rails app (or lib, script, ...) by making your environment variables more maintainable by nesting them, allowing you to use your own naming conventions for them.
7
+ ---
8
8
 
9
- ## Usage
9
+ This gem aims to make your rails app (or lib, script, etc.) configuration easier to maintain by making your environment variables nestable and allowing you to use your own naming conventions.
10
+
11
+ ## Install & usage
10
12
 
11
13
  ### Setup
12
14
 
@@ -76,7 +78,7 @@ class MyApp::Configuration < Tepee
76
78
  add :value, "I'm a foo value"
77
79
  section(:bar) do
78
80
  # Can be overridden by the FOO_BAR_VALUE environment variable.
79
- # Accessible via Appaloosa::Configuration.foo.bar.value
81
+ # Accessible via MyApp::Configuration.foo.bar.value
80
82
  add :value, "I'm a bar value"
81
83
  end
82
84
  end
@@ -4,7 +4,7 @@
4
4
  class Tepee
5
5
  # This module holds the Tepee version information.
6
6
  module Version
7
- STRING = '0.0.2'.freeze
7
+ STRING = '0.1.0'.freeze
8
8
 
9
9
  module_function
10
10
 
@@ -7,7 +7,7 @@ Gem::Specification.new do |s|
7
7
  s.name = 'tepee'
8
8
  s.version = Tepee::Version::STRING
9
9
  s.platform = Gem::Platform::RUBY
10
- s.required_ruby_version = '>= 1.9.3'
10
+ s.required_ruby_version = '>= 2.3.0'
11
11
  s.authors = ['Alexandre Ignjatovic', 'Robin Sfez', 'Benoit Tigeot', 'Christophe Valentin']
12
12
  s.description = <<-EOF
13
13
  A ruby configuration helper for the braves.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tepee
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alexandre Ignjatovic
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2016-06-23 00:00:00.000000000 Z
14
+ date: 2019-12-16 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: rspec
@@ -43,6 +43,7 @@ extra_rdoc_files:
43
43
  - README.md
44
44
  files:
45
45
  - ".travis.yml"
46
+ - CHANGELOG.md
46
47
  - Gemfile.lock
47
48
  - LICENSE
48
49
  - README.md
@@ -61,15 +62,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
61
62
  requirements:
62
63
  - - ">="
63
64
  - !ruby/object:Gem::Version
64
- version: 1.9.3
65
+ version: 2.3.0
65
66
  required_rubygems_version: !ruby/object:Gem::Requirement
66
67
  requirements:
67
68
  - - ">="
68
69
  - !ruby/object:Gem::Version
69
70
  version: '0'
70
71
  requirements: []
71
- rubyforge_project:
72
- rubygems_version: 2.6.5
72
+ rubygems_version: 3.0.3
73
73
  signing_key:
74
74
  specification_version: 4
75
75
  summary: A ruby configuration helper for the braves