forked from tneems/mapstatic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
91 lines (76 loc) · 2.87 KB
/
Rakefile
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
79
80
81
82
83
84
85
86
87
88
89
90
91
require "rubygems"
require "rubygems/package_task"
require "rdoc/task"
$:.push File.expand_path("../lib", __FILE__)
require "mapstatic/version"
require "rspec"
require "rspec/core/rake_task"
RSpec::Core::RakeTask.new do |t|
t.rspec_opts = %w(--format documentation --colour)
end
task :default => ["spec"]
# This builds the actual gem. For details of what all these options
# mean, and other ones you can add, check the documentation here:
#
# http://rubygems.org/read/chapter/20
#
spec = Gem::Specification.new do |s|
# Change these as appropriate
s.name = "mapstatic"
s.version = Mapstatic::VERSION
s.summary = "Static Map Generator"
s.author = "James Croft"
s.email = "[email protected]"
s.homepage = "http://matchingnotes.com"
s.has_rdoc = true
# You should probably have a README of some kind. Change the filename
# as appropriate
# s.extra_rdoc_files = %w(README)
# s.rdoc_options = %w(--main README)
# Add any extra files to include in the gem (like your README)
s.files = %w(Gemfile Gemfile.lock) + Dir.glob("{spec,lib}/**/*")
s.require_paths = ["lib"]
s.executables << 'mapstatic'
# If you want to depend on other gems, add them here, along with any
# relevant versions
# s.add_dependency("some_other_gem", "~> 0.1.0")
# If your tests use any gems, include them here
s.add_dependency('mini_magick', '~> 3.6.0')
s.add_dependency('faraday', '~> 0.8.8')
s.add_dependency('thor', '~> 0.18.1')
s.add_dependency('awesome_print', '~> 1.2.0')
s.add_dependency('typhoeus', '~> 0.6.6')
s.add_development_dependency('rspec', '~> 2.13.0')
s.add_development_dependency('vcr', '~> 2.7.0')
s.add_development_dependency('webmock', '~> 1.15.2')
end
# This task actually builds the gem. We also regenerate a static
# .gemspec file, which is useful if something (i.e. GitHub) will
# be automatically building a gem for this project. If you're not
# using GitHub, edit as appropriate.
#
# To publish your gem online, install the 'gemcutter' gem; Read more
# about that here: http://gemcutter.org/pages/gem_docs
Gem::PackageTask.new(spec) do |pkg|
pkg.gem_spec = spec
end
desc "Build the gemspec file #{spec.name}.gemspec"
task :gemspec do
file = File.dirname(__FILE__) + "/#{spec.name}.gemspec"
File.open(file, "w") {|f| f << spec.to_ruby }
end
# If you don't want to generate the .gemspec file, just remove this line. Reasons
# why you might want to generate a gemspec:
# - using bundler with a git source
# - building the gem without rake (i.e. gem build blah.gemspec)
# - maybe others?
task :package => :gemspec
# Generate documentation
RDoc::Task.new do |rd|
rd.rdoc_files.include("lib/**/*.rb")
rd.rdoc_dir = "rdoc"
end
desc 'Clear out RDoc and generated packages'
task :clean => [:clobber_rdoc, :clobber_package] do
rm "#{spec.name}.gemspec"
end