File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # frozen_string_literal: true
2+
3+ source 'https://rubygems.org'
4+
5+ gemspec
Original file line number Diff line number Diff line change 1+ PATH
2+ remote: .
3+ specs:
4+ ddnet_insta_cli (0.0.1 )
5+ fileutils (~> 1.6.0 )
6+ os (~> 1.0.1 )
7+ rspec (~> 3.9.0 )
8+
9+ GEM
10+ remote: https://rubygems.org/
11+ specs:
12+ diff-lcs (1.6.2 )
13+ fileutils (1.6.0 )
14+ os (1.0.1 )
15+ rspec (3.9.0 )
16+ rspec-core (~> 3.9.0 )
17+ rspec-expectations (~> 3.9.0 )
18+ rspec-mocks (~> 3.9.0 )
19+ rspec-core (3.9.3 )
20+ rspec-support (~> 3.9.3 )
21+ rspec-expectations (3.9.4 )
22+ diff-lcs (>= 1.2.0 , < 2.0 )
23+ rspec-support (~> 3.9.0 )
24+ rspec-mocks (3.9.1 )
25+ diff-lcs (>= 1.2.0 , < 2.0 )
26+ rspec-support (~> 3.9.0 )
27+ rspec-support (3.9.4 )
28+
29+ PLATFORMS
30+ ruby
31+ x86_64-linux
32+
33+ DEPENDENCIES
34+ ddnet_insta_cli !
35+
36+ BUNDLED WITH
37+ 2.6.4
Original file line number Diff line number Diff line change 1+ # frozen_string_literal: true
2+
3+ Gem ::Specification . new do |s |
4+ s . name = 'ddnet_insta_cli'
5+ s . version = '0.0.1'
6+ # TODO: name not unique enuf??
7+ # s.executables = %w[cli]
8+ s . summary = 'ddnet-insta C++ code gen tool'
9+ s . description = <<-DESC
10+ yes
11+ DESC
12+ s . authors = [ 'ChillerDragon' ]
13+ s . email = 'ChillerDragon@gmail.com'
14+ s . files = [
15+ 'lib/*.rb'
16+ ] . map { |glob | Dir [ glob ] } . flatten
17+ s . required_ruby_version = '>= 3.3.5'
18+ s . add_dependency 'fileutils' , '~> 1.6.0'
19+ s . add_dependency 'os' , '~> 1.0.1'
20+ s . add_dependency 'rspec' , '~> 3.9.0'
21+ s . homepage = 'https://github.com/ddnet-insta/cli'
22+ s . license = 'Unlicense'
23+ s . metadata [ 'rubygems_mfa_required' ] = 'true'
24+ end
You can’t perform that action at this time.
0 commit comments