openmeta.rb 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +15 -9
- data/lib/openmeta/version.rb +1 -1
- metadata +3 -2
data/README.md
CHANGED
@@ -5,24 +5,26 @@
|
|
5
5
|
|
6
6
|
## DESCRIPTION:
|
7
7
|
|
8
|
-
openMeta in Ruby (MacRuby, more exactly!)
|
8
|
+
openMeta in Ruby (MacRuby, more exactly!). This gem ports [openMeta][openmeta] api to macruby using framework.
|
9
9
|
|
10
10
|
|
11
|
-
##
|
11
|
+
## INSTALLATION:
|
12
12
|
|
13
|
-
|
13
|
+
* `[sudo] macgem install openmeta.rb`
|
14
14
|
|
15
|
-
## REQUIREMENTS:
|
16
15
|
|
17
|
-
|
18
|
-
* thor
|
16
|
+
## KNOWN ISSUE:
|
19
17
|
|
20
|
-
|
21
|
-
|
22
|
-
* `gem install openmeta.rb`
|
18
|
+
### 1. Macruby Slow Startup
|
23
19
|
|
20
|
+
This is a [known commnon issue of macruby]( https://github.com/MacRuby/MacRuby/wiki/Common-Issues ).
|
21
|
+
One thing recommended is to add `VM_OPT_LEVEL=0` in front of the command line like
|
24
22
|
|
23
|
+
```bash
|
24
|
+
alias tag='VM_OPT_LEVEL=0 /usr/local/bin/tag'
|
25
|
+
```
|
25
26
|
|
27
|
+
In my environment, the startup time for the `tag` command is about 1 second.
|
26
28
|
|
27
29
|
## DEVELOPERS:
|
28
30
|
|
@@ -48,3 +50,7 @@ FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
48
50
|
|
49
51
|
You should have received a copy of the GNU General Public License along with
|
50
52
|
this program. If not, see <http://www.gnu.org/licenses/>.
|
53
|
+
|
54
|
+
|
55
|
+
[openmeta]: http://code.google.com/p/openmeta/
|
56
|
+
|
data/lib/openmeta/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: openmeta.rb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -59,7 +59,8 @@ dependencies:
|
|
59
59
|
- - ~>
|
60
60
|
- !ruby/object:Gem::Version
|
61
61
|
version: '3.5'
|
62
|
-
description: openMeta in Ruby (MacRuby, more exactly!)
|
62
|
+
description: openMeta in Ruby (MacRuby, more exactly!). This gem ports [openMeta][openmeta]
|
63
|
+
api to macruby using framework.
|
63
64
|
email:
|
64
65
|
- caizhaoff@gmail.com
|
65
66
|
executables:
|