Skip to content

Commit

Permalink
gemfile
Browse files Browse the repository at this point in the history
  • Loading branch information
jonrohan committed Oct 22, 2021
1 parent aba86d0 commit ca299ba
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ jobs:
ruby-version: 3.0.x

- name: Install dependencies
run: yarn
run: |
yarn
bundle install
- name: Create release pull request or publish to npm
id: changesets
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
.env
node_modules
vendor
Gemfile.lock

# Ignore build/export artifacts
lib/**/build/
Expand Down
10 changes: 10 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
source "https://rubygems.org"

gemspec

group :development, :test do
gem "minitest"
gem "rake"
gem "rubocop", "0.59"
gem "rubocop-github", "0.12.0"
end
3 changes: 0 additions & 3 deletions script/version
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,16 @@ npm -f --no-git-tag-version --allow-same-version version $PACKAGE_VERSION
echo "Versioning Octicons ruby gem"

cd ../octicons_gem/
bundle install
rake version\["$PACKAGE_VERSION"\]

echo "Versioning Octicons rails helper gem"

cd ../octicons_helper/
bundle install
rake version\["$PACKAGE_VERSION"\]

echo "Versioning Octicons jekyll plugin gem"

cd ../octicons_jekyll/
bundle install
rake version\["$PACKAGE_VERSION"\]

cd ../../
Expand Down

0 comments on commit ca299ba

Please sign in to comment.