builtinextension 0.0.0 → 0.0.1
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.
- data/Rakefile +1 -1
- data/VERSION +1 -1
- data/builtinextension.gemspec +2 -4
- data/spec/spec_helper.rb +2 -1
- data/spec/string_escape_zsh_spec.rb +4 -1
- metadata +6 -8
- data/lib/builtinextension.rb +0 -0
- data/spec/builtinextension_spec.rb +0 -7
data/Rakefile
CHANGED
@@ -18,7 +18,7 @@ Jeweler::Tasks.new do |gem|
|
|
18
18
|
gem.homepage = "http://github.com/ippei94da/builtinextension"
|
19
19
|
gem.license = "MIT"
|
20
20
|
gem.summary = %Q{Method as extension for builtin classes.}
|
21
|
-
gem.description = %Q{
|
21
|
+
gem.description = %Q{Personally frequently used methods for builtin classes,
|
22
22
|
e.g., String, Array, etc.
|
23
23
|
These methods are not implemented in Ruby and
|
24
24
|
are doubted to offer to be implemented into Ruby core system.
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.1
|
data/builtinextension.gemspec
CHANGED
@@ -5,12 +5,12 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = "builtinextension"
|
8
|
-
s.version = "0.0.
|
8
|
+
s.version = "0.0.1"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["ippei94da"]
|
12
12
|
s.date = "2012-04-02"
|
13
|
-
s.description = "
|
13
|
+
s.description = "Personally frequently used methods for builtin classes,\n e.g., String, Array, etc.\n These methods are not implemented in Ruby and\n are doubted to offer to be implemented into Ruby core system.\n A main target is my personal programming.\n "
|
14
14
|
s.email = "ippei94da@gmail.com"
|
15
15
|
s.extra_rdoc_files = [
|
16
16
|
"LICENSE.txt",
|
@@ -25,9 +25,7 @@ Gem::Specification.new do |s|
|
|
25
25
|
"Rakefile",
|
26
26
|
"VERSION",
|
27
27
|
"builtinextension.gemspec",
|
28
|
-
"lib/builtinextension.rb",
|
29
28
|
"lib/string_escape_zsh.rb",
|
30
|
-
"spec/builtinextension_spec.rb",
|
31
29
|
"spec/spec_helper.rb",
|
32
30
|
"spec/string_escape_zsh_spec.rb"
|
33
31
|
]
|
data/spec/spec_helper.rb
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
2
2
|
$LOAD_PATH.unshift(File.dirname(__FILE__))
|
3
3
|
require 'rspec'
|
4
|
-
require '
|
4
|
+
#require 'string_escape_zsh_spec'
|
5
|
+
|
5
6
|
|
6
7
|
# Requires supporting files with custom matchers and macros, etc,
|
7
8
|
# in ./support/ and its subdirectories.
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: builtinextension
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -91,10 +91,10 @@ dependencies:
|
|
91
91
|
- - ! '>='
|
92
92
|
- !ruby/object:Gem::Version
|
93
93
|
version: '0'
|
94
|
-
description: ! "
|
95
|
-
etc.\n These methods are not implemented in Ruby and\n are
|
96
|
-
to be implemented into Ruby core system.\n A main target is
|
97
|
-
|
94
|
+
description: ! "Personally frequently used methods for builtin classes,\n e.g.,
|
95
|
+
String, Array, etc.\n These methods are not implemented in Ruby and\n are
|
96
|
+
doubted to offer to be implemented into Ruby core system.\n A main target is
|
97
|
+
my personal programming.\n "
|
98
98
|
email: ippei94da@gmail.com
|
99
99
|
executables: []
|
100
100
|
extensions: []
|
@@ -110,9 +110,7 @@ files:
|
|
110
110
|
- Rakefile
|
111
111
|
- VERSION
|
112
112
|
- builtinextension.gemspec
|
113
|
-
- lib/builtinextension.rb
|
114
113
|
- lib/string_escape_zsh.rb
|
115
|
-
- spec/builtinextension_spec.rb
|
116
114
|
- spec/spec_helper.rb
|
117
115
|
- spec/string_escape_zsh_spec.rb
|
118
116
|
homepage: http://github.com/ippei94da/builtinextension
|
@@ -130,7 +128,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
130
128
|
version: '0'
|
131
129
|
segments:
|
132
130
|
- 0
|
133
|
-
hash:
|
131
|
+
hash: -978337805
|
134
132
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
135
133
|
none: false
|
136
134
|
requirements:
|
data/lib/builtinextension.rb
DELETED
File without changes
|