go_figure 0.0.2 → 0.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5,8 +5,8 @@ require "go_figure/version"
5
5
  Gem::Specification.new do |s|
6
6
  s.name = "go_figure"
7
7
  s.version = GoFigure::VERSION
8
- s.authors = ["Ketan Padegaonkar"]
9
- s.email = ["KetanPadegaonkar@gmail.com"]
8
+ s.authors = ["Nikhil Mungel", "Ketan Padegaonkar", "Shishir Das"]
9
+ s.email = ["hyfather@gmail.com", "KetanPadegaonkar@gmail.com", "shishir.das@gmail.com"]
10
10
  s.homepage = "https://github.com/ThoughtWorksInc/go-figure"
11
11
  s.summary = %q{A Ruby DSL to write a configuration file for the a go server.}
12
12
  s.description = %q{This provides a ruby DSL to create a configuration file for the go server (thoughtworks-studios.com/go)}
@@ -1,25 +1,27 @@
1
1
  <pipelines group="defaultGroup">
2
2
  <pipeline name="defaultPipeline">
3
3
  <materials>
4
- <git url="<%= @git_url %>" />
4
+ <git autoUpdate="false" url="<%= @git_url %>" />
5
5
  </materials>
6
6
  <stage name="Units">
7
7
  <jobs>
8
8
  <job name="Test">
9
9
  <tasks>
10
- <exec command="bundle" workingdir="<%= @working_dir %>">
10
+ <exec command="bundle" <%= %Q{workingdir="#{@working_dir}"} if @working_dir %>>
11
11
  <arg>install</arg>
12
12
  <arg>--local</arg>
13
+ <arg>--path</arg>
14
+ <arg>.bundle</arg>
13
15
  <runif status="passed" />
14
16
  </exec>
15
- <exec command="bundle" workingdir="<%= @working_dir %>">
17
+ <exec command="bundle" <%= %Q{workingdir="#{@working_dir}"} if @working_dir %>>
16
18
  <arg>exec</arg>
17
19
  <arg>rake</arg>
18
20
  <arg>db:create</arg>
19
21
  <arg>db:migrate</arg>
20
22
  <runif status="passed" />
21
23
  </exec>
22
- <exec command="bundle" workingdir="<%= @working_dir %>">
24
+ <exec command="bundle" <%= %Q{workingdir="#{@working_dir}"} if @working_dir %>>
23
25
  <arg>exec</arg>
24
26
  <arg>rake</arg>
25
27
  <runif status="passed" />
@@ -1,3 +1,3 @@
1
1
  module GoFigure
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.5"
3
3
  end
metadata CHANGED
@@ -1,19 +1,21 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: go_figure
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.5
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
8
+ - Nikhil Mungel
8
9
  - Ketan Padegaonkar
10
+ - Shishir Das
9
11
  autorequire:
10
12
  bindir: bin
11
13
  cert_chain: []
12
- date: 2012-02-14 00:00:00.000000000Z
14
+ date: 2012-04-10 00:00:00.000000000 Z
13
15
  dependencies:
14
16
  - !ruby/object:Gem::Dependency
15
17
  name: nokogiri
16
- requirement: &70222388707400 !ruby/object:Gem::Requirement
18
+ requirement: !ruby/object:Gem::Requirement
17
19
  none: false
18
20
  requirements:
19
21
  - - ~>
@@ -21,11 +23,18 @@ dependencies:
21
23
  version: 1.5.0
22
24
  type: :runtime
23
25
  prerelease: false
24
- version_requirements: *70222388707400
26
+ version_requirements: !ruby/object:Gem::Requirement
27
+ none: false
28
+ requirements:
29
+ - - ~>
30
+ - !ruby/object:Gem::Version
31
+ version: 1.5.0
25
32
  description: This provides a ruby DSL to create a configuration file for the go server
26
33
  (thoughtworks-studios.com/go)
27
34
  email:
35
+ - hyfather@gmail.com
28
36
  - KetanPadegaonkar@gmail.com
37
+ - shishir.das@gmail.com
29
38
  executables: []
30
39
  extensions: []
31
40
  extra_rdoc_files: []
@@ -67,7 +76,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
67
76
  version: '0'
68
77
  requirements: []
69
78
  rubyforge_project: go_figure
70
- rubygems_version: 1.8.15
79
+ rubygems_version: 1.8.21
71
80
  signing_key:
72
81
  specification_version: 3
73
82
  summary: A Ruby DSL to write a configuration file for the a go server.
@@ -76,3 +85,4 @@ test_files:
76
85
  - test/go_figure/go_config_endpoint_test.rb
77
86
  - test/go_figure/go_config_test.rb
78
87
  - test/test_helper.rb
88
+ has_rdoc: