utilrb 2.1.0.rc1 → 2.1.0.rc2
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 +4 -4
- data/lib/utilrb/version.rb +1 -1
- data/utilrb.gemspec +18 -18
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b9bfb8e1175b1ffa405bea9fc06055b153364249
|
|
4
|
+
data.tar.gz: 0ff0ff328a8cdcef8337856285f52c81ef9a5381
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ae7c8b3f0ce2f1d0b61449e90b28694ab0063d6e5015b1404f0b66f9fb698098f71c8abc3438d1e9eadcdf4ff8c4f70d3ca7a3390d67e1a3b50717e3ee884cc5
|
|
7
|
+
data.tar.gz: d76cbb7814fc402e8f8c52d807fa0691685fb58e14f1d4706195eba7c59853faa0e3df7cf5cc472f0b323d161882e2dd651b4d65434169c4c37f0b0e06432aba
|
data/lib/utilrb/version.rb
CHANGED
data/utilrb.gemspec
CHANGED
|
@@ -4,24 +4,24 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
4
4
|
require 'utilrb/version'
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
7
|
+
s.name = "utilrb"
|
|
8
|
+
s.version = Utilrb::VERSION
|
|
9
|
+
s.authors = ["Sylvain Joyeux"]
|
|
10
|
+
s.email = "sylvain.joyeux@m4x.org"
|
|
11
|
+
s.summary = "Utilrb is yet another Ruby toolkit, in the spirit of facets"
|
|
12
|
+
s.description = "Utilrb is yet another Ruby toolkit, in the spirit of facets. It includes all\nthe standard class extensions I use in other projects."
|
|
13
|
+
s.homepage = "http://rock-robotics.org"
|
|
14
|
+
s.licenses = ["BSD"]
|
|
15
15
|
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
16
|
+
s.require_paths = ["lib"]
|
|
17
|
+
s.extensions = ['ext/utilrb/extconf.rb']
|
|
18
|
+
s.extra_rdoc_files = ["History.txt", "License.txt", "Manifest.txt", "History.txt"]
|
|
19
|
+
s.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
20
20
|
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
21
|
+
s.add_runtime_dependency "facets", ">= 2.4.0"
|
|
22
|
+
s.add_runtime_dependency "rake", ">= 0.9"
|
|
23
|
+
s.add_runtime_dependency "rake-compiler", "~> 0.8.0"
|
|
24
|
+
s.add_development_dependency "flexmock", ">= 2.0.0"
|
|
25
|
+
s.add_development_dependency "minitest", ">= 5.0", "~> 5.0"
|
|
26
|
+
s.add_development_dependency "coveralls"
|
|
27
27
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: utilrb
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.1.0.
|
|
4
|
+
version: 2.1.0.rc2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sylvain Joyeux
|
|
@@ -105,7 +105,8 @@ description: |-
|
|
|
105
105
|
the standard class extensions I use in other projects.
|
|
106
106
|
email: sylvain.joyeux@m4x.org
|
|
107
107
|
executables: []
|
|
108
|
-
extensions:
|
|
108
|
+
extensions:
|
|
109
|
+
- ext/utilrb/extconf.rb
|
|
109
110
|
extra_rdoc_files:
|
|
110
111
|
- History.txt
|
|
111
112
|
- License.txt
|