platform-tests 1.0.0-i686-linux
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 +7 -0
- data/.gitignore +17 -0
- data/Rakefile +1 -0
- data/lib/platform/tests.rb +1 -0
- data/platform-tests.gemspec +17 -0
- metadata +49 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: bd50b579eaa1e2934453066228ac7db2266f6b1a
|
4
|
+
data.tar.gz: b1a0cdfa9494fb0d209c6326c2845af1faf23931
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: dd04783660407685bf3624af8b064af4cdabbfd57320933c0279c1e124f256d6061f719c19cfa6023338dedd1b2e14d038598fc6f854d3f3d632dd64bda7f7a7
|
7
|
+
data.tar.gz: 0feb66368da9e0a9747d0c036164886938e451faf2d0d87ce73f854527333981fec99d90cd5a4d34dcdb2bb4d99b98e4eed2db4d562cc08fb3e4534b5aef5bc7
|
data/.gitignore
ADDED
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
@@ -0,0 +1 @@
|
|
1
|
+
PLATFORM_TESTS = "universal-linux"
|
@@ -0,0 +1,17 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
Gem::Specification.new do |spec|
|
3
|
+
spec.name = "platform-tests"
|
4
|
+
spec.version = "1.0.0"
|
5
|
+
spec.authors = ["Kim Burgestrand"]
|
6
|
+
spec.email = ["kim@burgestrand.se"]
|
7
|
+
spec.summary = %q{An experiment in how rubygems behaves with different platform options.}
|
8
|
+
spec.homepage = ""
|
9
|
+
spec.license = "MIT"
|
10
|
+
|
11
|
+
spec.files = `git ls-files`.split($/)
|
12
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
13
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
14
|
+
spec.require_paths = ["lib"]
|
15
|
+
|
16
|
+
spec.platform = "i686-linux"
|
17
|
+
end
|
metadata
ADDED
@@ -0,0 +1,49 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: platform-tests
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: i686-linux
|
6
|
+
authors:
|
7
|
+
- Kim Burgestrand
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2013-04-07 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description:
|
14
|
+
email:
|
15
|
+
- kim@burgestrand.se
|
16
|
+
executables: []
|
17
|
+
extensions: []
|
18
|
+
extra_rdoc_files: []
|
19
|
+
files:
|
20
|
+
- .gitignore
|
21
|
+
- Rakefile
|
22
|
+
- lib/platform/tests.rb
|
23
|
+
- platform-tests.gemspec
|
24
|
+
homepage: ''
|
25
|
+
licenses:
|
26
|
+
- MIT
|
27
|
+
metadata: {}
|
28
|
+
post_install_message:
|
29
|
+
rdoc_options: []
|
30
|
+
require_paths:
|
31
|
+
- lib
|
32
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
33
|
+
requirements:
|
34
|
+
- - '>='
|
35
|
+
- !ruby/object:Gem::Version
|
36
|
+
version: '0'
|
37
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
38
|
+
requirements:
|
39
|
+
- - '>='
|
40
|
+
- !ruby/object:Gem::Version
|
41
|
+
version: '0'
|
42
|
+
requirements: []
|
43
|
+
rubyforge_project:
|
44
|
+
rubygems_version: 2.0.3
|
45
|
+
signing_key:
|
46
|
+
specification_version: 4
|
47
|
+
summary: An experiment in how rubygems behaves with different platform options.
|
48
|
+
test_files: []
|
49
|
+
has_rdoc:
|