cast_off 0.2.0 → 0.2.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/README +0 -5
- data/README.en +1 -2
- data/cast_off.gemspec +4 -4
- metadata +5 -5
data/README
CHANGED
@@ -17,15 +17,10 @@ Ruby 処理系のライセンスに従います。
|
|
17
17
|
|
18
18
|
|
19
19
|
* インストール方法
|
20
|
-
ソースコードは RubyForge にアップロードしているので、
|
21
|
-
|
22
20
|
$gem install cast_off
|
23
21
|
|
24
|
-
としてください。
|
25
|
-
|
26
22
|
現時点での実装は Ruby1.9.3 の VM の実装に強く依存しているため、Ruby1.9.3 のみ対応しています。
|
27
23
|
他のバージョンの Ruby 処理系では、動作しないため、ご注意ください。
|
28
|
-
尚、Ruby1.9.4 などの今後リリースされるバージョンには、その都度対応していく予定です。
|
29
24
|
|
30
25
|
|
31
26
|
|
data/README.en
CHANGED
@@ -18,8 +18,7 @@ Same as the license of Ruby1.9.3 runtime.
|
|
18
18
|
|
19
19
|
|
20
20
|
* Installation
|
21
|
-
$gem
|
22
|
-
$gem install cast_off-0.2.0.gem --local
|
21
|
+
$gem install cast_off
|
23
22
|
|
24
23
|
Currently, CastOff supports Ruby1.9.3 only.
|
25
24
|
So, if you attempt to use CastOff, please install CastOff under Ruby1.9.3 runtime.
|
data/cast_off.gemspec
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
Gem::Specification.new do |spec|
|
2
2
|
spec.name = "cast_off"
|
3
|
-
spec.version = "0.2.
|
3
|
+
spec.version = "0.2.1"
|
4
4
|
spec.platform = Gem::Platform::RUBY
|
5
|
-
spec.summary = "
|
5
|
+
spec.summary = "Performance improvement tool for Ruby1.9.3"
|
6
6
|
spec.description = <<-EOS
|
7
|
-
CastOff is performance improvement tool for Ruby1.9.3
|
7
|
+
CastOff is a performance improvement tool for Ruby1.9.3
|
8
8
|
EOS
|
9
9
|
spec.files = Dir['{lib/**/*,ext/**/*}'] + %w[
|
10
10
|
cast_off.gemspec
|
@@ -20,6 +20,6 @@ CastOff is performance improvement tool for Ruby1.9.3
|
|
20
20
|
spec.email = 'shiba@rvm.jp'
|
21
21
|
spec.homepage = 'http://github.com/soba1104/CastOff'
|
22
22
|
#spec.rubyforge_project = 'cast_off'
|
23
|
-
spec.required_ruby_version = '
|
23
|
+
spec.required_ruby_version = '= 1.9.3'
|
24
24
|
end
|
25
25
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cast_off
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -11,7 +11,7 @@ bindir: bin
|
|
11
11
|
cert_chain: []
|
12
12
|
date: 2011-11-07 00:00:00.000000000 Z
|
13
13
|
dependencies: []
|
14
|
-
description: ! 'CastOff is performance improvement tool for Ruby1.9.3
|
14
|
+
description: ! 'CastOff is a performance improvement tool for Ruby1.9.3
|
15
15
|
|
16
16
|
'
|
17
17
|
email: shiba@rvm.jp
|
@@ -89,9 +89,9 @@ require_paths:
|
|
89
89
|
required_ruby_version: !ruby/object:Gem::Requirement
|
90
90
|
none: false
|
91
91
|
requirements:
|
92
|
-
- -
|
92
|
+
- - =
|
93
93
|
- !ruby/object:Gem::Version
|
94
|
-
version: 1.9.
|
94
|
+
version: 1.9.3
|
95
95
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
96
96
|
none: false
|
97
97
|
requirements:
|
@@ -103,5 +103,5 @@ rubyforge_project:
|
|
103
103
|
rubygems_version: 1.8.11
|
104
104
|
signing_key:
|
105
105
|
specification_version: 3
|
106
|
-
summary:
|
106
|
+
summary: Performance improvement tool for Ruby1.9.3
|
107
107
|
test_files: []
|