Sha256: 46e75c8e441e953a0eb0d673f73c13db95a536c743737a349cc51ea18cc61a2d

Contents?: true

Size: 1.57 KB

Versions: 31

Compression:

Stored size: 1.57 KB

Contents

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 = "datts_right"
  gem.homepage = "http://github.com/ramontayag/datts_right"
  gem.license = "MIT"
  gem.summary = %Q{Allows saving of dynamic attributes in your ActiveRecord model}
  gem.description = %Q{Creates a separate table that saves all your dynamic attributes.}
  gem.email = "ramon@tayag.net"
  gem.authors = ["Ramon Tayag"]
  # Include your dependencies below. Runtime dependencies are required when using your gem,
  # and development dependencies are only needed for development (ie running rake tasks, tests, etc)
  #  gem.add_runtime_dependency 'jabber4r', '> 0.1'
  #  gem.add_development_dependency 'rspec', '> 1.2.3'
end
Jeweler::RubygemsDotOrgTasks.new

require 'rspec/core'
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec) do |spec|
  spec.pattern = FileList['spec/**/*_spec.rb']
end

RSpec::Core::RakeTask.new(:rcov) do |spec|
  spec.pattern = 'spec/**/*_spec.rb'
  spec.rcov = true
end

task :default => :spec

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

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

Version data entries

31 entries across 31 versions & 1 rubygems

Version Path
datts_right-0.0.32 Rakefile
datts_right-0.0.31 Rakefile
datts_right-0.0.30 Rakefile
datts_right-0.0.29 Rakefile
datts_right-0.0.28 Rakefile
datts_right-0.0.27 Rakefile
datts_right-0.0.26 Rakefile
datts_right-0.0.25 Rakefile
datts_right-0.0.24 Rakefile
datts_right-0.0.23 Rakefile
datts_right-0.0.22 Rakefile
datts_right-0.0.21 Rakefile
datts_right-0.0.20 Rakefile
datts_right-0.0.19 Rakefile
datts_right-0.0.18 Rakefile
datts_right-0.0.17 Rakefile
datts_right-0.0.16 Rakefile
datts_right-0.0.15 Rakefile
datts_right-0.0.14 Rakefile
datts_right-0.0.13 Rakefile