Skip to content

Commit

Permalink
Merge pull request #4 from rd2/gemspec
Browse files Browse the repository at this point in the history
gemspec
  • Loading branch information
brgix authored Jul 26, 2022
2 parents 7c81104 + ab17829 commit 89432a7
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
11 changes: 9 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
/.bundle/
Gemfile.lock
.rspec_status
*.DS_Store
.bundle
pkg

.yardoc
_yardoc
doc/
rdoc

.DS_Store
2 changes: 2 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
require "bundler/gem_tasks"
require "rspec/core/rake_task"

RSpec::Core::RakeTask.new(:spec)

require "yard"
Expand Down
2 changes: 1 addition & 1 deletion lib/oslg/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

module OSlg
VERSION = "0.2.1".freeze
VERSION = "0.2.2".freeze
end
4 changes: 2 additions & 2 deletions oslg.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ require "oslg/version"
Gem::Specification.new do |s|
# Specify which files should be added to the gem when it is released.
# "git ls-files -z" loads files in the RubyGem that have been added into git.
s.files = "git ls-files -z".split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
s.files = Dir.chdir(File.expand_path("..", __FILE__)) do
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
end

s.name = "oslg"
Expand Down

0 comments on commit 89432a7

Please sign in to comment.