Skip to content

Commit 9aae997

Browse files
committed
first commit of 1.0
the new vips8 binding finally lands!
1 parent fe96adf commit 9aae997

File tree

125 files changed

+5417
-13144
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

125 files changed

+5417
-13144
lines changed

.gitignore

+2-9
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,4 @@
1-
ruby-vips-*.gem
21
.yardoc
3-
.*.swp
4-
tags
2+
*.swp
3+
doc
54

6-
# Ignore compiler-generated files
7-
*.so
8-
*.o
9-
/Makefile
10-
/mkmf.log
11-
rdoc

.rspec

-2
This file was deleted.

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# master
22

3+
# Version 1.0.0
4+
5+
* complete rewrite, API break [John Cupitt]
6+
37
# Version 0.3.14
48

59
* more GC tuning [felixbuenemann]

Gemfile

+12-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
1-
source "http://rubygems.org"
1+
source 'http://rubygems.org'
22

3+
# runtime deps
4+
gem "gobject-introspection", "~> 3.0"
5+
6+
# Add dependencies to develop your gem here.
7+
# Include everything needed to run rake, tests, features, etc.
38
group :development do
4-
gem "rdoc", "~> 3.12"
5-
gem "bundler", "~> 1.0"
6-
gem "jeweler", "~> 1.8"
7-
gem "rspec", "~> 3.4"
9+
gem "rspec", "~> 3.3"
10+
gem "yard", "~> 0.8"
11+
gem "redcarpet", "~> 3.3"
12+
gem "github-markup", "~> 1.4"
13+
gem "bundler", "~> 1.0"
14+
gem "jeweler", "~> 2.0"
815
end

Gemfile.lock

+46-31
Original file line numberDiff line numberDiff line change
@@ -1,51 +1,60 @@
11
GEM
22
remote: http://rubygems.org/
33
specs:
4-
addressable (2.3.6)
4+
addressable (2.4.0)
55
builder (3.2.2)
6+
descendants_tracker (0.0.4)
7+
thread_safe (~> 0.3, >= 0.3.1)
68
diff-lcs (1.2.5)
7-
faraday (0.8.9)
8-
multipart-post (~> 1.2.0)
9-
git (1.2.7)
10-
github_api (0.10.1)
11-
addressable
12-
faraday (~> 0.8.1)
13-
hashie (>= 1.2)
14-
multi_json (~> 1.4)
15-
nokogiri (~> 1.5.2)
9+
faraday (0.9.2)
10+
multipart-post (>= 1.2, < 3)
11+
git (1.3.0)
12+
github-markup (1.4.0)
13+
github_api (0.14.0)
14+
addressable (~> 2.4.0)
15+
descendants_tracker (~> 0.0.4)
16+
faraday (~> 0.8, < 0.10)
17+
hashie (>= 3.4)
1618
oauth2
17-
hashie (3.2.0)
18-
highline (1.6.21)
19-
jeweler (1.8.8)
19+
glib2 (3.0.8)
20+
pkg-config
21+
gobject-introspection (3.0.8)
22+
glib2 (= 3.0.8)
23+
hashie (3.4.4)
24+
highline (1.7.8)
25+
jeweler (2.1.1)
2026
builder
21-
bundler (~> 1.0)
27+
bundler (>= 1.0)
2228
git (>= 1.2.5)
23-
github_api (= 0.10.1)
29+
github_api
2430
highline (>= 1.6.15)
25-
nokogiri (= 1.5.10)
31+
nokogiri (>= 1.5.10)
2632
rake
2733
rdoc
34+
semver
2835
json (1.8.3)
29-
jwt (1.0.0)
30-
multi_json (1.10.1)
36+
jwt (1.5.1)
37+
multi_json (1.12.1)
3138
multi_xml (0.5.5)
32-
multipart-post (1.2.0)
33-
nokogiri (1.5.10)
34-
oauth2 (1.0.0)
39+
multipart-post (2.0.0)
40+
nokogiri (1.6.7.2)
41+
oauth2 (1.1.0)
3542
faraday (>= 0.8, < 0.10)
36-
jwt (~> 1.0)
43+
jwt (~> 1.0, < 1.5.2)
3744
multi_json (~> 1.3)
3845
multi_xml (~> 0.5)
39-
rack (~> 1.2)
40-
rack (1.5.2)
41-
rake (10.2.2)
42-
rdoc (3.12.2)
46+
rack (>= 1.2, < 3)
47+
pkg-config (1.1.7)
48+
rack (1.6.4)
49+
rake (11.1.2)
50+
rdoc (4.2.2)
4351
json (~> 1.4)
52+
redcarpet (3.3.4)
4453
rspec (3.4.0)
4554
rspec-core (~> 3.4.0)
4655
rspec-expectations (~> 3.4.0)
4756
rspec-mocks (~> 3.4.0)
48-
rspec-core (3.4.1)
57+
rspec-core (3.4.4)
4958
rspec-support (~> 3.4.0)
5059
rspec-expectations (3.4.0)
5160
diff-lcs (>= 1.2.0, < 2.0)
@@ -54,15 +63,21 @@ GEM
5463
diff-lcs (>= 1.2.0, < 2.0)
5564
rspec-support (~> 3.4.0)
5665
rspec-support (3.4.1)
66+
semver (1.0.1)
67+
thread_safe (0.3.5)
68+
yard (0.8.7.6)
5769

5870
PLATFORMS
5971
ruby
6072

6173
DEPENDENCIES
6274
bundler (~> 1.0)
63-
jeweler (~> 1.8)
64-
rdoc (~> 3.12)
65-
rspec (~> 3.4)
75+
github-markup (~> 1.4)
76+
gobject-introspection (~> 3.0)
77+
jeweler (~> 2.0)
78+
redcarpet (~> 3.3)
79+
rspec (~> 3.3)
80+
yard (~> 0.8)
6681

6782
BUNDLED WITH
68-
1.10.6
83+
1.11.2

LICENSE renamed to LICENSE.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2010 Timothy Elliott
1+
Copyright (c) 2014 John Cupitt
22

33
Permission is hereby granted, free of charge, to any person obtaining
44
a copy of this software and associated documentation files (the

0 commit comments

Comments
 (0)