Skip to content

Commit

Permalink
fix gem specification
Browse files Browse the repository at this point in the history
  • Loading branch information
richardboehme committed Mar 8, 2021
1 parent dc0ee81 commit 4b18695
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 14 deletions.
18 changes: 9 additions & 9 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
PATH
remote: .
specs:
lexorank (0.1.0)
lexorank (0.1.2)
activerecord
activesupport

GEM
remote: https://rubygems.org/
specs:
activemodel (6.1.0)
activesupport (= 6.1.0)
activerecord (6.1.0)
activemodel (= 6.1.0)
activesupport (= 6.1.0)
activesupport (6.1.0)
activemodel (6.1.3)
activesupport (= 6.1.3)
activerecord (6.1.3)
activemodel (= 6.1.3)
activesupport (= 6.1.3)
activesupport (6.1.3)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 1.6, < 2)
minitest (>= 5.1)
Expand All @@ -22,8 +22,8 @@ GEM
ansi (1.5.0)
builder (3.2.4)
coderay (1.1.3)
concurrent-ruby (1.1.7)
i18n (1.8.5)
concurrent-ruby (1.1.8)
i18n (1.8.9)
concurrent-ruby (~> 1.0)
m (1.5.1)
method_source (>= 0.6.7)
Expand Down
20 changes: 16 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -289,14 +289,26 @@ Bug reports and pull requests are highly welcomed and appreciated. This project

## Changelog

### 0.1.1
<details>
<summary>0.1.2</summary>

* Update license year
* Let rubygems be happy to have an updated version
* fix gem specification
* update changelog format
</details>

### 0.1.0
<details>
<summary>0.1.1</summary>

* update license year
* let rubygems be happy to have an updated version
</details>


<details>
<summary>0.1.0</summary>

*Initial Release*
</details>

## License

Expand Down
2 changes: 2 additions & 0 deletions lexorank.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ Gem::Specification.new do |spec|
spec.license = 'MIT'
spec.required_ruby_version = Gem::Requirement.new('>= 2.3.0')

spec.files = Dir['LICENSE', 'lib/**/*']

spec.add_dependency 'activesupport'
spec.add_dependency 'activerecord'

Expand Down
2 changes: 1 addition & 1 deletion lib/lexorank/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Lexorank
VERSION = '0.1.1'
VERSION = '0.1.2'
end

0 comments on commit 4b18695

Please sign in to comment.