Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
4kimov committed Aug 12, 2023
1 parent 36e4c18 commit dd9663f
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
source 'https://rubygems.org'

# Specify your gem's dependencies in sqids.gemspec
gemspec

group :development do
gem "rake"
end

group :test do
gem "rspec"
end
18 changes: 18 additions & 0 deletions hashids.gemspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# encoding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'sqids'

Gem::Specification.new do |gem|
gem.name = "sqids"
gem.version = "0.1.0"
gem.summary = %q{Generate YouTube-like ids from numbers.}
gem.homepage = "https://sqids.org/ruby"
gem.license = "MIT"

gem.required_ruby_version = '>= 3.1'

gem.files = `git ls-files`.split($/)
gem.test_files = gem.files.grep(%r{^(spec)/})
gem.require_paths = ["lib"]
end

0 comments on commit dd9663f

Please sign in to comment.