Sha256: a60bb968b7d6bbca385c614a3f8324b94b5f21f08fa2dfda9805d786ba7e4a56
Contents?: true
Size: 1.1 KB
Versions: 2
Compression:
Stored size: 1.1 KB
Contents
#!/usr/bin/env rake begin require 'bundler/setup' rescue LoadError puts 'You must `gem install bundler` and `bundle install` to run rake tasks' end $:.unshift File.expand_path('lib', File.dirname(__FILE__)) require 'simple_roles' 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 = "simple_roles" gem.homepage = "http://github.com/stanislaw/simple_roles" gem.license = "MIT" gem.summary = %Q{Rails Engine providing Role System for Rails apps} gem.description = %Q{Simple Role System for Rails Apps} gem.email = "s.pankevich@gmail.com" gem.authors = ["stanislaw"] gem.version = SimpleRoles::VERSION # dependencies defined in Gemfile end Jeweler::RubygemsDotOrgTasks.new APP_RAKEFILE = File.expand_path("../spec/dummy/Rakefile", __FILE__) if File.exists?(APP_RAKEFILE) && defined?(Rails) load 'rails/tasks/engine.rake' end require 'rspec/core' require 'rspec/core/rake_task' RSpec::Core::RakeTask.new(:spec) do |spec| spec.pattern = FileList['spec/**/*_spec.rb'] end task :default => :spec
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
simple_roles-0.0.12 | Rakefile |
simple_roles-0.0.11 | Rakefile |