raquelchess 0.0.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.
Files changed (3) hide show
  1. checksums.yaml +15 -0
  2. data/ext/extconf.rb +30 -0
  3. metadata +102 -0
@@ -0,0 +1,15 @@
1
+ ---
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ M2Q5ZTE2MGIzZDhlYWMyYTUzODJlZTg1OTJlY2M4MDRjMDBmMzExMg==
5
+ data.tar.gz: !binary |-
6
+ ODRjZGQ4NjkzYjFlMTkwYWRkYzNiYWI2ODBhOTQwYjhiMGNmYWEyMw==
7
+ SHA512:
8
+ metadata.gz: !binary |-
9
+ ZjYxN2I2NjljNWU3OWU5ZjJkZWZhNzQ1Nzg3ZDFhYzJkYmMwMzJmYzkxODgy
10
+ MTRkNDI5NmQ0OTdjNThjMDNhNjA3MGU0YzllNTRjNWVmM2VmMmU3ZDAwNWE0
11
+ MmQ0YWEzN2JhMGNhN2IyMzYzM2QxN2ZmNjAzZDBmYTk0NDIyZTg=
12
+ data.tar.gz: !binary |-
13
+ NTExNDYxYzdkYmUwOGJlZjcyZTNkODE1ODNjMTcwYWJhOWZlYTgxMzBjNzY3
14
+ ZTQ2ZjI0ZjZmMjcxY2JmNzNiMmEzZTMxYTkxZGJjNjdkODM2NzVlZjU5NTM4
15
+ MDY3NTU3NjdhYmMwOTEyMDk0ZjYyMzdlMjc5OWY5MWJiZjZjMjk=
@@ -0,0 +1,30 @@
1
+ ENV['RC_ARCHS'] = '' if RUBY_PLATFORM =~ /darwin/
2
+
3
+ require 'mkmf'
4
+
5
+ INCLUDE_DIRS = [
6
+ # Check the ruby install locations
7
+ RbConfig::CONFIG['includedir'],
8
+ # First earch /opt/local for macports
9
+ '/opt/local/include',
10
+ # Then search /usr/local for people that installed from source
11
+ '/usr/local/include',
12
+ # Finally fall back to /usr
13
+ '/usr/include',
14
+ ]
15
+
16
+ LIB_DIRS = [
17
+ # Check the ruby install locations
18
+ RbConfig::CONFIG['libdir'],
19
+ # First search /opt/local for macports
20
+ '/opt/local/lib',
21
+ # Then search /usr/local for people that installed from source
22
+ '/usr/local/lib',
23
+ # Finally fall back to /usr
24
+ '/usr/lib',
25
+ ]
26
+
27
+ #dir_config('chess', INCLUDE_DIRS, LIB_DIRS)
28
+ $CFLAGS << " -std=c99"
29
+
30
+ create_makefile('chess/chess')
metadata ADDED
@@ -0,0 +1,102 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: raquelchess
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Enrico Pilotto
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2018-01-11 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: '1.14'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '1.14'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ~>
32
+ - !ruby/object:Gem::Version
33
+ version: '12.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ~>
39
+ - !ruby/object:Gem::Version
40
+ version: '12.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: minitest
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ~>
46
+ - !ruby/object:Gem::Version
47
+ version: '5.10'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ~>
53
+ - !ruby/object:Gem::Version
54
+ version: '5.10'
55
+ - !ruby/object:Gem::Dependency
56
+ name: yard
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ~>
60
+ - !ruby/object:Gem::Version
61
+ version: '0.9'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ~>
67
+ - !ruby/object:Gem::Version
68
+ version: '0.9'
69
+ description: A fast chess library that use bitboards to play chess with Ruby.
70
+ email:
71
+ - epilotto@gmx.com
72
+ executables: []
73
+ extensions:
74
+ - ext/extconf.rb
75
+ extra_rdoc_files: []
76
+ files:
77
+ - ext/extconf.rb
78
+ homepage: https://github.com/pioz/chess
79
+ licenses:
80
+ - LGPLv3
81
+ metadata: {}
82
+ post_install_message:
83
+ rdoc_options: []
84
+ require_paths:
85
+ - lib
86
+ required_ruby_version: !ruby/object:Gem::Requirement
87
+ requirements:
88
+ - - ! '>='
89
+ - !ruby/object:Gem::Version
90
+ version: '1.9'
91
+ required_rubygems_version: !ruby/object:Gem::Requirement
92
+ requirements:
93
+ - - ! '>='
94
+ - !ruby/object:Gem::Version
95
+ version: '0'
96
+ requirements: []
97
+ rubyforge_project: chess
98
+ rubygems_version: 2.4.8
99
+ signing_key:
100
+ specification_version: 4
101
+ summary: A fast chess library to play chess with Ruby.
102
+ test_files: []