bukkit-api 0.0.1.pre.100 → 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -13
- data/.travis.yml +0 -8
- data/README.md +16 -9
- data/{bukkit-api.gemspec → bukkit.gemspec} +1 -2
- metadata +34 -36
checksums.yaml
CHANGED
@@ -1,15 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
|
5
|
-
data.tar.gz: !binary |-
|
6
|
-
YWQwZGE2MzBjNzhlNWI1NDc5OWM3ZjEyZDRmODZlNjM2NGE3MmFlMw==
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 4ccd6d4c5e9d9e33d667f7522327934e1e262b59
|
4
|
+
data.tar.gz: 1e172c81afc05cf87e70838e4c5f0d94487a99a4
|
7
5
|
SHA512:
|
8
|
-
metadata.gz:
|
9
|
-
|
10
|
-
N2QzNDNjNGZkZTExNWViYTdhMzdjMWU1OWQzZjJkZThlMjg3ZjAyZWEwMGJl
|
11
|
-
ZjIxZGYwMDM4MDNlMTZjMTc4OWViODE2MTQzNTZiNzg4MWY0MmE=
|
12
|
-
data.tar.gz: !binary |-
|
13
|
-
OTIzODJmNGQ2MTMxNWYzNzdkY2QwZTcyZWFkZTgzNzdlZGE3NjAxM2QzMzg4
|
14
|
-
ZDQ3YWJjZjgyMjRlODNhYjgxODFkZDc3NjMxZjUxM2M5NGQ2ODUxNTFhNTg5
|
15
|
-
NDAyZDljNGVlZGZlMTZlZDBjOGMzODNjOWZiMTU4MDEwMGRhYTk=
|
6
|
+
metadata.gz: b983c88e524692514c50a5b0b5144397416685c0998e4d12d20a1a1fadf6a768703274555b7f6d67645d21b83670b789393131cc47fd9777c393c32cb5aa3c71
|
7
|
+
data.tar.gz: 1dfb14e1003e38459b24e95ca9a1440b73279bdf7b3b30d15cda9c74106dc533b9d8c2ba676895574d8049b1ce9027332703432026cccb008ad765b022c08e1a
|
data/.travis.yml
CHANGED
@@ -36,11 +36,3 @@ matrix:
|
|
36
36
|
addons:
|
37
37
|
code_climate:
|
38
38
|
repo_token: 911293d623db750f70777bf5fec3853fa871a2395ebbfea40a69f6fba5653cb6
|
39
|
-
deploy:
|
40
|
-
provider: rubygems
|
41
|
-
api_key:
|
42
|
-
secure: T2l3aJ1gUxbbw7YoXrPzgzXWfh+fSl+3Ew1iOoY7JN7AnJCQlBwJrEbnD7SDl9acckA6qb54SSVJq+kHaKOMde5lykT2L6OVKn+TWAW+WSgJiJRSAYlu9S6mz+sXxYmntuV8ZAkhEmmaC2+kSlO/3/fl3+WvKmy0aRn6vLCbkn8=
|
43
|
-
gem: bukkit-api
|
44
|
-
on:
|
45
|
-
repo: MinecraftRuby/bukkit
|
46
|
-
ruby: 1.9.3
|
data/README.md
CHANGED
@@ -1,20 +1,27 @@
|
|
1
1
|
# Bukkit (Deprecated)
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
[![Total Gem Downloads](http://img.shields.io/gem/dt/bukkit-api.svg?style=flat-square)](https://rubygems.org/gems/bukkit-api)
|
3
|
+
A backwards compatible Bukkit API written in Ruby.
|
4
|
+
|
5
|
+
In light of the recent exedus from Bukkit I (@k2b6s9j) will no longer be dedicating a substantial amount of time to this API.
|
7
6
|
|
7
|
+
I may, no guarentees though, return to this project eventually and utilitize much like a BukkitBridge sortof thing.
|
8
|
+
|
9
|
+
## Shields
|
10
|
+
|
11
|
+
Documentation:
|
8
12
|
[![Inline docs](http://inch-ci.org/github/MinecraftRuby/bukkit.svg?branch=master&style=flat-square)](http://inch-ci.org/github/MinecraftRuby/bukkit)
|
13
|
+
|
14
|
+
Continuous Integration Status:
|
9
15
|
[![travis.ci Continuous Integration](http://img.shields.io/travis/MinecraftRuby/bukkit.svg?style=flat-square)](https://travis-ci.org/MinecraftRuby/bukkit)
|
10
|
-
[![Code Climate GPA](http://img.shields.io/codeclimate/github/MinecraftRuby/bukkit.svg?style=flat-square)](https://codeclimate.com/github/MinecraftRuby/bukkit)
|
11
|
-
[![Code Climate Test Coverage](http://img.shields.io/codeclimate/coverage/github/MinecraftRuby/bukkit.svg?style=flat-square)](https://codeclimate.com/github/MinecraftRuby/bukkit)
|
12
16
|
|
13
|
-
|
17
|
+
Code Climate GPA:
|
18
|
+
[![Code Climate GPA](http://img.shields.io/codeclimate/github/MinecraftRuby/bukkit.svg?style=flat-square)](https://codeclimate.com/github/MinecraftRuby/bukkit)
|
14
19
|
|
15
|
-
|
20
|
+
Code Climate Test Coverage:
|
21
|
+
[![Code Climate Test Coverage](http://img.shields.io/codeclimate/coverage/github/MinecraftRuby/bukkit.svg?style=flat-square)](https://codeclimate.com/github/MinecraftRuby/bukkit)
|
16
22
|
|
17
|
-
|
23
|
+
Coveralls Test Coverage:
|
24
|
+
[![Coveralls Test Coverage](http://img.shields.io/coveralls/MinecraftRuby/bukkit.svg?style=flat-square)](https://coveralls.io/r/MinecraftRuby/bukkit)
|
18
25
|
|
19
26
|
## Contributing
|
20
27
|
|
@@ -6,12 +6,11 @@ require 'bukkit/version'
|
|
6
6
|
Gem::Specification.new do |spec|
|
7
7
|
spec.name = 'bukkit-api'
|
8
8
|
spec.version = Bukkit::VERSION
|
9
|
-
spec.version = "#{spec.version}-#{ENV['TRAVIS_BUILD_NUMBER']}" if ENV['TRAVIS']
|
10
9
|
spec.authors = ['Kepler Sticka-Jones']
|
11
10
|
spec.email = ['kbsj269@gmail.com']
|
12
11
|
spec.summary = 'The API for the formally popular server mod, Bukkit'
|
13
12
|
spec.description = 'A backwards compatible API for the server mod, Bukkit. Not being actively maintained longer due to the legal issues and other drama surrounding the CraftBukkit community currently.'
|
14
|
-
spec.homepage = '
|
13
|
+
spec.homepage = ''
|
15
14
|
spec.license = 'GNU General Public License'
|
16
15
|
|
17
16
|
spec.files = `git ls-files -z`.split("\x0")
|
metadata
CHANGED
@@ -1,74 +1,72 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bukkit-api
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.1
|
4
|
+
version: 0.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kepler Sticka-Jones
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-09-
|
11
|
+
date: 2014-09-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
15
|
-
|
15
|
+
version_requirements: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
17
|
- - ~>
|
18
18
|
- !ruby/object:Gem::Version
|
19
19
|
version: '1.6'
|
20
|
-
|
21
|
-
prerelease: false
|
22
|
-
version_requirements: !ruby/object:Gem::Requirement
|
20
|
+
requirement: !ruby/object:Gem::Requirement
|
23
21
|
requirements:
|
24
22
|
- - ~>
|
25
23
|
- !ruby/object:Gem::Version
|
26
24
|
version: '1.6'
|
25
|
+
prerelease: false
|
26
|
+
type: :development
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: rake
|
29
|
+
version_requirements: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - '>='
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
29
34
|
requirement: !ruby/object:Gem::Requirement
|
30
35
|
requirements:
|
31
|
-
- -
|
36
|
+
- - '>='
|
32
37
|
- !ruby/object:Gem::Version
|
33
38
|
version: '0'
|
34
|
-
type: :development
|
35
39
|
prerelease: false
|
40
|
+
type: :development
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
36
43
|
version_requirements: !ruby/object:Gem::Requirement
|
37
44
|
requirements:
|
38
|
-
- -
|
45
|
+
- - '>='
|
39
46
|
- !ruby/object:Gem::Version
|
40
47
|
version: '0'
|
41
|
-
- !ruby/object:Gem::Dependency
|
42
|
-
name: rspec
|
43
48
|
requirement: !ruby/object:Gem::Requirement
|
44
49
|
requirements:
|
45
|
-
- -
|
50
|
+
- - '>='
|
46
51
|
- !ruby/object:Gem::Version
|
47
52
|
version: '0'
|
48
|
-
type: :development
|
49
53
|
prerelease: false
|
54
|
+
type: :development
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: simplecov
|
50
57
|
version_requirements: !ruby/object:Gem::Requirement
|
51
58
|
requirements:
|
52
|
-
- -
|
59
|
+
- - '>='
|
53
60
|
- !ruby/object:Gem::Version
|
54
61
|
version: '0'
|
55
|
-
- !ruby/object:Gem::Dependency
|
56
|
-
name: simplecov
|
57
62
|
requirement: !ruby/object:Gem::Requirement
|
58
63
|
requirements:
|
59
|
-
- -
|
64
|
+
- - '>='
|
60
65
|
- !ruby/object:Gem::Version
|
61
66
|
version: '0'
|
62
|
-
type: :development
|
63
67
|
prerelease: false
|
64
|
-
|
65
|
-
|
66
|
-
- - ! '>='
|
67
|
-
- !ruby/object:Gem::Version
|
68
|
-
version: '0'
|
69
|
-
description: A backwards compatible API for the server mod, Bukkit. Not being actively
|
70
|
-
maintained longer due to the legal issues and other drama surrounding the CraftBukkit
|
71
|
-
community currently.
|
68
|
+
type: :development
|
69
|
+
description: A backwards compatible API for the server mod, Bukkit. Not being actively maintained longer due to the legal issues and other drama surrounding the CraftBukkit community currently.
|
72
70
|
email:
|
73
71
|
- kbsj269@gmail.com
|
74
72
|
executables: []
|
@@ -81,7 +79,7 @@ files:
|
|
81
79
|
- LICENSE.txt
|
82
80
|
- README.md
|
83
81
|
- Rakefile
|
84
|
-
- bukkit
|
82
|
+
- bukkit.gemspec
|
85
83
|
- lib/bukkit.rb
|
86
84
|
- lib/bukkit/achievement.rb
|
87
85
|
- lib/bukkit/achievement/acquire_iron.rb
|
@@ -306,28 +304,28 @@ files:
|
|
306
304
|
- spec/lib/achievement_spec.rb
|
307
305
|
- spec/lib/art_spec.rb
|
308
306
|
- spec/spec_helper.rb
|
309
|
-
homepage:
|
307
|
+
homepage: ''
|
310
308
|
licenses:
|
311
309
|
- GNU General Public License
|
312
310
|
metadata: {}
|
313
|
-
post_install_message:
|
311
|
+
post_install_message:
|
314
312
|
rdoc_options: []
|
315
313
|
require_paths:
|
316
314
|
- lib
|
317
315
|
required_ruby_version: !ruby/object:Gem::Requirement
|
318
316
|
requirements:
|
319
|
-
- -
|
317
|
+
- - '>='
|
320
318
|
- !ruby/object:Gem::Version
|
321
319
|
version: '0'
|
322
320
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
323
321
|
requirements:
|
324
|
-
- -
|
322
|
+
- - '>='
|
325
323
|
- !ruby/object:Gem::Version
|
326
|
-
version:
|
324
|
+
version: '0'
|
327
325
|
requirements: []
|
328
|
-
rubyforge_project:
|
329
|
-
rubygems_version: 2.
|
330
|
-
signing_key:
|
326
|
+
rubyforge_project:
|
327
|
+
rubygems_version: 2.1.9
|
328
|
+
signing_key:
|
331
329
|
specification_version: 4
|
332
330
|
summary: The API for the formally popular server mod, Bukkit
|
333
331
|
test_files:
|