Contact @poptartinc if you want to slag him off
Created
February 9, 2012 17:44
-
-
Save rxbynerd/1781513 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Gem::Specification.new do |s| | |
s.specification_version = 2 if s.respond_to? :specification_version= | |
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= | |
s.rubygems_version = '1.3.5' | |
s.name = 'gromit' | |
s.version = '0.0.0' | |
s.date = '2012-02-09' | |
s.rubyforge_project = 'gromit' | |
s.summary = "A basic email fetcher for Rails" | |
s.description = "A simplistic IMAP email fetcher for Rails 3.2" | |
## List the primary authors. If there are a bunch of authors, it's probably | |
## better to set the email to an email list or something. If you don't have | |
## a custom homepage, consider using your GitHub URL or the like. | |
s.authors = ["Luke Carpenter"] | |
s.email = '[email protected]' | |
s.homepage = 'https://gist.github.com/1781513' | |
## This gets added to the $LOAD_PATH so that 'lib/NAME.rb' can be required as | |
## require 'NAME.rb' or'/lib/NAME/file.rb' can be as require 'NAME/file.rb' | |
s.require_paths = %w[lib] | |
## This sections is only necessary if you have C extensions. | |
## s.require_paths << 'ext' | |
## s.extensions = %w[ext/extconf.rb] | |
## If your gem includes any executables, list them here. | |
## s.executables = ["name"] | |
## Specify any RDoc options here. You'll want to add your README and | |
## LICENSE files to the extra_rdoc_files list. | |
s.rdoc_options = ["--charset=UTF-8"] | |
s.extra_rdoc_files = %w[README LICENSE] | |
s.add_dependency('rails', ["~> 3.2"]) | |
# s.add_development_dependency('DEVDEPNAME', [">= 1.1.0", "< 2.0.0"]) | |
# = MANIFEST = | |
s.files = %w[ | |
README.mdown | |
Rakefile | |
lib/gromit.rb | |
] | |
# = MANIFEST = | |
## Test files will be grabbed from the file list. Make sure the path glob | |
## matches what you actually use. | |
s.test_files = s.files.select { |path| path =~ /^spec\/.*\.rb/ } | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Gromit | |
VERSION = '0.0.0' | |
end | |
require "gromit/railtie" if defined?(Rails) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Gromit | |
class Railtie < Rails::Railtie | |
rake_tasks do | |
load "gromit/tasks.rake" | |
end | |
end | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'rubygems' | |
require 'rake' | |
require 'date' | |
############################################################################# | |
# | |
# Helper functions | |
# | |
############################################################################# | |
def name | |
@name ||= Dir['*.gemspec'].first.split('.').first | |
end | |
def version | |
line = File.read("lib/#{name}.rb")[/^\s*VERSION\s*=\s*.*/] | |
line.match(/.*VERSION\s*=\s*['"](.*)['"]/)[1] | |
end | |
def date | |
Date.today.to_s | |
end | |
def rubyforge_project | |
name | |
end | |
def gemspec_file | |
"#{name}.gemspec" | |
end | |
def gem_file | |
"#{name}-#{version}.gem" | |
end | |
def replace_header(head, header_name) | |
head.sub!(/(\.#{header_name}\s*= ').*'/) { "#{$1}#{send(header_name)}'"} | |
end | |
############################################################################# | |
# | |
# Standard tasks | |
# | |
############################################################################# | |
task :default => :test | |
require 'rake/testtask' | |
Rake::TestTask.new(:test) do |test| | |
test.libs << 'lib' << 'test' | |
test.pattern = 'test/**/test_*.rb' | |
test.verbose = true | |
end | |
desc "Generate RCov test coverage and open in your browser" | |
task :coverage do | |
require 'rcov' | |
sh "rm -fr coverage" | |
sh "rcov test/test_*.rb" | |
sh "open coverage/index.html" | |
end | |
require 'rdoc/task' | |
Rake::RDocTask.new do |rdoc| | |
rdoc.rdoc_dir = 'rdoc' | |
rdoc.title = "#{name} #{version}" | |
rdoc.rdoc_files.include('README*') | |
rdoc.rdoc_files.include('lib/**/*.rb') | |
end | |
desc "Open an irb session preloaded with this library" | |
task :console do | |
sh "irb -rubygems -r ./lib/#{name}.rb" | |
end | |
############################################################################# | |
# | |
# Custom tasks (add your own tasks here) | |
# | |
############################################################################# | |
############################################################################# | |
# | |
# Packaging tasks | |
# | |
############################################################################# | |
desc "Create tag v#{version} and build and push #{gem_file} to Rubygems" | |
task :release => :build do | |
unless `git branch` =~ /^\* master$/ | |
puts "You must be on the master branch to release!" | |
exit! | |
end | |
sh "git commit --allow-empty -a -m 'Release #{version}'" | |
sh "git tag v#{version}" | |
sh "git push origin master" | |
sh "git push origin v#{version}" | |
sh "gem push pkg/#{name}-#{version}.gem" | |
end | |
desc "Build #{gem_file} into the pkg directory" | |
task :build => :gemspec do | |
sh "mkdir -p pkg" | |
sh "gem build #{gemspec_file}" | |
sh "mv #{gem_file} pkg" | |
end | |
desc "Generate #{gemspec_file}" | |
task :gemspec => :validate do | |
# read spec file and split out manifest section | |
spec = File.read(gemspec_file) | |
head, manifest, tail = spec.split(" # = MANIFEST =\n") | |
# replace name version and date | |
replace_header(head, :name) | |
replace_header(head, :version) | |
replace_header(head, :date) | |
#comment this out if your rubyforge_project has a different name | |
replace_header(head, :rubyforge_project) | |
# determine file list from git ls-files | |
files = `git ls-files`. | |
split("\n"). | |
sort. | |
reject { |file| file =~ /^\./ }. | |
reject { |file| file =~ /^(rdoc|pkg)/ }. | |
map { |file| " #{file}" }. | |
join("\n") | |
# piece file back together and write | |
manifest = " s.files = %w[\n#{files}\n ]\n" | |
spec = [head, manifest, tail].join(" # = MANIFEST =\n") | |
File.open(gemspec_file, 'w') { |io| io.write(spec) } | |
puts "Updated #{gemspec_file}" | |
end | |
desc "Validate #{gemspec_file}" | |
task :validate do | |
libfiles = Dir['lib/*'] - ["lib/#{name}.rb", "lib/#{name}"] | |
unless libfiles.empty? | |
puts "Directory `lib` should only contain a `#{name}.rb` file and `#{name}` dir." | |
exit! | |
end | |
unless Dir['VERSION*'].empty? | |
puts "A `VERSION` file at root level violates Gem best practices." | |
exit! | |
end | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace :gromit do | |
task :version do | |
puts "gromit: #{Gromit::VERSION}" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment