-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathRakefile
More file actions
81 lines (73 loc) · 2.46 KB
/
Rakefile
File metadata and controls
81 lines (73 loc) · 2.46 KB
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
# Copyright (C) 2011 AMEE UK Ltd. - http://www.amee.com
# Released as Open Source Software under the BSD 3-Clause license. See LICENSE.txt for details.
# encoding: utf-8
require 'bundler'
begin
Bundler.setup(:default, :development)
rescue Bundler::BundlerError => e
$stderr.puts e.message
$stderr.puts "Run `bundle install` to install missing gems"
exit e.status_code
end
require 'rake'
require 'rspec'
require 'rspec/core/rake_task'
task :default => [:spec]
desc "Run specs"
RSpec::Core::RakeTask.new do |t|
# Put spec opts in a file named .rspec in root
end
require 'jeweler'
# Fix for Jeweler to use stable branch
class Jeweler
module Commands
class ReleaseToGit
def run
unless clean_staging_area?
system "git status"
raise "Unclean staging area! Be sure to commit or .gitignore everything first. See `git status` above."
end
repo.checkout('stable')
repo.push('origin', 'stable')
if release_not_tagged?
output.puts "Tagging #{release_tag}"
repo.add_tag(release_tag)
output.puts "Pushing #{release_tag} to origin"
repo.push('origin', release_tag)
end
end
end
class ReleaseGemspec
def run
unless clean_staging_area?
system "git status"
raise "Unclean staging area! Be sure to commit or .gitignore everything first. See `git status` above."
end
repo.checkout('stable')
regenerate_gemspec!
commit_gemspec! if gemspec_changed?
output.puts "Pushing stable to origin"
repo.push('origin', 'stable')
end
end
end
end
Jeweler::Tasks.new do |gem|
# gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
gem.name = "amee-data-abstraction"
gem.homepage = "https://github.com/AMEE/amee-data-abstraction"
gem.license = "BSD 3-Clause"
gem.summary = %Q{Calculation and form building tool hiding details of AMEEconnect}
gem.description = %Q{Part of the AMEEappkit this gem provides a data abstraction layer, decreasing the amount and detail of development required}
gem.email = "help@amee.com"
gem.authors = ["James Hetherington", "Andrew Berkeley", "James Smith", "George Palmer"]
# dependencies defined in Gemfile
end
Jeweler::RubygemsDotOrgTasks.new
require 'rdoc/task'
RDoc::Task.new do |rd|
rd.title = "AMEE Data Abstraction"
rd.rdoc_dir = 'doc'
rd.main = "README"
rd.rdoc_files.include("README", "lib/**/*.rb")
end