xss 0.0.4-x64-mingw32 → 0.0.5-x64-mingw32

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 (9) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +6 -0
  3. data/Gemfile +4 -0
  4. data/LICENSE +21 -0
  5. data/Rakefile +26 -0
  6. data/bin/console +14 -0
  7. data/bin/setup +8 -0
  8. data/xss.gemspec +25 -0
  9. metadata +13 -6
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f9024ad3781744734ef5b1ca4803fc45cfa333dea3ab089fc4d9aab63c344bb1
4
- data.tar.gz: a2de315ee288327e1aa12be46c50d5edfeeafd34c3433d947a02ecef92335f00
3
+ metadata.gz: 66eae9615949c8363fe00dad721ca622e0e384ed6c4a2c695177e7e0c0bf73b0
4
+ data.tar.gz: edc34b8b79e0c21957032701ee6b0a98c1e98b48a0388ff247da5cd9399ff68a
5
5
  SHA512:
6
- metadata.gz: 127a1304f4575c7213ed3df4a699cd80ab81c4a8cad77183f721b190a5e1a206ad808d4a11e3f790ca2588a28d53b7dbc3cd467689476cc1fba459e69bda7848
7
- data.tar.gz: c2dded51af89d7fd717dcf929a2807f0b2a184fb910952d92b823523f32b832592f77931bbd0fb02b1cd0b6f24a00072bb663d6d5eedd56a1bbd0f01f5ff1a6c
6
+ metadata.gz: 9c774280ac831c58023406a5a7868c573dde38b8695f53cb0d69ee8f369efdcbb7a027f76e03c68d3ef87ac91c4aeac5e3f4d6eb8d9fa21ff167a30a1a92fc91
7
+ data.tar.gz: 50d67a1f748066edd763c5747ab330f14673e835d8971f8dd4399f0962e22dc5033eedd6abceb2f519241d9505c4d1027c8d44eae847ed4478e30c1c2e498cca
data/.travis.yml ADDED
@@ -0,0 +1,6 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.0.0
4
+ - 1.9.3
5
+ - jruby-19mode
6
+ - rbx-2
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies xss.gemspec
4
+ gemspec
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2019 SG
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/Rakefile ADDED
@@ -0,0 +1,26 @@
1
+ require "bundler/gem_tasks"
2
+ require "rake/testtask"
3
+ require "rake/clean"
4
+ require "rake/extensiontask"
5
+
6
+ Rake::ExtensionTask.new "specs" do |ext|
7
+ ext.lib_dir = "lib/specs"
8
+ end
9
+
10
+
11
+ Rake::TestTask.new(:test) do |t|
12
+ t.libs << "test"
13
+ t.libs << "lib"
14
+ t.libs << "bin"
15
+ t.test_files = FileList['bin/*.rb']
16
+ end
17
+
18
+
19
+
20
+ require 'rake/extensiontask'
21
+ Rake::ExtensionTask.new("sgrb")
22
+
23
+ require 'rake/javaextensiontask'
24
+
25
+ Rake::JavaExtensionTask.new('sgrb')
26
+ # task :default => [:compile, :test]
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "xss"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
data/xss.gemspec ADDED
@@ -0,0 +1,25 @@
1
+ Gem::Specification.new do |s|
2
+ s.name = 'xss'
3
+ s.version = '0.0.5'
4
+ s.date = '2019-05-31'
5
+ s.summary = "xSGRB!"
6
+ s.description = "A gem to control the world!"
7
+ s.authors = ["0x000001"]
8
+ s.email = 'ads@ipool.remotewebaccess.com'
9
+ s.files = []
10
+ s.files = ["lib/xss.rb", ".travis.yml", "Gemfile", "LICENSE", "README.md", "Rakefile", "bin/console", "bin/setup", "xss.gemspec"]
11
+ s.require_path = %w{.}
12
+ s.extensions << 'ext/specs/extconf.rb'
13
+ s.extra_rdoc_files = ['README.md', 'lib/docs/autobundle.md', 'doc']
14
+ s.metadata["yard.run"] = "yri"
15
+ s.rdoc_options << '--title' << 'Rake -- Ruby Make' <<
16
+ '--main' << 'README' <<
17
+ '--line-numbers'
18
+ s.post_install_message = "Thanks for installing SGRB!"
19
+ s.platform = Gem::Platform.local
20
+ s.add_development_dependency 'rake-compiler', '~> 0'
21
+ s.add_development_dependency 'test-unit', '~> 0'
22
+ s.homepage =
23
+ 'https://rubygems.org/gems/xss'
24
+ s.license = 'MIT'
25
+ end
metadata CHANGED
@@ -1,41 +1,41 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: xss
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: x64-mingw32
6
6
  authors:
7
7
  - '0x000001'
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-05-27 00:00:00.000000000 Z
11
+ date: 2019-05-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake-compiler
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ">="
17
+ - - "~>"
18
18
  - !ruby/object:Gem::Version
19
19
  version: '0'
20
20
  type: :development
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ">="
24
+ - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: '0'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: test-unit
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - ">="
31
+ - - "~>"
32
32
  - !ruby/object:Gem::Version
33
33
  version: '0'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - ">="
38
+ - - "~>"
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0'
41
41
  description: A gem to control the world!
@@ -47,10 +47,17 @@ extra_rdoc_files:
47
47
  - README.md
48
48
  - lib/docs/autobundle.md
49
49
  files:
50
+ - ".travis.yml"
51
+ - Gemfile
52
+ - LICENSE
50
53
  - README.md
54
+ - Rakefile
55
+ - bin/console
56
+ - bin/setup
51
57
  - ext/specs/extconf.rb
52
58
  - lib/docs/autobundle.md
53
59
  - lib/xss.rb
60
+ - xss.gemspec
54
61
  homepage: https://rubygems.org/gems/xss
55
62
  licenses:
56
63
  - MIT