Sha256: 772378cccf254bad0d47481477f8a8a1b3388b3f4546322fd6e61dad285e9393
Contents?: true
Size: 951 Bytes
Versions: 1
Compression:
Stored size: 951 Bytes
Contents
# Look in the tasks/setup.rb file for the various options that can be # configured in this Rakefile. The .rake files in the tasks directory # are where the options are used. begin require 'bones' Bones.setup rescue LoadError begin load 'tasks/setup.rb' rescue LoadError raise RuntimeError, '### please install the "bones" gem ###' end end ensure_in_path 'lib' require 'emergent_core' depend_on 'rubigen', '1.4.0' depend_on 'restfulx', '1.2.0' task :default => 'spec:run' PROJ.name = 'emergent-core' PROJ.summary = 'Emergent Flex Application Generator' PROJ.authors = 'Lance Pollard' PROJ.email = 'lancejpollard@gmail.com' PROJ.url = 'http://wiki.github.com/viatropos/emergent_core' PROJ.version = '0.1.0'#EmergentCore::VERSION PROJ.rubyforge.name = 'emergent-core' PROJ.executables = ['bin/emergent'] PROJ.readme_file = 'README.rdoc' PROJ.spec.opts << '--color' PROJ.exclude << %w(.DS_Store .gitignore .log, .sqlite3) # EOF
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
emergent-core-0.1.0 | Rakefile |