forked from libvips/ruby-vips
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTODO
78 lines (53 loc) · 1.36 KB
/
TODO
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# Notes
- travis needs fixing, we have this is 0.3
rvm:
- 1.9.3
- 2.0
- 2.1
script: "rake"
gemfile:
- Gemfile
before_install:
- uname -a
- sudo apt-get update
- sudo apt-get install libvips-dev
before_script:
- ./compile
- need something like the old ruby-vips occasional GC stuff, we can fill
memory before a GC is triggered
need a test case
- mail about the getpoint unimplemented error
http://sourceforge.net/p/ruby-gnome2/mailman/ruby-gnome2-devel-en/thread/CAGNS0RuZ5N6bha3M7B0%2BYf2M9-oni44idzZO17mtQiykS%2BmJKQ%40mail.gmail.com/#msg34790843
- still missing a few enum docs
- add complex constants, eg.
Complex(1, 2)
=> (1+2i)
- fix travis ... the difficulty is getting a libvips with goi built first,
perhaps copy-paste from libvips .travis.yml
this is almost enough to do the ruby side:
----------
env:
global:
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true
language: ruby
rvm:
- 2.1
- 2.2
- 2.3
script: "bundle exec rake"
gemfile:
- Gemfile
before_install:
- uname -a
- sudo apt-get update
- sudo apt-get install libvips-dev
-----------
# Common operations
- version bump
edit lib/vips/version.rb and VERSION
- reinstall local copy of gem after a change
bundle exec rake install
- run test suite
bundle exec rake
- push new gem to rubygems, tag repository with version
bundle exec rake release