shelly 0.2.19 → 0.2.20

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 0.2.20 / 2013-05-09
2
+
3
+ * [improvement] `shelly info`, `shelly list` and `shelly organization list` now use the new state_description attribute returned by Shelly API
4
+
1
5
  ## 0.2.19 / 2013-05-06
2
6
 
3
7
  * [improvement] warn user that his public SSH key will be uploaded on login and register.
data/lib/shelly/app.rb CHANGED
@@ -17,6 +17,16 @@ module Shelly
17
17
  self.content = content
18
18
  end
19
19
 
20
+ def self.from_attributes(attributes)
21
+ new(attributes["code_name"]).tap do |app|
22
+ app.attributes = attributes
23
+ end
24
+ end
25
+
26
+ def attributes=(attributes)
27
+ @attributes = attributes
28
+ end
29
+
20
30
  def thin
21
31
  size == "small" ? 2 : 4
22
32
  end
@@ -210,6 +220,10 @@ module Shelly
210
220
  attributes["state"]
211
221
  end
212
222
 
223
+ def state_description
224
+ attributes["state_description"]
225
+ end
226
+
213
227
  def credit
214
228
  attributes["organization"]["credit"].to_f
215
229
  end
@@ -153,14 +153,7 @@ module Shelly
153
153
  apps = user.apps
154
154
  unless apps.empty?
155
155
  say "You have following clouds available:", :green
156
- apps_table = apps.map do |app|
157
- state = app["state"]
158
- msg = if state == "deploy_failed" || state == "configuration_failed"
159
- " (deployment log: `shelly deploys show last -c #{app["code_name"]}`)"
160
- end
161
- [app["code_name"], "| #{state.humanize}#{msg}"]
162
- end
163
- print_table(apps_table, :ident => 2)
156
+ print_table(apps_table(apps), :ident => 2)
164
157
  else
165
158
  say "You have no clouds yet", :green
166
159
  end
@@ -175,7 +168,7 @@ module Shelly
175
168
  " (deployment log: `shelly deploys show last -c #{app}`)"
176
169
  end
177
170
  say "Cloud #{app}:", msg.present? ? :red : :green
178
- print_wrapped "State: #{app.state}#{msg}", :ident => 2
171
+ print_wrapped "State: #{app.state_description}#{msg}", :ident => 2
179
172
  say_new_line
180
173
  print_wrapped "Deployed commit sha: #{app.git_info["deployed_commit_sha"]}", :ident => 2
181
174
  print_wrapped "Deployed commit message: #{app.git_info["deployed_commit_message"]}", :ident => 2
@@ -17,14 +17,7 @@ module Shelly
17
17
  organizations.each do |organization|
18
18
  say organization.name, :green
19
19
  if organization.apps.present?
20
- apps_table = organization.apps.map do |app|
21
- state = app.state
22
- msg = if state == "deploy_failed" || state == "configuration_failed"
23
- " (deployment log: `shelly deploys show last -c #{app["code_name"]}`)"
24
- end
25
- [app.to_s, "| #{state.humanize}#{msg}"]
26
- end
27
- print_table(apps_table, :ident => 2, :colwidth => 35)
20
+ print_table(apps_table(organization.apps), :ident => 2, :colwidth => 35)
28
21
  else
29
22
  print_wrapped "No clouds", :ident => 2
30
23
  end
@@ -164,5 +164,14 @@ More info at http://git-scm.com/book/en/Git-Basics-Getting-a-Git-Repository}
164
164
  say "#{action_name} failed. See logs with `shelly deploy show last --cloud #{app}`", :red
165
165
  end
166
166
  end
167
+
168
+ def apps_table(apps)
169
+ apps.map do |app|
170
+ msg = if app.state == "deploy_failed" || app.state == "configuration_failed"
171
+ " (deployment log: `shelly deploys show last -c #{app.code_name}`)"
172
+ end
173
+ [app.code_name, "| #{app.state_description}#{msg}"]
174
+ end
175
+ end
167
176
  end
168
177
  end
data/lib/shelly/user.rb CHANGED
@@ -10,7 +10,9 @@ module Shelly
10
10
  end
11
11
 
12
12
  def apps
13
- shelly.apps
13
+ shelly.apps.map do |attributes|
14
+ Shelly::App.from_attributes(attributes)
15
+ end
14
16
  end
15
17
 
16
18
  def organizations
@@ -1,3 +1,3 @@
1
1
  module Shelly
2
- VERSION = "0.2.19"
2
+ VERSION = "0.2.20"
3
3
  end
@@ -207,8 +207,11 @@ describe Shelly::CLI::Main do
207
207
  File.open("~/.ssh/id_rsa.pub", "w") { |f| f << "ssh-key AAbbcc" }
208
208
  @user.stub(:upload_ssh_key)
209
209
  @client.stub(:token).and_return("abc")
210
- @client.stub(:apps).and_return([{"code_name" => "abc", "state" => "running"},
211
- {"code_name" => "fooo", "state" => "no_code"},])
210
+ @client.stub(:apps).and_return([
211
+ {"code_name" => "abc", "state" => "running",
212
+ "state_description" => "running"},
213
+ {"code_name" => "fooo", "state" => "no_code",
214
+ "state_description" => "turned off (no code pushed)"},])
212
215
  Shelly::User.stub(:new).and_return(@user)
213
216
  end
214
217
 
@@ -244,7 +247,7 @@ describe Shelly::CLI::Main do
244
247
  it "should display list of applications to which user has access" do
245
248
  $stdout.should_receive(:puts).with("\e[32mYou have following clouds available:\e[0m")
246
249
  $stdout.should_receive(:puts).with(/ abc\s+\| running/)
247
- $stdout.should_receive(:puts).with(/ fooo\s+\| no code/)
250
+ $stdout.should_receive(:puts).with(/ fooo\s+\| turned off \(no code pushed\)/)
248
251
  fake_stdin(["megan@example.com", "secret"]) do
249
252
  invoke(@main, :login)
250
253
  end
@@ -638,9 +641,9 @@ More info at http://git-scm.com/book/en/Git-Basics-Getting-a-Git-Repository\e[0m
638
641
  before do
639
642
  @client.stub(:token).and_return("abc")
640
643
  @client.stub(:apps).and_return([
641
- {"code_name" => "abc", "state" => "running"},
642
- {"code_name" => "fooo", "state" => "deploy_failed"},
643
- {"code_name" => "bar", "state" => "configuration_failed"}
644
+ {"code_name" => "abc", "state" => "running", "state_description" => "running"},
645
+ {"code_name" => "fooo", "state" => "deploy_failed", "state_description" => "running (last deployment failed)"},
646
+ {"code_name" => "bar", "state" => "configuration_failed", "state_description" => "not running (last deployment failed)"}
644
647
  ])
645
648
  end
646
649
 
@@ -651,8 +654,8 @@ More info at http://git-scm.com/book/en/Git-Basics-Getting-a-Git-Repository\e[0m
651
654
  it "should display user's clouds" do
652
655
  $stdout.should_receive(:puts).with("\e[32mYou have following clouds available:\e[0m")
653
656
  $stdout.should_receive(:puts).with(/abc\s+\| running/)
654
- $stdout.should_receive(:puts).with(/fooo\s+\| deploy failed \(deployment log: `shelly deploys show last -c fooo`\)/)
655
- $stdout.should_receive(:puts).with(/bar\s+\| configuration failed \(deployment log: `shelly deploys show last -c bar`\)/)
657
+ $stdout.should_receive(:puts).with(/fooo\s+\| running \(last deployment failed\) \(deployment log: `shelly deploys show last -c fooo`\)/)
658
+ $stdout.should_receive(:puts).with(/bar\s+\| not running \(last deployment failed\) \(deployment log: `shelly deploys show last -c bar`\)/)
656
659
  invoke(@main, :list)
657
660
  end
658
661
 
@@ -679,8 +682,10 @@ More info at http://git-scm.com/book/en/Git-Basics-Getting-a-Git-Repository\e[0m
679
682
  before do
680
683
  setup_project
681
684
  @client.stub(:apps).and_return([
682
- {"code_name" => "foo-production", "state" => "running"},
683
- {"code_name" => "foo-staging", "state" => "no_code"}])
685
+ {"code_name" => "foo-production", "state" => "running",
686
+ "state_description" => "running"},
687
+ {"code_name" => "foo-staging", "state" => "no_code",
688
+ "state_description" => "turned off (no code pushed)"}])
684
689
  @client.stub(:start_cloud => {"deployment" => {"id" => "DEPLOYMENT_ID"}})
685
690
  @deployment = {"messages" => ["message1"],
686
691
  "result" => "success", "state" => "finished"}
@@ -710,12 +715,13 @@ More info at http://git-scm.com/book/en/Git-Basics-Getting-a-Git-Repository\e[0m
710
715
  end
711
716
 
712
717
  it "should ask user to specify cloud, list all clouds and exit" do
718
+ Shelly::App.unstub(:new) # makes Shelly::User#apps work
713
719
  Dir.chdir("/projects")
714
720
  $stdout.should_receive(:puts).with(red "You have to specify cloud.")
715
721
  $stdout.should_receive(:puts).with("Select cloud using `shelly start --cloud CLOUD_NAME`")
716
722
  $stdout.should_receive(:puts).with(green "You have following clouds available:")
717
723
  $stdout.should_receive(:puts).with(" foo-production | running")
718
- $stdout.should_receive(:puts).with(" foo-staging | no code")
724
+ $stdout.should_receive(:puts).with(" foo-staging | turned off (no code pushed)")
719
725
  lambda { invoke(@main, :start) }.should raise_error(SystemExit)
720
726
  end
721
727
  end
@@ -965,10 +971,10 @@ Wait until cloud is in 'turned off' state and try again.")
965
971
 
966
972
  context "when deploy failed or configuration failed" do
967
973
  it "should display basic information about information and command to last log" do
968
- @app.stub(:attributes).and_return(response({"state" => "deploy_failed"}))
974
+ @app.stub(:attributes).and_return(response({"state" => "deploy_failed", "state_description" => "running (last deployment failed)"}))
969
975
  @main.should_receive(:multiple_clouds).and_return(@app)
970
976
  $stdout.should_receive(:puts).with(red "Cloud foo-production:")
971
- $stdout.should_receive(:puts).with(" State: deploy_failed (deployment log: `shelly deploys show last -c foo-production`)")
977
+ $stdout.should_receive(:puts).with(" State: running (last deployment failed) (deployment log: `shelly deploys show last -c foo-production`)")
972
978
  $stdout.should_receive(:puts).with(" Deployed commit sha: 52e65ed2d085eaae560cdb81b2b56a7d76")
973
979
  $stdout.should_receive(:puts).with(" Deployed commit message: Commit message")
974
980
  $stdout.should_receive(:puts).with(" Deployed by: megan@example.com")
@@ -982,10 +988,10 @@ Wait until cloud is in 'turned off' state and try again.")
982
988
  end
983
989
 
984
990
  it "should display basic information about information and command to last log" do
985
- @app.stub(:attributes).and_return(response({"state" => "configuration_failed"}))
991
+ @app.stub(:attributes).and_return(response({"state" => "configuration_failed", "state_description" => "running (last deployment failed)"}))
986
992
  @main.should_receive(:multiple_clouds).and_return(@app)
987
993
  $stdout.should_receive(:puts).with(red "Cloud foo-production:")
988
- $stdout.should_receive(:puts).with(" State: configuration_failed (deployment log: `shelly deploys show last -c foo-production`)")
994
+ $stdout.should_receive(:puts).with(" State: running (last deployment failed) (deployment log: `shelly deploys show last -c foo-production`)")
989
995
  $stdout.should_receive(:puts).with(" Deployed commit sha: 52e65ed2d085eaae560cdb81b2b56a7d76")
990
996
  $stdout.should_receive(:puts).with(" Deployed commit message: Commit message")
991
997
  $stdout.should_receive(:puts).with(" Deployed by: megan@example.com")
@@ -999,7 +1005,7 @@ Wait until cloud is in 'turned off' state and try again.")
999
1005
  end
1000
1006
 
1001
1007
  it "should not display statistics when statistics are empty" do
1002
- @app.stub(:attributes).and_return(response({"state" => "turned_off"}))
1008
+ @app.stub(:attributes).and_return(response({"state" => "turned_off", "state_description" => "turned off"}))
1003
1009
  @main.should_receive(:multiple_clouds).and_return(@app)
1004
1010
  @app.stub(:statistics).and_return([])
1005
1011
  $stdout.should_not_receive(:puts).with("Statistics:")
@@ -1021,6 +1027,7 @@ Wait until cloud is in 'turned off' state and try again.")
1021
1027
  def response(options = {})
1022
1028
  { "code_name" => "foo-production",
1023
1029
  "state" => "running",
1030
+ "state_description" => "running",
1024
1031
  "git_info" =>
1025
1032
  {
1026
1033
  "deployed_commit_message" => "Commit message",
@@ -177,7 +177,7 @@ describe Shelly::User do
177
177
 
178
178
  describe "#apps" do
179
179
  it "should fetch list of apps via API client" do
180
- @client.should_receive(:apps)
180
+ @client.should_receive(:apps).and_return([])
181
181
  @user.apps
182
182
  end
183
183
  end
metadata CHANGED
@@ -1,211 +1,208 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shelly
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.19
4
+ prerelease:
5
+ version: 0.2.20
5
6
  platform: ruby
6
7
  authors:
7
8
  - Shelly Cloud team
8
9
  autorequire:
9
10
  bindir: bin
10
11
  cert_chain: []
11
- date: 2013-05-06 00:00:00.000000000 Z
12
+ date: 2013-05-09 00:00:00.000000000 Z
12
13
  dependencies:
13
14
  - !ruby/object:Gem::Dependency
14
- requirement: !ruby/object:Gem::Requirement
15
+ prerelease: false
16
+ type: :development
17
+ name: rspec
18
+ version_requirements: !ruby/object:Gem::Requirement
19
+ none: false
15
20
  requirements:
16
21
  - - ~>
17
22
  - !ruby/object:Gem::Version
18
23
  version: 2.11.0
19
- version_requirements: !ruby/object:Gem::Requirement
24
+ requirement: !ruby/object:Gem::Requirement
25
+ none: false
20
26
  requirements:
21
27
  - - ~>
22
28
  - !ruby/object:Gem::Version
23
29
  version: 2.11.0
24
- type: :development
25
- prerelease: false
26
- name: rspec
27
30
  - !ruby/object:Gem::Dependency
28
- requirement: !ruby/object:Gem::Requirement
29
- requirements:
30
- - - ! '>='
31
- - !ruby/object:Gem::Version
32
- version: '0'
33
- version_requirements: !ruby/object:Gem::Requirement
34
- requirements:
35
- - - ! '>='
36
- - !ruby/object:Gem::Version
37
- version: '0'
38
- type: :development
39
31
  prerelease: false
32
+ type: :development
40
33
  name: rake
41
- - !ruby/object:Gem::Dependency
42
- requirement: !ruby/object:Gem::Requirement
43
- requirements:
44
- - - ! '>='
45
- - !ruby/object:Gem::Version
46
- version: '0'
47
34
  version_requirements: !ruby/object:Gem::Requirement
35
+ none: false
48
36
  requirements:
49
37
  - - ! '>='
50
38
  - !ruby/object:Gem::Version
51
39
  version: '0'
52
- type: :development
53
- prerelease: false
54
- name: guard
55
- - !ruby/object:Gem::Dependency
56
40
  requirement: !ruby/object:Gem::Requirement
41
+ none: false
57
42
  requirements:
58
43
  - - ! '>='
59
44
  - !ruby/object:Gem::Version
60
45
  version: '0'
46
+ - !ruby/object:Gem::Dependency
47
+ prerelease: false
48
+ type: :development
49
+ name: guard
61
50
  version_requirements: !ruby/object:Gem::Requirement
51
+ none: false
62
52
  requirements:
63
53
  - - ! '>='
64
54
  - !ruby/object:Gem::Version
65
55
  version: '0'
66
- type: :development
67
- prerelease: false
68
- name: guard-rspec
69
- - !ruby/object:Gem::Dependency
70
56
  requirement: !ruby/object:Gem::Requirement
57
+ none: false
71
58
  requirements:
72
59
  - - ! '>='
73
60
  - !ruby/object:Gem::Version
74
61
  version: '0'
62
+ - !ruby/object:Gem::Dependency
63
+ prerelease: false
64
+ type: :development
65
+ name: guard-rspec
75
66
  version_requirements: !ruby/object:Gem::Requirement
67
+ none: false
76
68
  requirements:
77
69
  - - ! '>='
78
70
  - !ruby/object:Gem::Version
79
71
  version: '0'
80
- type: :development
81
- prerelease: false
82
- name: simplecov
83
- - !ruby/object:Gem::Dependency
84
72
  requirement: !ruby/object:Gem::Requirement
73
+ none: false
85
74
  requirements:
86
75
  - - ! '>='
87
76
  - !ruby/object:Gem::Version
88
77
  version: '0'
78
+ - !ruby/object:Gem::Dependency
79
+ prerelease: false
80
+ type: :development
81
+ name: simplecov
89
82
  version_requirements: !ruby/object:Gem::Requirement
83
+ none: false
90
84
  requirements:
91
85
  - - ! '>='
92
86
  - !ruby/object:Gem::Version
93
87
  version: '0'
94
- type: :development
95
- prerelease: false
96
- name: ruby_gntp
97
- - !ruby/object:Gem::Dependency
98
88
  requirement: !ruby/object:Gem::Requirement
89
+ none: false
99
90
  requirements:
100
91
  - - ! '>='
101
92
  - !ruby/object:Gem::Version
102
93
  version: '0'
94
+ - !ruby/object:Gem::Dependency
95
+ prerelease: false
96
+ type: :development
97
+ name: fakefs
103
98
  version_requirements: !ruby/object:Gem::Requirement
99
+ none: false
104
100
  requirements:
105
101
  - - ! '>='
106
102
  - !ruby/object:Gem::Version
107
103
  version: '0'
108
- type: :development
109
- prerelease: false
110
- name: rb-fsevent
111
- - !ruby/object:Gem::Dependency
112
104
  requirement: !ruby/object:Gem::Requirement
105
+ none: false
113
106
  requirements:
114
107
  - - ! '>='
115
108
  - !ruby/object:Gem::Version
116
109
  version: '0'
110
+ - !ruby/object:Gem::Dependency
111
+ prerelease: false
112
+ type: :development
113
+ name: fakeweb
117
114
  version_requirements: !ruby/object:Gem::Requirement
115
+ none: false
118
116
  requirements:
119
117
  - - ! '>='
120
118
  - !ruby/object:Gem::Version
121
119
  version: '0'
122
- type: :development
123
- prerelease: false
124
- name: fakefs
125
- - !ruby/object:Gem::Dependency
126
120
  requirement: !ruby/object:Gem::Requirement
121
+ none: false
127
122
  requirements:
128
123
  - - ! '>='
129
124
  - !ruby/object:Gem::Version
130
125
  version: '0'
126
+ - !ruby/object:Gem::Dependency
127
+ prerelease: false
128
+ type: :runtime
129
+ name: wijet-thor
131
130
  version_requirements: !ruby/object:Gem::Requirement
131
+ none: false
132
132
  requirements:
133
- - - ! '>='
133
+ - - ~>
134
134
  - !ruby/object:Gem::Version
135
- version: '0'
136
- type: :development
137
- prerelease: false
138
- name: fakeweb
139
- - !ruby/object:Gem::Dependency
135
+ version: 0.14.9
140
136
  requirement: !ruby/object:Gem::Requirement
137
+ none: false
141
138
  requirements:
142
139
  - - ~>
143
140
  - !ruby/object:Gem::Version
144
141
  version: 0.14.9
142
+ - !ruby/object:Gem::Dependency
143
+ prerelease: false
144
+ type: :runtime
145
+ name: rest-client
145
146
  version_requirements: !ruby/object:Gem::Requirement
147
+ none: false
146
148
  requirements:
147
- - - ~>
149
+ - - ! '>='
148
150
  - !ruby/object:Gem::Version
149
- version: 0.14.9
150
- type: :runtime
151
- prerelease: false
152
- name: wijet-thor
153
- - !ruby/object:Gem::Dependency
151
+ version: '0'
154
152
  requirement: !ruby/object:Gem::Requirement
153
+ none: false
155
154
  requirements:
156
155
  - - ! '>='
157
156
  - !ruby/object:Gem::Version
158
157
  version: '0'
158
+ - !ruby/object:Gem::Dependency
159
+ prerelease: false
160
+ type: :runtime
161
+ name: json
159
162
  version_requirements: !ruby/object:Gem::Requirement
163
+ none: false
160
164
  requirements:
161
165
  - - ! '>='
162
166
  - !ruby/object:Gem::Version
163
167
  version: '0'
164
- type: :runtime
165
- prerelease: false
166
- name: rest-client
167
- - !ruby/object:Gem::Dependency
168
168
  requirement: !ruby/object:Gem::Requirement
169
+ none: false
169
170
  requirements:
170
171
  - - ! '>='
171
172
  - !ruby/object:Gem::Version
172
173
  version: '0'
174
+ - !ruby/object:Gem::Dependency
175
+ prerelease: false
176
+ type: :runtime
177
+ name: progressbar
173
178
  version_requirements: !ruby/object:Gem::Requirement
179
+ none: false
174
180
  requirements:
175
181
  - - ! '>='
176
182
  - !ruby/object:Gem::Version
177
183
  version: '0'
178
- type: :runtime
179
- prerelease: false
180
- name: json
181
- - !ruby/object:Gem::Dependency
182
184
  requirement: !ruby/object:Gem::Requirement
185
+ none: false
183
186
  requirements:
184
187
  - - ! '>='
185
188
  - !ruby/object:Gem::Version
186
189
  version: '0'
190
+ - !ruby/object:Gem::Dependency
191
+ prerelease: false
192
+ type: :runtime
193
+ name: launchy
187
194
  version_requirements: !ruby/object:Gem::Requirement
195
+ none: false
188
196
  requirements:
189
197
  - - ! '>='
190
198
  - !ruby/object:Gem::Version
191
199
  version: '0'
192
- type: :runtime
193
- prerelease: false
194
- name: progressbar
195
- - !ruby/object:Gem::Dependency
196
200
  requirement: !ruby/object:Gem::Requirement
201
+ none: false
197
202
  requirements:
198
203
  - - ! '>='
199
204
  - !ruby/object:Gem::Version
200
205
  version: '0'
201
- version_requirements: !ruby/object:Gem::Requirement
202
- requirements:
203
- - - ! '>='
204
- - !ruby/object:Gem::Version
205
- version: '0'
206
- type: :runtime
207
- prerelease: false
208
- name: launchy
209
206
  description: Tool for managing applications and clouds at shellycloud.com
210
207
  email:
211
208
  - devs@shellycloud.com
@@ -276,46 +273,26 @@ files:
276
273
  - spec/thor/options_spec.rb
277
274
  homepage: http://shellycloud.com
278
275
  licenses: []
279
- metadata: {}
280
276
  post_install_message:
281
277
  rdoc_options: []
282
278
  require_paths:
283
279
  - lib
284
280
  required_ruby_version: !ruby/object:Gem::Requirement
281
+ none: false
285
282
  requirements:
286
283
  - - ! '>='
287
284
  - !ruby/object:Gem::Version
288
285
  version: '0'
289
286
  required_rubygems_version: !ruby/object:Gem::Requirement
287
+ none: false
290
288
  requirements:
291
289
  - - ! '>='
292
290
  - !ruby/object:Gem::Version
293
291
  version: '0'
294
292
  requirements: []
295
293
  rubyforge_project: shelly
296
- rubygems_version: 2.0.3
294
+ rubygems_version: 1.8.25
297
295
  signing_key:
298
- specification_version: 4
296
+ specification_version: 3
299
297
  summary: Shelly Cloud command line tool
300
- test_files:
301
- - spec/helpers.rb
302
- - spec/input_faker.rb
303
- - spec/shelly/app_spec.rb
304
- - spec/shelly/backup_spec.rb
305
- - spec/shelly/cli/backup_spec.rb
306
- - spec/shelly/cli/config_spec.rb
307
- - spec/shelly/cli/deploy_spec.rb
308
- - spec/shelly/cli/file_spec.rb
309
- - spec/shelly/cli/main_spec.rb
310
- - spec/shelly/cli/organization_spec.rb
311
- - spec/shelly/cli/runner_spec.rb
312
- - spec/shelly/cli/user_spec.rb
313
- - spec/shelly/client_spec.rb
314
- - spec/shelly/cloudfile_spec.rb
315
- - spec/shelly/download_progress_bar_spec.rb
316
- - spec/shelly/model_spec.rb
317
- - spec/shelly/organization_spec.rb
318
- - spec/shelly/structure_validator_spec.rb
319
- - spec/shelly/user_spec.rb
320
- - spec/spec_helper.rb
321
- - spec/thor/options_spec.rb
298
+ test_files: []
checksums.yaml DELETED
@@ -1,15 +0,0 @@
1
- ---
2
- !binary "U0hBMQ==":
3
- metadata.gz: !binary |-
4
- ZjVhNjA5NmQzZjQyMWZmMWVmNTZmODQ1NDc0N2VmZWQ1MWMwNTNhMQ==
5
- data.tar.gz: !binary |-
6
- NmJkYTdlZDcyZThkOWE1NDAwMTNjYWUwNzVlZmFjOTNkYjc0NTRmNA==
7
- !binary "U0hBNTEy":
8
- metadata.gz: !binary |-
9
- OWNmYWU5ODY3YmU2OTg3MGUyZGIwZWI0ZmY3M2YxZjRiMWVlYmRhZTU5MTc1
10
- ZWM1YTU3YjYyOWJhOTc5NWM3M2M0ZDNhNWE4MjcyZmYwZjhmYTgxYzUyZDEx
11
- M2FmN2NiM2VjMmFiOWUzM2E5NTAyODM2YThmYjFhYmNlZDcyYjE=
12
- data.tar.gz: !binary |-
13
- YmZhOTBjMmY3MDA0NTkwMzJkOTQyYTNlOWY1NmVjOWRkNjM5MzgyNzM0NWQ5
14
- NTBjY2YwOTM5ZmQ1YmI0NDQ2ZDY0OWFjNWNkZDYwNDc4YWUyYjc3Mjk5MWRh
15
- Yzc3NGYyODgyOGJiOTIwMjE5ZGQ2YjY5YTZhNDdiMWFjNmQ0NTA=