mystro-volley 0.1.0.rc3 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -19,10 +19,12 @@ $(function () {
19
19
  console.log("deploy");
20
20
  var u = $(this).data("url");
21
21
  console.log("deploy: " + u);
22
+
22
23
  $.get(u)
23
24
  .done(function (d) {
24
25
  $("#deploy_dialog_contents").html(d);
25
26
  });
27
+
26
28
  bootbox.dialog($("#deploy_dialog").html(), [
27
29
  {
28
30
  "Cancel": function () {
@@ -3,9 +3,12 @@ class MystroVolley::HomeController < ApplicationController
3
3
  include MystroVolley::ApplicationHelper
4
4
 
5
5
  def index
6
- @projects = MystroVolley::Project.all
6
+ #@projects = MystroVolley::Project.all
7
7
  @myversions = MystroVolley::Version.desc(:timestamp).where(latest: true)
8
- #render "mystro_volley/versions/index"
8
+ end
9
+
10
+ def browser
11
+ @projects = MystroVolley::Project.all
9
12
  end
10
13
 
11
14
  def show
@@ -25,20 +28,23 @@ class MystroVolley::HomeController < ApplicationController
25
28
  if @version
26
29
  return render "mystro_volley/versions/show"
27
30
  else
31
+ flash.now[:error] = "version #{v} not found"
28
32
  return render "mystro_volley/branches/show"
29
33
  end
30
34
  else
31
35
  return render "mystro_volley/branches/show"
32
36
  end
33
37
  else
38
+ flash.now[:error] = "branch #{b} not found"
34
39
  return render "mystro_volley/projects/show"
35
40
  end
36
41
  else
37
42
  return render "mystro_volley/projects/show"
38
43
  end
39
44
  else
40
- @myversions = MystroVolley::Version.desc(:timestamp).where(latest: true)
41
- render "mystro_volley/versions/index"
45
+ #@myversions = MystroVolley::Version.desc(:timestamp).where(latest: true)
46
+ #render "mystro_volley/versions/index"
47
+ flash.now[:error] = "project #{p} not found"
42
48
  end
43
49
  else
44
50
  @myversions = MystroVolley::Version.desc(:timestamp).where(latest: true)
@@ -2,37 +2,60 @@ class Jobs::Volley::Deploy < Jobs::Volley::Mco
2
2
  def work
3
3
  init
4
4
 
5
- info "DATA: #{data.inspect}"
5
+ d = JSON.parse(data.to_json)
6
+ info "DATA: #{d.inspect}"
6
7
 
7
- version = data["version"]
8
- environment = data["environment"]
9
- account = data["account"]
10
- role = data["role"]
11
- force = data["force"]
8
+ version = d["version"]
9
+ environment = d["environment"]
10
+ account = d["account"]
11
+ role = d["role"]
12
+ force = d["force"]
12
13
 
13
14
  r = rpcclient
14
15
 
15
16
  ["mystro.environment=#{environment}", "mystro.account=#{account}", "mystro.role_#{role}=true"].each do |f|
16
- puts "filter: #{f}"
17
17
  info "filter: #{f}"
18
18
  r.fact_filter f
19
19
  end
20
20
 
21
21
  list = r.run(descriptor: version)
22
- #list = r.meta()
23
22
  list.each do |o|
24
- r = o.results
25
- if r[:statuscode] == 0
26
- info "#{r[:sender]}: '#{r[:data][:status]}' #{r[:data][:out]}"
27
-
28
- #vs = r[:data][:out].split("\n")
29
- #vs.each do |v|
30
- # puts "-- #{r[:sender]}: #{v}"
31
- # info "-- #{r[:sender]}: #{v}"
32
- #end
23
+ rsp = o.results
24
+ if rsp[:statuscode] == 0
25
+ info "#{rsp[:sender]}: '#{rsp[:data][:status]}' #{rsp[:data][:out]}"
33
26
  end
34
27
  end
35
28
 
29
+ (p, v) = version.split('@')
30
+ info "version: #{p}"
31
+
32
+ timeout = 60 * 10
33
+ timer = 0
34
+ count = 0
35
+ begin
36
+ list = r.version(project: p)
37
+ total = count = list.count
38
+
39
+ list.each do |o|
40
+ rsp = o.results
41
+ raise "error with host: #{rsp[:sender]}" unless rsp[:data] && rsp[:data][:version]
42
+ (_, found) = rsp[:data][:version].chomp.split(" => ")
43
+ info "#{rsp[:sender]}: #{v} = #{found}"
44
+
45
+ count -= 1 if v == found
46
+ end
47
+
48
+ info "waiting on #{count} of #{total}: (timer: #{timer} <= #{timeout})"
49
+
50
+ if count > 0
51
+ timer += 5
52
+ sleep 5
53
+ self.save
54
+ end
55
+ end while count > 0 && timer <= timeout
56
+
57
+ raise "deployment failed: count:#{count} timer:#{timer}" if count > 0 || timer > timeout
58
+
36
59
  true
37
60
  end
38
61
  end
@@ -3,13 +3,13 @@ class Jobs::Volley::Update < Jobs::Volley::Base
3
3
  init
4
4
  projects = publisher.projects
5
5
  projects.each do |p|
6
- info "* #{p}"
6
+ #info "* #{p}"
7
7
  project = MystroVolley::Project.find_or_create_by(name: p)
8
8
  publisher.branches(p).each do |b|
9
- info " * #{b}"
9
+ #info " * #{b}"
10
10
  branch = MystroVolley::Branch.find_or_create_by(name: b, project_id: project.id)
11
11
  publisher.versions(p, b).each do |v|
12
- info " * #{v}"
12
+ #info " * #{v}"
13
13
  o = publisher.version_data(p, b, v)
14
14
  d = {
15
15
  files: o[:contents],
@@ -0,0 +1,37 @@
1
+ <div class="row">
2
+ <div class="span3">
3
+ <div id="mv-projects" class="mv-view tabbable tabs-left">
4
+ <ul class="">
5
+ <% @projects.each do |p| %>
6
+ <li id="project-<%= p.name %>" data-id="<%= p.id.to_s %>" data-type="projects" data-kids="branches" class="mv-tab-view">
7
+ <%= link_to p.name, "#" %>
8
+ </li>
9
+ <% end %>
10
+ </ul>
11
+ </div>
12
+ </div>
13
+ <div class="span3">
14
+ <div id="mv-branches" class="mv-view tabbable tabs-left">
15
+ <ul id="mv-branches-content" class="">
16
+ </ul>
17
+ </div>
18
+ </div>
19
+ <div class="span3">
20
+ <div id="mv-versions" class="mv-view tabbable tabs-left">
21
+ <ul id="mv-versions-content" class="">
22
+ </ul>
23
+ </div>
24
+ </div>
25
+ <div class="span3">
26
+ <div id="mv-files" class="mv-view tabbable tabs-left">
27
+ <ul id="mv-files-content" class="">
28
+ </ul>
29
+ </div>
30
+ </div>
31
+ </div>
32
+
33
+ <script>
34
+ $(function () {
35
+ $("#mv-projects .mv-tab-view:first").click();
36
+ })
37
+ </script>
@@ -1,37 +1 @@
1
- <div class="row">
2
- <div class="span3">
3
- <div id="mv-projects" class="mv-view tabbable tabs-left">
4
- <ul class="">
5
- <% @projects.each do |p| %>
6
- <li id="project-<%= p.name %>" data-id="<%= p.id.to_s %>" data-type="projects" data-kids="branches" class="mv-tab-view">
7
- <%= link_to p.name, "#" %>
8
- </li>
9
- <% end %>
10
- </ul>
11
- </div>
12
- </div>
13
- <div class="span3">
14
- <div id="mv-branches" class="mv-view tabbable tabs-left">
15
- <ul id="mv-branches-content" class="">
16
- </ul>
17
- </div>
18
- </div>
19
- <div class="span3">
20
- <div id="mv-versions" class="mv-view tabbable tabs-left">
21
- <ul id="mv-versions-content" class="">
22
- </ul>
23
- </div>
24
- </div>
25
- <div class="span3">
26
- <div id="mv-files" class="mv-view tabbable tabs-left">
27
- <ul id="mv-files-content" class="">
28
- </ul>
29
- </div>
30
- </div>
31
- </div>
32
-
33
- <script>
34
- $(function () {
35
- $("#mv-projects .mv-tab-view:first").click();
36
- })
37
- </script>
1
+ <%= render "mystro_volley/versions/list", versions: @myversions, showlinks: true %>
@@ -6,10 +6,12 @@
6
6
  <th>Time</th>
7
7
  <th>Files</th>
8
8
  <th>Latest</th>
9
+ <% if defined?(showlinks) && showlinks == true %>
9
10
  <th></th>
11
+ <% end %>
10
12
  </tr>
11
13
  </thead>
12
14
  <tbody>
13
- <%= render versions %>
15
+ <%= render versions, showlinks: true %>
14
16
  </tbody>
15
17
  </table>
@@ -3,12 +3,14 @@
3
3
  <td><%= distance_of_time_in_words_to_now(version.timestamp) %></td>
4
4
  <td><%= version.files.count %></td>
5
5
  <td><%= version.latest %></td>
6
+ <% if defined?(showlinks) && showlinks == true %>
6
7
  <td class="links">
7
8
  <%= link_to "#", class: "btn btn-mini volley-deploy", data: {url: "/plugins/volley/versions/#{version.id}/deploy"} do %>
8
9
  <i class="icon-share"></i>
9
10
  <% end %> <!-- , method: :delete, confirm: "Are you sure you wish to remove #{version.to_s}?" -->
10
- <%= link_to "#", class: "btn btn-mini btn-danger delete_me", data: {id: version.id.to_s, type: "versions", base: "/plugins/volley"} do %>
11
+ <%= link_to "#", class: "btn btn-mini btn-danger delete_me", confirm: "Are you sure you want to delete #{version.to_s}?", data: {id: version.id.to_s, type: "versions", base: "/plugins/volley"} do %>
11
12
  <i class="icon-remove-sign"></i>
12
13
  <% end %>
13
14
  </td>
15
+ <% end %>
14
16
  </tr>
@@ -1,4 +1,4 @@
1
-
1
+ <div id="deploy_dialog_contents">
2
2
  <%= form_tag "/plugins/volley/versions/#{@version.id}/queue", id: "deploy_form", class: "form-horizontal" do %>
3
3
  <div class="form-inputs">
4
4
  <div class="control-group">
@@ -28,5 +28,5 @@
28
28
  </div>
29
29
  </div>
30
30
  <% end %>
31
-
31
+ </div>
32
32
 
@@ -1,7 +1 @@
1
1
  <%= render "mystro_volley/versions/list", versions: @myversions %>
2
-
3
- <script id="deploy_dialog" type="text/template">
4
- <div id="deploy_dialog_contents">
5
- loading...
6
- </div>
7
- </script>
@@ -1,4 +1,6 @@
1
1
  MystroVolley::Engine.routes.draw do
2
+ match "browser" => "home#browser"
3
+
2
4
  resources :projects
3
5
  resources :branches
4
6
  resources :versions do
@@ -9,9 +9,5 @@ module MystroVolley
9
9
  initializer "volley.autoload.paths" do |app|
10
10
  app.config.autoload_paths += Dir[root.join('app','models','{**}')]
11
11
  end
12
-
13
- initializer "volley.better_errors" do |app|
14
- BetterErrors.application_root = "/"
15
- end
16
12
  end
17
13
  end
@@ -6,14 +6,20 @@ module Mystro
6
6
  module Volley
7
7
  include Mystro::Plugin::Base
8
8
 
9
- register ui: "/plugins/volley",
10
- schedule: {
11
- volley: "*/10 * * * *",
12
- },
13
- jobs: [
14
- "Jobs::Volley::Update",
15
- "Jobs::Volley::Meta"
16
- ]
9
+ register(
10
+ ui: {
11
+ latest: "/plugins/volley",
12
+ browser: "/plugins/volley/browser",
13
+ projects: "/plugins/volley/projects",
14
+ },
15
+ schedule: {
16
+ volley: "*/10 * * * *",
17
+ },
18
+ jobs: [
19
+ "Jobs::Volley::Update",
20
+ "Jobs::Volley::Meta"
21
+ ]
22
+ )
17
23
 
18
24
  class << self
19
25
  def configure
@@ -6,7 +6,7 @@ unless defined?(Mystro::Volley::Version)
6
6
  MAJOR = 0
7
7
  MINOR = 1
8
8
  TINY = 0
9
- TAG = "rc3"
9
+ TAG = nil
10
10
  STRING = [MAJOR, MINOR, TINY, TAG].compact.join('.')
11
11
  end
12
12
  end
@@ -0,0 +1 @@
1
+ Connecting to database specified by database.yml
metadata CHANGED
@@ -1,15 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mystro-volley
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0.rc3
5
- prerelease: 6
4
+ version: 0.1.0
5
+ prerelease:
6
6
  platform: ruby
7
7
  authors:
8
8
  - Shawn Catanzarite
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-05-20 00:00:00.000000000 Z
12
+ date: 2013-08-24 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
@@ -18,7 +18,7 @@ dependencies:
18
18
  requirements:
19
19
  - - ~>
20
20
  - !ruby/object:Gem::Version
21
- version: 3.2.8
21
+ version: 3.2.11
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ~>
28
28
  - !ruby/object:Gem::Version
29
- version: 3.2.8
29
+ version: 3.2.11
30
30
  - !ruby/object:Gem::Dependency
31
31
  name: volley
32
32
  requirement: !ruby/object:Gem::Requirement
@@ -80,17 +80,17 @@ dependencies:
80
80
  requirement: !ruby/object:Gem::Requirement
81
81
  none: false
82
82
  requirements:
83
- - - '='
83
+ - - ~>
84
84
  - !ruby/object:Gem::Version
85
- version: 0.1.2
85
+ version: 0.1.6
86
86
  type: :runtime
87
87
  prerelease: false
88
88
  version_requirements: !ruby/object:Gem::Requirement
89
89
  none: false
90
90
  requirements:
91
- - - '='
91
+ - - ~>
92
92
  - !ruby/object:Gem::Version
93
- version: 0.1.2
93
+ version: 0.1.6
94
94
  description: Volley integration for Mystro Server
95
95
  email:
96
96
  - me@shawncatz.com
@@ -98,103 +98,105 @@ executables: []
98
98
  extensions: []
99
99
  extra_rdoc_files: []
100
100
  files:
101
- - app/assets/javascripts/mystro-volley/application.js
102
- - app/assets/stylesheets/mystro-volley/application.css
103
- - app/assets/stylesheets/mystro-volley/home.css.scss
104
- - app/controllers/mystro_volley/application_controller.rb
101
+ - app/views/mystro_volley/common/_breadcrumbs.html.erb
102
+ - app/views/mystro_volley/home/show.html.erb
103
+ - app/views/mystro_volley/home/browser.html.erb
104
+ - app/views/mystro_volley/home/index.html.erb
105
+ - app/views/mystro_volley/versions/show.html.erb
106
+ - app/views/mystro_volley/versions/_version.html.erb
107
+ - app/views/mystro_volley/versions/_form.html.erb
108
+ - app/views/mystro_volley/versions/index.html.erb
109
+ - app/views/mystro_volley/versions/new.html.erb
110
+ - app/views/mystro_volley/versions/edit.html.erb
111
+ - app/views/mystro_volley/versions/deploy.html.erb
112
+ - app/views/mystro_volley/versions/_list.html.erb
113
+ - app/views/mystro_volley/branches/show.html.erb
114
+ - app/views/mystro_volley/branches/_form.html.erb
115
+ - app/views/mystro_volley/branches/index.html.erb
116
+ - app/views/mystro_volley/branches/new.html.erb
117
+ - app/views/mystro_volley/branches/edit.html.erb
118
+ - app/views/mystro_volley/branches/_list.html.erb
119
+ - app/views/mystro_volley/branches/_branch.html.erb
120
+ - app/views/mystro_volley/projects/show.html.erb
121
+ - app/views/mystro_volley/projects/_form.html.erb
122
+ - app/views/mystro_volley/projects/index.html.erb
123
+ - app/views/mystro_volley/projects/_project.html.erb
124
+ - app/views/mystro_volley/projects/new.html.erb
125
+ - app/views/mystro_volley/projects/edit.html.erb
126
+ - app/views/mystro_volley/projects/_list.html.erb
127
+ - app/workers/volley_worker.rb
105
128
  - app/controllers/mystro_volley/branches_controller.rb
129
+ - app/controllers/mystro_volley/versions_controller.rb
106
130
  - app/controllers/mystro_volley/home_controller.rb
107
131
  - app/controllers/mystro_volley/projects_controller.rb
108
- - app/controllers/mystro_volley/versions_controller.rb
109
- - app/helpers/mystro_volley/application_helper.rb
110
- - app/helpers/mystro_volley/branches_helper.rb
111
- - app/helpers/mystro_volley/projects_helper.rb
112
- - app/helpers/mystro_volley/versions_helper.rb
113
- - app/models/jobs/volley/base.rb
132
+ - app/controllers/mystro_volley/application_controller.rb
114
133
  - app/models/jobs/volley/deploy.rb
134
+ - app/models/jobs/volley/base.rb
135
+ - app/models/jobs/volley/mco.rb
136
+ - app/models/jobs/volley/meta.rb
115
137
  - app/models/jobs/volley/destroy/branch.rb
116
138
  - app/models/jobs/volley/destroy/project.rb
117
139
  - app/models/jobs/volley/destroy/version.rb
118
- - app/models/jobs/volley/mco.rb
119
- - app/models/jobs/volley/meta.rb
120
140
  - app/models/jobs/volley/update.rb
121
141
  - app/models/mystro_volley/branch.rb
122
- - app/models/mystro_volley/install.rb
123
142
  - app/models/mystro_volley/project.rb
143
+ - app/models/mystro_volley/install.rb
124
144
  - app/models/mystro_volley/version.rb
125
- - app/views/mystro_volley/branches/_branch.html.erb
126
- - app/views/mystro_volley/branches/_form.html.erb
127
- - app/views/mystro_volley/branches/_list.html.erb
128
- - app/views/mystro_volley/branches/edit.html.erb
129
- - app/views/mystro_volley/branches/index.html.erb
130
- - app/views/mystro_volley/branches/new.html.erb
131
- - app/views/mystro_volley/branches/show.html.erb
132
- - app/views/mystro_volley/common/_breadcrumbs.html.erb
133
- - app/views/mystro_volley/home/index.html.erb
134
- - app/views/mystro_volley/home/show.html.erb
135
- - app/views/mystro_volley/projects/_form.html.erb
136
- - app/views/mystro_volley/projects/_list.html.erb
137
- - app/views/mystro_volley/projects/_project.html.erb
138
- - app/views/mystro_volley/projects/edit.html.erb
139
- - app/views/mystro_volley/projects/index.html.erb
140
- - app/views/mystro_volley/projects/new.html.erb
141
- - app/views/mystro_volley/projects/show.html.erb
142
- - app/views/mystro_volley/versions/_form.html.erb
143
- - app/views/mystro_volley/versions/_list.html.erb
144
- - app/views/mystro_volley/versions/_version.html.erb
145
- - app/views/mystro_volley/versions/deploy.html.erb
146
- - app/views/mystro_volley/versions/edit.html.erb
147
- - app/views/mystro_volley/versions/index.html.erb
148
- - app/views/mystro_volley/versions/new.html.erb
149
- - app/views/mystro_volley/versions/show.html.erb
150
- - app/workers/volley_worker.rb
145
+ - app/helpers/mystro_volley/projects_helper.rb
146
+ - app/helpers/mystro_volley/application_helper.rb
147
+ - app/helpers/mystro_volley/branches_helper.rb
148
+ - app/helpers/mystro_volley/versions_helper.rb
149
+ - app/assets/javascripts/mystro-volley/application.js
150
+ - app/assets/stylesheets/mystro-volley/home.css.scss
151
+ - app/assets/stylesheets/mystro-volley/application.css
151
152
  - config/routes.rb
152
153
  - lib/mystro-volley/engine.rb
153
- - lib/mystro-volley/plugin.rb
154
154
  - lib/mystro-volley/version.rb
155
+ - lib/mystro-volley/plugin.rb
155
156
  - lib/mystro-volley.rb
156
157
  - lib/tasks/mystro-volley_tasks.rake
157
158
  - MIT-LICENSE
158
159
  - Rakefile
159
160
  - README.rdoc
160
- - test/dummy/app/assets/javascripts/application.js
161
- - test/dummy/app/assets/stylesheets/application.css
162
- - test/dummy/app/controllers/application_controller.rb
163
- - test/dummy/app/helpers/application_helper.rb
164
- - test/dummy/app/views/layouts/application.html.erb
165
- - test/dummy/config/application.rb
161
+ - test/mystro-volley_test.rb
162
+ - test/dummy/log/development.log
163
+ - test/dummy/config/locales/en.yml
166
164
  - test/dummy/config/boot.rb
167
- - test/dummy/config/database.yml
168
- - test/dummy/config/environment.rb
169
165
  - test/dummy/config/environments/development.rb
170
- - test/dummy/config/environments/production.rb
171
166
  - test/dummy/config/environments/test.rb
172
- - test/dummy/config/initializers/backtrace_silencers.rb
173
- - test/dummy/config/initializers/inflections.rb
174
- - test/dummy/config/initializers/mime_types.rb
167
+ - test/dummy/config/environments/production.rb
168
+ - test/dummy/config/routes.rb
169
+ - test/dummy/config/environment.rb
170
+ - test/dummy/config/application.rb
171
+ - test/dummy/config/database.yml
172
+ - test/dummy/config/initializers/wrap_parameters.rb
175
173
  - test/dummy/config/initializers/secret_token.rb
174
+ - test/dummy/config/initializers/mime_types.rb
176
175
  - test/dummy/config/initializers/session_store.rb
177
- - test/dummy/config/initializers/wrap_parameters.rb
178
- - test/dummy/config/locales/en.yml
179
- - test/dummy/config/routes.rb
176
+ - test/dummy/config/initializers/backtrace_silencers.rb
177
+ - test/dummy/config/initializers/inflections.rb
178
+ - test/dummy/script/rails
179
+ - test/dummy/Rakefile
180
180
  - test/dummy/config.ru
181
- - test/dummy/public/404.html
182
- - test/dummy/public/422.html
183
181
  - test/dummy/public/500.html
182
+ - test/dummy/public/422.html
183
+ - test/dummy/public/404.html
184
184
  - test/dummy/public/favicon.ico
185
- - test/dummy/Rakefile
186
185
  - test/dummy/README.rdoc
187
- - test/dummy/script/rails
186
+ - test/dummy/app/views/layouts/application.html.erb
187
+ - test/dummy/app/controllers/application_controller.rb
188
+ - test/dummy/app/helpers/application_helper.rb
189
+ - test/dummy/app/assets/javascripts/application.js
190
+ - test/dummy/app/assets/stylesheets/application.css
188
191
  - test/fixtures/mystro_volley/projects.yml
192
+ - test/integration/navigation_test.rb
189
193
  - test/functional/mystro_volley/branches_controller_test.rb
190
194
  - test/functional/mystro_volley/projects_controller_test.rb
191
195
  - test/functional/mystro_volley/versions_controller_test.rb
192
- - test/integration/navigation_test.rb
193
- - test/mystro-volley_test.rb
194
196
  - test/test_helper.rb
195
197
  - test/unit/helpers/mystro_volley/branches_helper_test.rb
196
- - test/unit/helpers/mystro_volley/projects_helper_test.rb
197
198
  - test/unit/helpers/mystro_volley/versions_helper_test.rb
199
+ - test/unit/helpers/mystro_volley/projects_helper_test.rb
198
200
  - test/unit/mystro_volley/project_test.rb
199
201
  homepage: https://github.com/shawncatz/mystro-volley
200
202
  licenses: []
@@ -210,13 +212,16 @@ required_ruby_version: !ruby/object:Gem::Requirement
210
212
  version: '0'
211
213
  segments:
212
214
  - 0
213
- hash: -4394468233340776939
215
+ hash: 4060135124508774819
214
216
  required_rubygems_version: !ruby/object:Gem::Requirement
215
217
  none: false
216
218
  requirements:
217
- - - ! '>'
219
+ - - ! '>='
218
220
  - !ruby/object:Gem::Version
219
- version: 1.3.1
221
+ version: '0'
222
+ segments:
223
+ - 0
224
+ hash: 4060135124508774819
220
225
  requirements: []
221
226
  rubyforge_project:
222
227
  rubygems_version: 1.8.24
@@ -224,42 +229,43 @@ signing_key:
224
229
  specification_version: 3
225
230
  summary: Volley integration for Mystro Server
226
231
  test_files:
227
- - test/dummy/app/assets/javascripts/application.js
228
- - test/dummy/app/assets/stylesheets/application.css
229
- - test/dummy/app/controllers/application_controller.rb
230
- - test/dummy/app/helpers/application_helper.rb
231
- - test/dummy/app/views/layouts/application.html.erb
232
- - test/dummy/config/application.rb
232
+ - test/mystro-volley_test.rb
233
+ - test/dummy/log/development.log
234
+ - test/dummy/config/locales/en.yml
233
235
  - test/dummy/config/boot.rb
234
- - test/dummy/config/database.yml
235
- - test/dummy/config/environment.rb
236
236
  - test/dummy/config/environments/development.rb
237
- - test/dummy/config/environments/production.rb
238
237
  - test/dummy/config/environments/test.rb
239
- - test/dummy/config/initializers/backtrace_silencers.rb
240
- - test/dummy/config/initializers/inflections.rb
241
- - test/dummy/config/initializers/mime_types.rb
238
+ - test/dummy/config/environments/production.rb
239
+ - test/dummy/config/routes.rb
240
+ - test/dummy/config/environment.rb
241
+ - test/dummy/config/application.rb
242
+ - test/dummy/config/database.yml
243
+ - test/dummy/config/initializers/wrap_parameters.rb
242
244
  - test/dummy/config/initializers/secret_token.rb
245
+ - test/dummy/config/initializers/mime_types.rb
243
246
  - test/dummy/config/initializers/session_store.rb
244
- - test/dummy/config/initializers/wrap_parameters.rb
245
- - test/dummy/config/locales/en.yml
246
- - test/dummy/config/routes.rb
247
+ - test/dummy/config/initializers/backtrace_silencers.rb
248
+ - test/dummy/config/initializers/inflections.rb
249
+ - test/dummy/script/rails
250
+ - test/dummy/Rakefile
247
251
  - test/dummy/config.ru
248
- - test/dummy/public/404.html
249
- - test/dummy/public/422.html
250
252
  - test/dummy/public/500.html
253
+ - test/dummy/public/422.html
254
+ - test/dummy/public/404.html
251
255
  - test/dummy/public/favicon.ico
252
- - test/dummy/Rakefile
253
256
  - test/dummy/README.rdoc
254
- - test/dummy/script/rails
257
+ - test/dummy/app/views/layouts/application.html.erb
258
+ - test/dummy/app/controllers/application_controller.rb
259
+ - test/dummy/app/helpers/application_helper.rb
260
+ - test/dummy/app/assets/javascripts/application.js
261
+ - test/dummy/app/assets/stylesheets/application.css
255
262
  - test/fixtures/mystro_volley/projects.yml
263
+ - test/integration/navigation_test.rb
256
264
  - test/functional/mystro_volley/branches_controller_test.rb
257
265
  - test/functional/mystro_volley/projects_controller_test.rb
258
266
  - test/functional/mystro_volley/versions_controller_test.rb
259
- - test/integration/navigation_test.rb
260
- - test/mystro-volley_test.rb
261
267
  - test/test_helper.rb
262
268
  - test/unit/helpers/mystro_volley/branches_helper_test.rb
263
- - test/unit/helpers/mystro_volley/projects_helper_test.rb
264
269
  - test/unit/helpers/mystro_volley/versions_helper_test.rb
270
+ - test/unit/helpers/mystro_volley/projects_helper_test.rb
265
271
  - test/unit/mystro_volley/project_test.rb