melt 0.1 → 0.2
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/ext/melt/MeltService.java +46 -0
- data/lib/melt.rb +10 -0
- metadata +4 -11
- data/.gitignore +0 -14
- data/.travis.yml +0 -3
- data/Gemfile +0 -4
- data/LICENSE.txt +0 -21
- data/README.md +0 -45
- data/Rakefile +0 -16
- data/ext/melt/melt.h +0 -8
- data/melt.gemspec +0 -30
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 68089896ba58f1f0a0eeb80c97baf1983f6a40e6
|
4
|
+
data.tar.gz: aaa92be1d91097227bd85ec14839bef00f4b9129
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 82fa7b5f71f0ae69703829f60adea59a7f2661ae8805c637d295f81b4db3e53c68afc4e63ee240f71c4a9f74e131131fa234fcb0925a072505df3f4fe02a56bc
|
7
|
+
data.tar.gz: 75796e3b6ef3704d392c4c7273cfcb217d9fe31d8c7a7cd70d1e3a25187bfe1cd8d009ad7fa161c108094ca4bae2f6f16e7b9b3ed4bded1e4ffaa1cc673db181
|
@@ -0,0 +1,46 @@
|
|
1
|
+
package org.zizkovrb.melt;
|
2
|
+
|
3
|
+
import java.io.IOException;
|
4
|
+
|
5
|
+
import org.jruby.Ruby;
|
6
|
+
import org.jruby.RubyClass;
|
7
|
+
import org.jruby.RubyModule;
|
8
|
+
import org.jruby.RubyObject;
|
9
|
+
import org.jruby.anno.JRubyMethod;
|
10
|
+
import org.jruby.runtime.ObjectAllocator;
|
11
|
+
import org.jruby.runtime.ThreadContext;
|
12
|
+
import org.jruby.runtime.builtin.IRubyObject;
|
13
|
+
import org.jruby.runtime.load.BasicLibraryService;
|
14
|
+
|
15
|
+
public class MeltService implements BasicLibraryService {
|
16
|
+
private Ruby runtime;
|
17
|
+
|
18
|
+
public boolean basicLoad(Ruby runtime) throws IOException {
|
19
|
+
this.runtime = runtime;
|
20
|
+
RubyModule melt = runtime.defineModule("Melt");
|
21
|
+
|
22
|
+
RubyClass down = melt.defineClassUnder("Down", runtime.getObject(), new ObjectAllocator() {
|
23
|
+
public IRubyObject allocate(Ruby runtime, RubyClass rubyClass) {
|
24
|
+
return new MeltDown(runtime, rubyClass);
|
25
|
+
}
|
26
|
+
|
27
|
+
});
|
28
|
+
|
29
|
+
down.defineAnnotatedMethods(MeltDown.class);
|
30
|
+
return true;
|
31
|
+
}
|
32
|
+
|
33
|
+
public class MeltDown extends RubyObject {
|
34
|
+
public MeltDown(final Ruby runtime, RubyClass rubyClass) {
|
35
|
+
super(runtime, rubyClass);
|
36
|
+
}
|
37
|
+
|
38
|
+
@JRubyMethod
|
39
|
+
public IRubyObject execute(ThreadContext context, IRubyObject target) {
|
40
|
+
if(target.isFrozen()) {
|
41
|
+
target.setFrozen(false);
|
42
|
+
}
|
43
|
+
return target;
|
44
|
+
}
|
45
|
+
}
|
46
|
+
}
|
data/lib/melt.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: melt
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: '0.
|
4
|
+
version: '0.2'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Josef Šimánek
|
8
8
|
autorequire:
|
9
|
-
bindir:
|
9
|
+
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-02-
|
11
|
+
date: 2015-02-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -74,17 +74,10 @@ extensions:
|
|
74
74
|
- ext/melt/extconf.rb
|
75
75
|
extra_rdoc_files: []
|
76
76
|
files:
|
77
|
-
-
|
78
|
-
- ".travis.yml"
|
79
|
-
- Gemfile
|
80
|
-
- LICENSE.txt
|
81
|
-
- README.md
|
82
|
-
- Rakefile
|
77
|
+
- ext/melt/MeltService.java
|
83
78
|
- ext/melt/extconf.rb
|
84
79
|
- ext/melt/melt.c
|
85
|
-
- ext/melt/melt.h
|
86
80
|
- lib/melt.rb
|
87
|
-
- melt.gemspec
|
88
81
|
homepage: https://github.com/zizkovrb/melt
|
89
82
|
licenses:
|
90
83
|
- MIT
|
data/.gitignore
DELETED
data/.travis.yml
DELETED
data/Gemfile
DELETED
data/LICENSE.txt
DELETED
@@ -1,21 +0,0 @@
|
|
1
|
-
The MIT License (MIT)
|
2
|
-
|
3
|
-
Copyright (c) 2015 Josef Šimánek
|
4
|
-
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
7
|
-
in the Software without restriction, including without limitation the rights
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
10
|
-
furnished to do so, subject to the following conditions:
|
11
|
-
|
12
|
-
The above copyright notice and this permission notice shall be included in
|
13
|
-
all copies or substantial portions of the Software.
|
14
|
-
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
-
THE SOFTWARE.
|
data/README.md
DELETED
@@ -1,45 +0,0 @@
|
|
1
|
-
# Melt [](https://travis-ci.org/zizkovrb/melt)
|
2
|
-
|
3
|
-
[There is no way to unfreeze a frozen object.](http://ruby-doc.org/core-2.2.0/Object.html#method-i-freeze) Really? Have you ever heard about icebergs or icicles? What about melting?
|
4
|
-
|
5
|
-

|
6
|
-
|
7
|
-
## Installation
|
8
|
-
|
9
|
-
Add this line to your application's Gemfile:
|
10
|
-
|
11
|
-
```ruby
|
12
|
-
gem 'melt'
|
13
|
-
```
|
14
|
-
|
15
|
-
And then execute:
|
16
|
-
|
17
|
-
$ bundle
|
18
|
-
|
19
|
-
Or install it yourself as:
|
20
|
-
|
21
|
-
$ gem install melt
|
22
|
-
|
23
|
-
## Usage
|
24
|
-
|
25
|
-
```ruby
|
26
|
-
require 'melt'
|
27
|
-
|
28
|
-
icicle = "----->"
|
29
|
-
|
30
|
-
# winter
|
31
|
-
icicle.freeze
|
32
|
-
icicle.frozen? #=> true
|
33
|
-
|
34
|
-
# spring
|
35
|
-
icicle.melt
|
36
|
-
icicle.frozen? #=> false
|
37
|
-
```
|
38
|
-
|
39
|
-
## Contributing
|
40
|
-
|
41
|
-
1. Fork it ( https://github.com/zizkovrb/melt/fork )
|
42
|
-
2. Create your feature branch (`git checkout -b my-new-feature`)
|
43
|
-
3. Commit your changes (`git commit -am 'Add some feature'`)
|
44
|
-
4. Push to the branch (`git push origin my-new-feature`)
|
45
|
-
5. Create a new Pull Request
|
data/Rakefile
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
require "bundler/gem_tasks"
|
2
|
-
require "rake/testtask"
|
3
|
-
|
4
|
-
Rake::TestTask.new(:test) do |t|
|
5
|
-
t.libs << "test"
|
6
|
-
end
|
7
|
-
|
8
|
-
task :default => [:clean, :build, :test]
|
9
|
-
|
10
|
-
require "rake/extensiontask"
|
11
|
-
|
12
|
-
task :build => :compile
|
13
|
-
|
14
|
-
Rake::ExtensionTask.new("melt") do |ext|
|
15
|
-
ext.lib_dir = "lib/melt"
|
16
|
-
end
|
data/ext/melt/melt.h
DELETED
data/melt.gemspec
DELETED
@@ -1,30 +0,0 @@
|
|
1
|
-
# coding: utf-8
|
2
|
-
lib = File.expand_path('../lib', __FILE__)
|
3
|
-
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
-
|
5
|
-
Gem::Specification.new do |spec|
|
6
|
-
spec.name = "melt"
|
7
|
-
spec.version = "0.1"
|
8
|
-
spec.authors = ["Josef Šimánek"]
|
9
|
-
spec.email = ["josef.simanek@gmail.com"]
|
10
|
-
|
11
|
-
if spec.respond_to?(:metadata)
|
12
|
-
spec.metadata['allowed_push_host'] = "https://rubygems.org"
|
13
|
-
end
|
14
|
-
|
15
|
-
spec.summary = %q{There is no way to unfreeze a frozen object. Really?}
|
16
|
-
spec.description = %q{Have you ever heard about icebergs or icicles? What about melting?}
|
17
|
-
spec.homepage = "https://github.com/zizkovrb/melt"
|
18
|
-
spec.license = "MIT"
|
19
|
-
|
20
|
-
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
21
|
-
spec.bindir = "exe"
|
22
|
-
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
23
|
-
spec.require_paths = ["lib"]
|
24
|
-
spec.extensions = ["ext/melt/extconf.rb"]
|
25
|
-
|
26
|
-
spec.add_development_dependency "bundler", "~> 1.7"
|
27
|
-
spec.add_development_dependency "rake", "~> 10.0"
|
28
|
-
spec.add_development_dependency "rake-compiler"
|
29
|
-
spec.add_development_dependency "minitest"
|
30
|
-
end
|