spruz 0.1.5 → 0.2.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 (5) hide show
  1. data/LICENSE +18 -0
  2. data/README +20 -0
  3. data/VERSION +1 -1
  4. data/lib/spruz/version.rb +1 -1
  5. metadata +37 -41
data/LICENSE ADDED
@@ -0,0 +1,18 @@
1
+ Copyright (c) 2010 Florian Frank
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
4
+ this software and associated documentation files (the "Software"), to deal in
5
+ the Software without restriction, including without limitation the rights to
6
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
7
+ of the Software, and to permit persons to whom the Software is furnished to do
8
+ so, subject to the following conditions:
9
+
10
+ The above copyright notice and this permission notice shall be included in all
11
+ copies or substantial portions of the Software.
12
+
13
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X
16
+ CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
17
+ ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
18
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README CHANGED
@@ -0,0 +1,20 @@
1
+ = Spruz - Useful tools library in Ruby
2
+
3
+ == Description
4
+
5
+ Non yet.
6
+
7
+ == Download
8
+
9
+ The homepage of this library is located at
10
+
11
+ * http://flori.github.com/spruz
12
+
13
+ == Author
14
+
15
+ Florian Frank mailto:flori@ping.de
16
+
17
+ == License
18
+
19
+ This software is licensed under the X11 (or MIT) license:
20
+ http://www.xfree86.org/3.3.6/COPYRIGHT2.html#3
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.5
1
+ 0.2.0
@@ -1,6 +1,6 @@
1
1
  module Spruz
2
2
  # Spruz version
3
- VERSION = '0.1.5'
3
+ VERSION = '0.2.0'
4
4
  VERSION_ARRAY = VERSION.split(/\./).map { |x| x.to_i } # :nodoc:
5
5
  VERSION_MAJOR = VERSION_ARRAY[0] # :nodoc:
6
6
  VERSION_MINOR = VERSION_ARRAY[1] # :nodoc:
metadata CHANGED
@@ -1,13 +1,12 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: spruz
3
3
  version: !ruby/object:Gem::Version
4
- hash: 17
5
4
  prerelease: false
6
5
  segments:
7
6
  - 0
8
- - 1
9
- - 5
10
- version: 0.1.5
7
+ - 2
8
+ - 0
9
+ version: 0.2.0
11
10
  platform: ruby
12
11
  authors:
13
12
  - Florian Frank
@@ -15,7 +14,7 @@ autorequire:
15
14
  bindir: bin
16
15
  cert_chain: []
17
16
 
18
- date: 2010-09-16 00:00:00 +02:00
17
+ date: 2010-10-27 00:00:00 +02:00
19
18
  default_executable:
20
19
  dependencies: []
21
20
 
@@ -29,51 +28,52 @@ extra_rdoc_files:
29
28
  - README
30
29
  files:
31
30
  - bin/enum
32
- - install.rb
33
- - lib/spruz/bijection.rb
34
- - lib/spruz/count_by.rb
35
- - lib/spruz/deep_dup.rb
36
- - lib/spruz/generator.rb
37
- - lib/spruz/go.rb
38
- - lib/spruz/hash_union.rb
31
+ - VERSION
32
+ - README
33
+ - Rakefile
39
34
  - lib/spruz/limited.rb
40
- - lib/spruz/memoize.rb
41
- - lib/spruz/minimize.rb
42
- - lib/spruz/module_group.rb
43
35
  - lib/spruz/null.rb
44
- - lib/spruz/once.rb
45
- - lib/spruz/p.rb
46
- - lib/spruz/partial_application.rb
47
- - lib/spruz/round.rb
48
- - lib/spruz/shuffle.rb
49
- - lib/spruz/subhash.rb
50
36
  - lib/spruz/time_dummy.rb
37
+ - lib/spruz/shuffle.rb
51
38
  - lib/spruz/to_proc.rb
39
+ - lib/spruz/minimize.rb
40
+ - lib/spruz/subhash.rb
41
+ - lib/spruz/count_by.rb
42
+ - lib/spruz/round.rb
43
+ - lib/spruz/partial_application.rb
52
44
  - lib/spruz/uniq_by.rb
53
- - lib/spruz/version.rb
45
+ - lib/spruz/p.rb
46
+ - lib/spruz/bijection.rb
47
+ - lib/spruz/module_group.rb
48
+ - lib/spruz/deep_dup.rb
49
+ - lib/spruz/memoize.rb
54
50
  - lib/spruz/write.rb
55
- - lib/spruz/xt/blank.rb
56
- - lib/spruz/xt/count_by.rb
57
- - lib/spruz/xt/deep_dup.rb
58
- - lib/spruz/xt/full.rb
59
- - lib/spruz/xt/hash_union.rb
60
- - lib/spruz/xt/irb.rb
51
+ - lib/spruz/generator.rb
52
+ - lib/spruz/hash_union.rb
53
+ - lib/spruz/version.rb
54
+ - lib/spruz/go.rb
61
55
  - lib/spruz/xt/null.rb
62
- - lib/spruz/xt/p.rb
63
- - lib/spruz/xt/partial_application.rb
64
- - lib/spruz/xt/round.rb
56
+ - lib/spruz/xt/time_dummy.rb
65
57
  - lib/spruz/xt/shuffle.rb
66
58
  - lib/spruz/xt/subhash.rb
67
- - lib/spruz/xt/symbol_to_proc.rb
68
- - lib/spruz/xt/time_dummy.rb
59
+ - lib/spruz/xt/count_by.rb
60
+ - lib/spruz/xt/round.rb
61
+ - lib/spruz/xt/partial_application.rb
69
62
  - lib/spruz/xt/uniq_by.rb
63
+ - lib/spruz/xt/p.rb
64
+ - lib/spruz/xt/blank.rb
65
+ - lib/spruz/xt/deep_dup.rb
66
+ - lib/spruz/xt/symbol_to_proc.rb
70
67
  - lib/spruz/xt/write.rb
68
+ - lib/spruz/xt/hash_union.rb
69
+ - lib/spruz/xt/full.rb
70
+ - lib/spruz/xt/irb.rb
71
+ - lib/spruz/once.rb
71
72
  - lib/spruz/xt.rb
72
73
  - lib/spruz.rb
73
- - Rakefile
74
- - README
75
74
  - tests/test_spruz.rb
76
- - VERSION
75
+ - install.rb
76
+ - LICENSE
77
77
  has_rdoc: true
78
78
  homepage: http://flori.github.com/spruz
79
79
  licenses: []
@@ -87,27 +87,23 @@ rdoc_options:
87
87
  require_paths:
88
88
  - lib
89
89
  required_ruby_version: !ruby/object:Gem::Requirement
90
- none: false
91
90
  requirements:
92
91
  - - ">="
93
92
  - !ruby/object:Gem::Version
94
- hash: 3
95
93
  segments:
96
94
  - 0
97
95
  version: "0"
98
96
  required_rubygems_version: !ruby/object:Gem::Requirement
99
- none: false
100
97
  requirements:
101
98
  - - ">="
102
99
  - !ruby/object:Gem::Version
103
- hash: 3
104
100
  segments:
105
101
  - 0
106
102
  version: "0"
107
103
  requirements: []
108
104
 
109
105
  rubyforge_project:
110
- rubygems_version: 1.3.7
106
+ rubygems_version: 1.3.6
111
107
  signing_key:
112
108
  specification_version: 3
113
109
  summary: Useful stuff.