Skip to content

Commit

Permalink
chore: bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
aristotelesbr committed Dec 31, 2024
1 parent 4e26098 commit d31266b
Show file tree
Hide file tree
Showing 7 changed files with 43 additions and 22 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@
/spec/reports/
/tmp/

*.gem

# rspec failure tracking
.rspec_status
.DS_Store
node_modules
*.gem
*.gem
17 changes: 15 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,31 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.2.1] - 2024-12-31

### Updated

- Bumped Sinatra to `~> 4.1.1`
- Bumped JSON to `~> 2.9`
- Bumped Thor to `~> 1.3.2`
- Bumped TTY::Prompt to `~> 0.23.1`

## [0.2.1] - 2024-12-29

### Updated

- Updated README with logo

## [0.2.0] - 2024-12-29

### Added

- CLI commands for managing TailwindCSS installation and configuration:
- `tailwind install` - Installs TailwindCSS and its dependencies
- `tailwind build` - Builds CSS files
Expand All @@ -25,11 +38,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Development script (`bin/dev`) for easy project startup

### Dependencies

- Added Thor for CLI interface
- Added TTY::Prompt for interactive command line
- Added support for NPM package management

## [0.1.0] - 2024-12-29
- Initial release of sinatra-tailwind gem


- Initial release of sinatra-tailwind gem
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ source "https://rubygems.org"
# Specify your gem's dependencies in sinatra-tailwind.gemspec
gemspec

gem "rake", "~> 13.0"
gem "rake", "~> 13.2"

gem "rspec", "~> 3.0"

Expand Down
30 changes: 18 additions & 12 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
PATH
remote: .
specs:
sinatra-tailwind (0.1.0)
json (~> 2.6)
sinatra (~> 3.0)
thor (~> 1.2)
sinatra-tailwind (0.2.1)
json (~> 2.9)
sinatra (~> 4.1.1)
thor (~> 1.3.2)
tty-prompt (~> 0.23.1)

GEM
Expand All @@ -16,6 +16,7 @@ GEM
json (2.9.1)
language_server-protocol (3.17.0.3)
lint_roller (1.1.0)
logger (1.6.4)
mustermann (3.0.3)
ruby2_keywords (~> 0.0.1)
parallel (1.26.3)
Expand All @@ -25,10 +26,13 @@ GEM
pastel (0.8.0)
tty-color (~> 0.5)
racc (1.8.1)
rack (2.2.10)
rack-protection (3.2.0)
rack (3.1.8)
rack-protection (4.1.1)
base64 (>= 0.1.0)
rack (~> 2.2, >= 2.2.4)
logger (>= 1.6.0)
rack (>= 3.0.0, < 4)
rack-session (2.0.0)
rack (>= 3.0.0)
rainbow (3.1.1)
rake (13.2.1)
regexp_parser (2.10.0)
Expand Down Expand Up @@ -62,10 +66,12 @@ GEM
rubocop-ast (>= 1.31.1, < 2.0)
ruby-progressbar (1.13.0)
ruby2_keywords (0.0.5)
sinatra (3.2.0)
sinatra (4.1.1)
logger (>= 1.6.0)
mustermann (~> 3.0)
rack (~> 2.2, >= 2.2.4)
rack-protection (= 3.2.0)
rack (>= 3.0.0, < 4)
rack-protection (= 4.1.1)
rack-session (>= 2.0.0, < 3)
tilt (~> 2.0)
standard (1.43.0)
language_server-protocol (~> 3.17.0.2)
Expand Down Expand Up @@ -101,8 +107,8 @@ PLATFORMS
ruby

DEPENDENCIES
bundler (~> 2.0)
rake (~> 13.0)
bundler (~> 2.6)
rake (~> 13.2)
rspec (~> 3.0)
sinatra-tailwind!
standard (~> 1.3)
Expand Down
2 changes: 1 addition & 1 deletion lib/sinatra/tailwind/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Sinatra
module Tailwind
VERSION = "0.2.0"
VERSION = "0.2.1"
end
end
Binary file removed sinatra-tailwind-0.1.0.gem
Binary file not shown.
10 changes: 5 additions & 5 deletions sinatra-tailwind.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ Gem::Specification.new do |spec|
spec.executables = ["tailwind"]
spec.require_paths = ["lib"]

spec.add_dependency "sinatra", "~> 3.0"
spec.add_dependency "json", "~> 2.6"
spec.add_dependency "thor", "~> 1.2"
spec.add_dependency "sinatra", "~> 4.1.1"
spec.add_dependency "json", "~> 2.9"
spec.add_dependency "thor", "~> 1.3.2"
spec.add_dependency "tty-prompt", "~> 0.23.1"

spec.add_development_dependency "bundler", "~> 2.0"
spec.add_development_dependency "rake", "~> 13.0"
spec.add_development_dependency "bundler", "~> 2.6"
spec.add_development_dependency "rake", "~> 13.2"
spec.add_development_dependency "rspec", "~> 3.0"
spec.add_development_dependency "standard", "~> 1.3"
end

0 comments on commit d31266b

Please sign in to comment.