Project

logirel

0.0
No commit activity in last 3 years
No release in over 3 years
There's a lot of open issues
The gem works by having as its dependencies everything you need to get started with OSS and proprietary .Net coding. The aim of the gem is to allow developers to get up and running quickly and provide a nice way of converting a msbuild/VSS/svn project to github and rake.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

~> 0.2.7
~> 1.0.14
~> 1.4.4
~> 0.9.4
~> 2.0.0
~> 0.14.6
~> 2.1.2
 Project Readme

Let's try and make a gem to create .Net projects easily.

Getting started

  1. gem install logirel
  2. Go to the project of your choice
  3. logirel
  4. You should now answer the questions that logirel poses.
  5. after it's done, run rake.

Apache 2 Licensed

Hacking it

  1. git clone https://haf@github.com/haf/logirel.git
  2. bundle install
  3. bundle exec rspec spec

My thinking

Some problems I want to solve with this project;

  • (bundler/semver/rake/gems) having foundations for semver, rake for builds and nuget for packaging.
  • (logirel) easily adding structure to a solution folder created with Visual Studio logirel init
  • (gitflow) using "a successful branching model"
  • (logirel/teamcity) continuous integration friendly with 'environments' and transform files for e.g. config files
  • (logirel) easily updating buildscripts from a git repository gem update ; logirel update
  • ensuring correct versions of build script dependencies
  • (nuget/owrap/symbolserver.org) ensuring correct versions of source code dependencies
  • (gitflow) nicely tagging your source trees corresponding to semver
  • nuget :nuget do |n|; 'git ls-files'.split("\n").each{ |f| n.file f }; end create a nuget item with just files

TODO list

  1. make the core functionality solid
  2. sample configuration settings for team city to build from github
  3. build rake tasks invoking semver with ruby that integrate with teamcity
  4. try the gem out on the transactions, auto tx and nhibernate facility projects
  5. create some guidance - links mostly on how to set up a gemserver locally

A note about aims

The aim is not to replace nuget nor owrap. This is will principally be a gem for setting up a great rakefile and versioning the package through rake and continuous integration and publishing the artifacts.

Nuget and OpenWrap don't integrate with continuous integration environments. They don't assist in creating a nice build environment. With them, it's up to yourself to implement a build script that follows semantic versioning.

Often I encounter .Net open source projects that I want to use. Because I'm increasingly writing SOA code where each service is on its own, communicating through events/EDA and commands, I need to quickly be able to set up a build environment for those projects and make sure I can version the dependencies properly. Right now, hacking build scripts, is taking too much time. For example, it should be very easy to create .Sample projects for nuget, so that people can learn about my frameworks, but the overhead of managing another build is too large.

Shoulders of Giants