Sha256: e0dcb22cdc4d097bd6309203e5ea22e9aba0a0e01419edb9b1e0ff893574d004

Contents?: true

Size: 1.41 KB

Versions: 23

Compression:

Stored size: 1.41 KB

Contents

# encoding: utf-8

require 'rubygems'
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 'jeweler'
Jeweler::Tasks.new do |gem|
  # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
  gem.name = "string_master"
  gem.homepage = "http://github.com/snitko/string_master"
  gem.license = "MIT"
  gem.summary = %Q{Most common string manipulations for a webapp}
  gem.description = %Q{Because every time I create a new webapp, I think about how I should process user-generated content. Should convert urls to links and images? Should I allow certain tags? Should I convert all new lines to *br* tags? Well, now all that is as simple as calling a single method.}
  gem.email = "roman.snitko@gmail.com"
  gem.authors = ["Roman Snitko"]
  # dependencies defined in Gemfile
end
Jeweler::RubygemsDotOrgTasks.new

require 'rake/testtask'
Rake::TestTask.new(:test) do |test|
  test.libs << 'lib' << 'test'
  test.pattern = 'test/**/test_*.rb'
  test.verbose = true
end


require 'rdoc/task'
Rake::RDocTask.new do |rdoc|
  version = File.exist?('VERSION') ? File.read('VERSION') : ""

  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = "string_master #{version}"
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
string_master-0.4.0 Rakefile
string_master-0.3.19 Rakefile
string_master-0.3.18 Rakefile
string_master-0.3.17 Rakefile
string_master-0.3.16 Rakefile
string_master-0.3.15 Rakefile
string_master-0.3.14 Rakefile
string_master-0.3.13 Rakefile
string_master-0.3.12 Rakefile
string_master-0.3.11 Rakefile
string_master-0.3.10 Rakefile
string_master-0.3.9 Rakefile
string_master-0.3.8 Rakefile
string_master-0.3.7 Rakefile
string_master-0.3.6 Rakefile
string_master-0.3.5 Rakefile
string_master-0.3.4 Rakefile
string_master-0.3.3 Rakefile
string_master-0.3.2 Rakefile
string_master-0.3.1 Rakefile