Sha256: a3b6f4ca037833334d637d4362c54824da789f63eb41a57fc303d72a24d31200

Contents?: true

Size: 1.7 KB

Versions: 11

Compression:

Stored size: 1.7 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 = "architecture-js"
  gem.homepage = "https://github.com/daytonn/architecture-js"
  gem.license = "MIT"
  gem.summary = %Q{architecture.js is a command line application to dynamically build and manage complex javascript applications.}
  gem.description = %Q{Architecture.js helps you generate scaffolding, manage third-party packages, compile, and compress your application.}
  gem.email = "daytonn@gmail.com"
  gem.authors = ["Dayton Nolan"]
  # 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 'jsmin'
  gem.add_runtime_dependency 'listen'
  #  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 'rdoc/task'
Rake::RDocTask.new do |rdoc|
  version = File.exist?('VERSION') ? File.read('VERSION') : ""

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

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
architecture-js-0.6.0 Rakefile
architecture-js-0.5.8 Rakefile
architecture-js-0.5.7 Rakefile
architecture-js-0.5.6 Rakefile
architecture-js-0.5.5 Rakefile
architecture-js-0.5.4 Rakefile
architecture-js-0.5.3 Rakefile
architecture-js-0.5.2 Rakefile
architecture-js-0.5.1 Rakefile
architecture-js-0.5.0 Rakefile
architecture-js-0.4.0 Rakefile