Sha256: ca3fce9e1b76289d0fff98c7d0c3a3bbfb746e55a8b43c864924f7e5c863b1f2

Contents?: true

Size: 735 Bytes

Versions: 15

Compression:

Stored size: 735 Bytes

Contents

#$:.unshift './lib'

require 'bundler'

require 'xing/tasks'
Xing::Tasks::Backend.new
Xing::Tasks::Build.new
Xing::Tasks::Develop.new
Xing::Tasks::Frontend.new
Xing::Tasks::Spec.new
Xing::Tasks::Initialize.new

desc "setup database"
task :initialize => ['initialize:all']
desc "The whole shebang"
task :build => [:check_dependencies, 'build:all']

desc "Run rails server and grunt watch to start a dev environment"
task :develop => [:check_dependencies,'develop:all']

desc "Confirm that the app is in a state to run"
task :preflight => %w{check_dependencies develop:links}

desc "Run Rspec tests"
task :spec => [:check_dependencies, "spec:fast"]

task :check_dependencies => %w{backend:check_dependencies frontend:check_dependencies}

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
xing-framework-1.0.0.pre.beta.1 default_configuration/base_app/Rakefile
xing-framework-1.0.0.pre.beta default_configuration/base_app/Rakefile
xing-framework-1.0.0.pre.alpha default_configuration/base_app/Rakefile
xing-framework-0.3.2 default_configuration/base_app/Rakefile
xing-framework-0.3.1 default_configuration/base_app/Rakefile
xing-framework-0.3.0 default_configuration/base_app/Rakefile
xing-framework-0.2.9 default_configuration/base_app/Rakefile
xing-framework-0.2.9.beta1 default_configuration/base_app/Rakefile
xing-framework-0.2.8 default_configuration/base_app/Rakefile
xing-framework-0.2.8.beta1 default_configuration/base_app/Rakefile
xing-framework-0.2.7 default_configuration/base_app/Rakefile
xing-framework-0.2.7.pre.beta1 default_configuration/base_app/Rakefile
xing-framework-0.2.6 default_configuration/base_app/Rakefile
xing-framework-0.2.5 default_configuration/base_app/Rakefile
xing-framework-0.2.4 default_configuration/base_app/Rakefile