dragonfly 0.2.1 → 0.3.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of dragonfly might be problematic. Click here for more details.
- data/.yardopts +12 -4
- data/README.md +5 -2
- data/Rakefile +4 -2
- data/VERSION +1 -1
- data/dragonfly-rails.gemspec +2 -2
- data/dragonfly.gemspec +3 -2
- data/extra_docs/Index.md +42 -0
- data/yard/setup.rb +0 -4
- metadata +3 -2
data/.yardopts
CHANGED
@@ -1,4 +1,12 @@
|
|
1
|
-
--
|
2
|
-
-
|
3
|
-
|
4
|
-
|
1
|
+
--main extra_docs/Index.md
|
2
|
+
-
|
3
|
+
README.md
|
4
|
+
extra_docs/GettingStarted.md
|
5
|
+
extra_docs/UsingWithRails.md
|
6
|
+
extra_docs/ActiveRecord.md
|
7
|
+
extra_docs/DataStorage.md
|
8
|
+
extra_docs/Shortcuts.md
|
9
|
+
extra_docs/Analysers.md
|
10
|
+
extra_docs/Processing.md
|
11
|
+
extra_docs/Encoding.md
|
12
|
+
LICENSE
|
data/README.md
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
Dragonfly
|
2
2
|
===========
|
3
3
|
|
4
|
-
Dragonfly is
|
4
|
+
Dragonfly is a {http://rack.rubyforge.org Rack} framework for on-the-fly processing and encoding.
|
5
5
|
It includes an extension for Ruby on Rails to enable easy image handling.
|
6
6
|
|
7
7
|
For the lazy rails user
|
@@ -48,12 +48,15 @@ Dragonfly is primarily a Rack app, the Rails part of it being nothing more than
|
|
48
48
|
|
49
49
|
It is intended to be highly customizable, and is not limited to images, but any data type that could suit on-the-fly processing/encoding.
|
50
50
|
|
51
|
-
For more info, consult the <a href="http://
|
51
|
+
For more info, consult the <a href="http://markevans.github.com/dragonfly">DOCUMENTATION</a>
|
52
52
|
|
53
53
|
Issues
|
54
54
|
======
|
55
55
|
Please use the <a href="http://github.com/markevans/dragonfly/issues">github issue tracker</a> if you have any issues.
|
56
56
|
|
57
|
+
Suggestions/Questions
|
58
|
+
=====================
|
59
|
+
{http://groups.google.com/group/dragonfly-users}
|
57
60
|
|
58
61
|
Credits
|
59
62
|
=======
|
data/Rakefile
CHANGED
@@ -12,6 +12,7 @@ begin
|
|
12
12
|
s.add_dependency('rack')
|
13
13
|
s.has_rdoc = 'yard'
|
14
14
|
end
|
15
|
+
Jeweler::GemcutterTasks.new
|
15
16
|
Jeweler::Tasks.new do |s|
|
16
17
|
s.name = "dragonfly-rails"
|
17
18
|
s.summary = %Q{dragonfly-rails has no code of its own - it simply gathers dependencies for using dragonfly in rails}
|
@@ -26,6 +27,7 @@ begin
|
|
26
27
|
s.add_dependency('rack-cache')
|
27
28
|
s.add_dependency('rmagick')
|
28
29
|
end
|
30
|
+
Jeweler::GemcutterTasks.new
|
29
31
|
rescue LoadError
|
30
32
|
puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
|
31
33
|
end
|
@@ -42,11 +44,11 @@ end
|
|
42
44
|
require 'yard'
|
43
45
|
YARD::Rake::YardocTask.new do |t|
|
44
46
|
t.files = ['lib/**/*.rb', 'markdown_docs/*']
|
45
|
-
t.options = %w(
|
47
|
+
t.options = %w(-e yard/setup.rb)
|
46
48
|
end
|
47
49
|
YARD::Rake::YardocTask.new 'yard:changed' do |t|
|
48
50
|
t.files = `git stat | grep '.rb' | grep modified | grep -v yard | cut -d' ' -f4`.split
|
49
|
-
t.options = %w(
|
51
|
+
t.options = %w(-e yard/setup.rb)
|
50
52
|
end
|
51
53
|
|
52
54
|
require 'spec/rake/spectask'
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.
|
1
|
+
0.3.0
|
data/dragonfly-rails.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{dragonfly-rails}
|
8
|
-
s.version = "0.
|
8
|
+
s.version = "0.3.0"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Mark Evans"]
|
12
|
-
s.date = %q{2009-12-
|
12
|
+
s.date = %q{2009-12-15}
|
13
13
|
s.email = %q{mark@new-bamboo.co.uk}
|
14
14
|
s.homepage = %q{http://github.com/markevans/dragonfly}
|
15
15
|
s.rdoc_options = ["--charset=UTF-8"]
|
data/dragonfly.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{dragonfly}
|
8
|
-
s.version = "0.
|
8
|
+
s.version = "0.3.0"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Mark Evans"]
|
12
|
-
s.date = %q{2009-12-
|
12
|
+
s.date = %q{2009-12-15}
|
13
13
|
s.email = %q{mark@new-bamboo.co.uk}
|
14
14
|
s.extra_rdoc_files = [
|
15
15
|
"LICENSE",
|
@@ -32,6 +32,7 @@ Gem::Specification.new do |s|
|
|
32
32
|
"extra_docs/DataStorage.md",
|
33
33
|
"extra_docs/Encoding.md",
|
34
34
|
"extra_docs/GettingStarted.md",
|
35
|
+
"extra_docs/Index.md",
|
35
36
|
"extra_docs/Processing.md",
|
36
37
|
"extra_docs/Shortcuts.md",
|
37
38
|
"extra_docs/UsingWithRails.md",
|
data/extra_docs/Index.md
ADDED
@@ -0,0 +1,42 @@
|
|
1
|
+
Dragonfly Documentation
|
2
|
+
=======================
|
3
|
+
|
4
|
+
Welcome to the documentation for Dragonfly!
|
5
|
+
|
6
|
+
Dragonfly is a {http://rack.rubyforge.org Rack} framework for on-the-fly processing and encoding.
|
7
|
+
|
8
|
+
It includes an extension for Ruby on Rails to enable easy image handling.
|
9
|
+
It is intended to be highly customizable, and is not limited to images, but any data type that could suit on-the-fly processing/encoding.
|
10
|
+
|
11
|
+
Use the links at the top-right to navigate around the code, or jump straight to one of the guides below.
|
12
|
+
|
13
|
+
- {file:README.md Quick start for using in Rails for image handling (README)}
|
14
|
+
- {file:GettingStarted.md Getting started}
|
15
|
+
- {file:UsingWithRails.md Using with Rails}
|
16
|
+
- {file:ActiveRecord.md Using with ActiveRecord}
|
17
|
+
- {file:DataStorage.md Data Storage}
|
18
|
+
- {file:Analysers.md Analysers}
|
19
|
+
- {file:Processing.md Processing}
|
20
|
+
- {file:Encoding.md Encoding}
|
21
|
+
- {file:Shortcuts.md Shortcuts for processing and encoding}
|
22
|
+
|
23
|
+
Installation
|
24
|
+
------------
|
25
|
+
|
26
|
+
gem install dragonfly --source=http://gemcutter.org
|
27
|
+
|
28
|
+
Issues
|
29
|
+
------
|
30
|
+
Please use the <a href="http://github.com/markevans/dragonfly/issues">github issue tracker</a>.
|
31
|
+
|
32
|
+
Suggestions/Questions
|
33
|
+
---------------------
|
34
|
+
{http://groups.google.com/group/dragonfly-users}
|
35
|
+
|
36
|
+
Credits
|
37
|
+
-------
|
38
|
+
- <a href="http://github.com/markevans">Mark Evans</a> (author)
|
39
|
+
|
40
|
+
Copyright
|
41
|
+
---------
|
42
|
+
Copyright (c) 2009 Mark Evans. See LICENSE for details.
|
data/yard/setup.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dragonfly
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mark Evans
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-12-
|
12
|
+
date: 2009-12-15 00:00:00 +00:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -48,6 +48,7 @@ files:
|
|
48
48
|
- extra_docs/DataStorage.md
|
49
49
|
- extra_docs/Encoding.md
|
50
50
|
- extra_docs/GettingStarted.md
|
51
|
+
- extra_docs/Index.md
|
51
52
|
- extra_docs/Processing.md
|
52
53
|
- extra_docs/Shortcuts.md
|
53
54
|
- extra_docs/UsingWithRails.md
|