This repository was archived by the owner on Oct 12, 2023. It is now read-only.
forked from laserlemon/figaro
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Version 1.2.0 * tag 'v1.2.0': Modify .travis.yml to address build config validation feedback Bump to version 1.2.0 Don't use GitHub Actions for Figaro v1 Update the .gitignore file Add an optional build to keep an eye on latest Rails Set the entire ENV (plus explicit configuration) in CLI tasks Bring the test suite up-to-date Update Rubies built in the Travis configuration Remove Code Climate, which is causing build failures Start exploring CI via GitHub Actions Create FUNDING.yml
- Loading branch information
Showing
22 changed files
with
102 additions
and
141 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
github: [laserlemon] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
.bundle | ||
.ruby-version | ||
/Gemfile.lock | ||
/coverage | ||
/gemfiles/*.gemfile.lock | ||
/pkg | ||
/tmp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
Gem::Specification.new do |gem| | ||
gem.name = "figaro" | ||
gem.version = "1.1.2" | ||
gem.version = "1.2.0" | ||
|
||
gem.author = "Steve Richert" | ||
gem.email = "[email protected]" | ||
|
@@ -11,11 +11,11 @@ Gem::Specification.new do |gem| | |
gem.homepage = "https://github.com/laserlemon/figaro" | ||
gem.license = "MIT" | ||
|
||
gem.add_dependency "thor", "~> 0.14" | ||
gem.add_dependency "hiera-eyaml" | ||
gem.add_dependency "thor", ">= 0.14.0", "< 2" | ||
|
||
gem.add_development_dependency "bundler", "~> 1.7" | ||
gem.add_development_dependency "rake", "~> 10.4" | ||
gem.add_development_dependency "bundler", ">= 1.7.0", "< 3" | ||
gem.add_development_dependency "rake", ">= 10.4.0", "< 14" | ||
|
||
gem.files = `git ls-files`.split($\) | ||
gem.test_files = gem.files.grep(/^spec/) | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
source "https://rubygems.org" | ||
|
||
gemspec path: ".." | ||
|
||
gem "rails", "~> 5.2.0" | ||
|
||
group :test do | ||
gem "aruba", "~> 1.0" | ||
gem "rspec", "~> 3.9" | ||
gem "sqlite3" | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
source "https://rubygems.org" | ||
|
||
gemspec path: ".." | ||
|
||
gem "rails", "~> 6.0" | ||
|
||
group :test do | ||
gem "aruba", "~> 1.0" | ||
gem "rspec", "~> 3.9" | ||
gem "sqlite3" | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
source "https://rubygems.org" | ||
|
||
gemspec path: ".." | ||
|
||
gem "rails", "~> 6.0.0" | ||
|
||
group :test do | ||
gem "aruba", "~> 1.0" | ||
gem "rspec", "~> 3.9" | ||
gem "sqlite3" | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.