lichess 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 5975aa102c3d88ba8980e5e5561e8c2bb2efb95eb6fdf5b8b88a48af06c280a6
4
+ data.tar.gz: 9416fe1ee1988eeae27d3d7a2581221ef30e44992545700198248cf701e7f7e7
5
+ SHA512:
6
+ metadata.gz: 35450ad224635e1c09d4c17be41c7bc0c7d5db92be1100dace8af34a18d1138a8ea4e2e06ee1a36b068385a67c64e5e989e3280ffef190f2e45351759abcfc88
7
+ data.tar.gz: 6eba48d77c0746dadec1e6ab11285ef275c9d394338afaf1eff80a196e4c4faca00278f79c97229d883ae85dfb18f5f86faf5404969b1fdbbc4196575b84b628
data/README.md ADDED
@@ -0,0 +1,23 @@
1
+ # lichess
2
+
3
+ A Ruby gem for the Lichess API.
4
+
5
+ ## Installation
6
+
7
+ ```ruby
8
+ gem install lichess
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ WIP
14
+
15
+ ## Development
16
+
17
+ After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
18
+
19
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
20
+
21
+ ## Contributing
22
+
23
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/lichess.
data/Rakefile ADDED
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ require "rubocop/rake_task"
5
+
6
+ RuboCop::RakeTask.new
7
+
8
+ task default: :rubocop
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Lichess
4
+ VERSION = "0.1.0"
5
+ end
data/lib/lichess.rb ADDED
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "lichess/version"
4
+
5
+ module Lichess
6
+ class Error < StandardError; end
7
+ # Your code goes here...
8
+ end
data/lichess.gemspec ADDED
@@ -0,0 +1,31 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'lib/lichess/version'
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = 'lichess'
7
+ spec.version = Lichess::VERSION
8
+ spec.authors = ['Derich Pacheco']
9
+ spec.email = ['carlosderich@gmail.com']
10
+
11
+ spec.summary = 'Lichess.org API client for Ruby.'
12
+ spec.description = 'A Ruby client for the Lichess.org API.'
13
+ spec.homepage = 'https://github.com/drish/lichess'
14
+ spec.required_ruby_version = '>= 2.6.0'
15
+
16
+ # Specify which files should be added to the gem when it is released.
17
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
18
+ spec.files = Dir.chdir(__dir__) do
19
+ `git ls-files -z`.split("\x0").reject do |f|
20
+ (File.expand_path(f) == __FILE__) ||
21
+ f.start_with?(*%w[bin/ test/ spec/ features/ .git .github appveyor Gemfile])
22
+ end
23
+ end
24
+ spec.require_paths = ['lib']
25
+
26
+ # Uncomment to register a new dependency of your gem
27
+ # spec.add_dependency "example-gem", "~> 1.0"
28
+
29
+ # For more information and examples about making a new gem, check out our
30
+ # guide at: https://bundler.io/guides/creating_gem.html
31
+ end
data/sig/lichess.rbs ADDED
@@ -0,0 +1,4 @@
1
+ module Lichess
2
+ VERSION: String
3
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
+ end
metadata ADDED
@@ -0,0 +1,48 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: lichess
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Derich Pacheco
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2024-05-10 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: A Ruby client for the Lichess.org API.
14
+ email:
15
+ - carlosderich@gmail.com
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - README.md
21
+ - Rakefile
22
+ - lib/lichess.rb
23
+ - lib/lichess/version.rb
24
+ - lichess.gemspec
25
+ - sig/lichess.rbs
26
+ homepage: https://github.com/drish/lichess
27
+ licenses: []
28
+ metadata: {}
29
+ post_install_message:
30
+ rdoc_options: []
31
+ require_paths:
32
+ - lib
33
+ required_ruby_version: !ruby/object:Gem::Requirement
34
+ requirements:
35
+ - - ">="
36
+ - !ruby/object:Gem::Version
37
+ version: 2.6.0
38
+ required_rubygems_version: !ruby/object:Gem::Requirement
39
+ requirements:
40
+ - - ">="
41
+ - !ruby/object:Gem::Version
42
+ version: '0'
43
+ requirements: []
44
+ rubygems_version: 3.4.10
45
+ signing_key:
46
+ specification_version: 4
47
+ summary: Lichess.org API client for Ruby.
48
+ test_files: []