-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* bump Obvious version to 0.2.0 * Update obvious.gemspec * Update README.md * Create CHANGELOG.md * fix: Updating Gemfile and gemspec
- Loading branch information
1 parent
99adcef
commit 5aac7b4
Showing
6 changed files
with
29 additions
and
30 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,19 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
## [0.2.0] | ||
|
||
### Added | ||
|
||
### Changed | ||
|
||
- Updated README to be current | ||
- Removed generators from Obvious | ||
- Refactored Obvious::Obj#define to be simpler | ||
- Replaced RSPec with Minitest for testing | ||
|
||
### Fixed | ||
|
||
- Fixed namespace issues with Contract errors | ||
- Updated project URL on Rubygems listing |
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,7 +1,7 @@ | ||
PATH | ||
remote: . | ||
specs: | ||
obvious (0.1.0) | ||
obvious (0.2.0) | ||
|
||
GEM | ||
remote: https://rubygems.org/ | ||
|
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
module Obvious | ||
VERSION = "0.1.0" | ||
VERSION = "0.2.0" | ||
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 |
---|---|---|
|
@@ -6,12 +6,12 @@ require 'obvious/version' | |
Gem::Specification.new do |gem| | ||
gem.name = "obvious" | ||
gem.version = Obvious::VERSION | ||
gem.authors = ["Brian Knapp"] | ||
gem.email = ["[email protected]"] | ||
gem.authors = ["Brian Knapp", "Shawn Baden"] | ||
gem.email = ["[email protected]", "[email protected]"] | ||
gem.description = "A set of tools to build apps using the Obvious Architecture" | ||
gem.summary = "Clean Architecture framework" | ||
gem.homepage = "http://obvious.retromocha.com/" | ||
|
||
gem.homepage = "https://github.com/RetroMocha/obvious" | ||
gem.license = "MIT" | ||
gem.files = `git ls-files`.split($/) | ||
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) } | ||
gem.test_files = gem.files.grep(%r{^(test|spec|features)/}) | ||
|