Skip to content

Commit

Permalink
Fixed the url for cloning, and also some branding
Browse files Browse the repository at this point in the history
  • Loading branch information
srushti committed Oct 10, 2013
1 parent 4a99567 commit 4ee8fe8
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 16 deletions.
2 changes: 1 addition & 1 deletion CONFIGURATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Every project in Goldberg can have its own custom configuration by checking in a
config.command = 'make' # To be used if you're using anything other than rake
config.rake_task = 'ci' # To be used if your CI build runs something other than the default rake.
# Not relevant if you're using config.command.
config.group = 'c42' # Running a lot of projects on one server? Use this to logically group them.
config.group = 'goldberg' # Running a lot of projects on one server? Use this to logically group them.
config.use_bundle_exec = true # Run 'bundle exec rake', recommended for Rails projects
config.bundler_options = '--without deployment mac' # Command-line options for bundle install
end
Expand Down
8 changes: 4 additions & 4 deletions INSTALLATION.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@

### Installing Goldberg

1. **Clone and setup the app:**

```
git clone git://github.com/c42/goldberg.git
git clone git://github.com/srushti/goldberg.git
cd goldberg
bundle install
rake db:setup
Expand All @@ -16,7 +16,7 @@
`
rails server
`

For production deployment, deploy Goldberg as a typical Rails application behind Apache/nginx+Passenger.

3. **Start the poller:**
Expand Down Expand Up @@ -49,4 +49,4 @@ By default it assumes the <code>master</code> branch. Take a look at CONFIGURATI
Goldberg is currently tested only on Linux/Mac OS X but should run on JRuby on Windows.

If you're on Ubuntu, you might need `sudo apt-get install sqlite3 libsqlite3-dev libncursesw5-dev`

2 changes: 1 addition & 1 deletion LICENCE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright 2010 - 2011 C42 Engineering India Private Limited
Copyright 2010 - 2013 Srushti Ambekallu
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Goldberg generates feeds that work with all CruiseControl-compatible monitors li

### We are nice people, talk to us!

Please add an issue on http://github.com/c42/goldberg/issues if you find a bug, or reach us through the following channels for any help:
Please add an issue on http://github.com/srushti/goldberg/issues if you find a bug, or reach us through the following channels for any help:

- Twitter: [@GoldbergCI](http://twitter.com/GoldbergCI 'GoldbergCI')
- email: goldberg@ambekallu.com
Expand Down
1 change: 0 additions & 1 deletion app/assets/stylesheets/layout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,6 @@ div.footer {

div.author {
font-size: 1.3em;
background: transparent url('/assets/c42-engineering-logo.png') no-repeat;
line-height: 40px;
height: 40px;
padding: 0 0 0 60px;
Expand Down
2 changes: 1 addition & 1 deletion app/mailers/build_status_mailer.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
class BuildStatusMailer < ActionMailer::Base
default from: "build@goldberg.c42.in"
default from: "build@goldberg.ambekallu.com"

def status_mail(from, to, subject, build)
@build = build
Expand Down
2 changes: 0 additions & 2 deletions app/views/layouts/application.html.haml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,5 @@
.logo
.message
.author
%a{href: 'http://c42.in'} C42 Engineering
Open Source
.version
= "Version #{Version::STRING}"
6 changes: 3 additions & 3 deletions goldberg.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ require 'goldberg/version'
Gem::Specification.new do |s|
s.name = "goldberg"
s.version = Version::STRING
s.authors = ["Sidu Ponnappa", "Niranjan Paranjape", "Srushti Ambekallu"]
s.email = ["sidu@c42.in", "niranjan@c42.in", "srushti@c42.in"]
s.homepage = "http://c42.in/open_source"
s.authors = ["Srushti Ambekallu"]
s.email = ["srushti@ambekallu.com"]
s.homepage = "http://goldberg.ambekallu.com"
s.summary = "Goldberg is a CI server. With pipelines!"
s.description = "Goldberg is a CI server built in Ruby with support for pipelines and distributed builds"
s.rubyforge_project = "goldbergci"
Expand Down
4 changes: 2 additions & 2 deletions spec/models/repository_spec.rb
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
require 'spec_helper'

describe Repository do
let(:repo) { Repository.new("code_path", "git://github.com/c42/goldberg.git", "production", "git") }
let(:repo) { Repository.new("code_path", "git://github.com/srushti/goldberg.git", "production", "git") }

it "checks out the code at the given path and return true on success" do
expect_command("git clone --depth 1 git://github.com/c42/goldberg.git code_path --branch production", execute: true)
expect_command("git clone --depth 1 git://github.com/srushti/goldberg.git code_path --branch production", execute: true)
repo.checkout.should be_true
end

Expand Down

0 comments on commit 4ee8fe8

Please sign in to comment.