ey_services_api 0.1.1 → 0.1.2
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.
- data/ci.yml +4 -0
- data/lib/ey_services_api/service.rb +1 -1
- data/lib/ey_services_api/version.rb +1 -1
- data/script/ci +29 -0
- metadata +6 -4
data/ci.yml
ADDED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
module EY
|
|
2
2
|
module ServicesAPI
|
|
3
|
-
class Service < APIStruct.new(:name, :description, :home_url, :service_accounts_url, :terms_and_conditions_url, :vars)
|
|
3
|
+
class Service < APIStruct.new(:name, :label, :description, :home_url, :service_accounts_url, :terms_and_conditions_url, :vars)
|
|
4
4
|
attr_accessor :connection
|
|
5
5
|
attr_accessor :url
|
|
6
6
|
|
data/script/ci
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
#!/usr/bin/env bash
|
|
2
|
+
set -x
|
|
3
|
+
set -e
|
|
4
|
+
|
|
5
|
+
env
|
|
6
|
+
|
|
7
|
+
case "$1" in
|
|
8
|
+
"internal")
|
|
9
|
+
echo "running internal tests"
|
|
10
|
+
export BUNDLE_GEMFILE=EYIntegratedGemfile
|
|
11
|
+
export LANG="en_US.utf-8"
|
|
12
|
+
source use_ruby.sh
|
|
13
|
+
use_ruby 1.9.2
|
|
14
|
+
;;
|
|
15
|
+
"public")
|
|
16
|
+
echo "running public tests"
|
|
17
|
+
;;
|
|
18
|
+
*)
|
|
19
|
+
echo "unknown unit $1"
|
|
20
|
+
exit 1
|
|
21
|
+
;;
|
|
22
|
+
esac
|
|
23
|
+
|
|
24
|
+
gem install bundler --no-rdoc --no-ri
|
|
25
|
+
time bundle install
|
|
26
|
+
time bundle exec rake
|
|
27
|
+
|
|
28
|
+
echo
|
|
29
|
+
echo "Complete"
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ey_services_api
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 31
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 1
|
|
9
|
-
-
|
|
10
|
-
version: 0.1.
|
|
9
|
+
- 2
|
|
10
|
+
version: 0.1.2
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Jacob & Thorben & David & mkb & Josh & Others
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2011-
|
|
18
|
+
date: 2011-11-01 00:00:00 Z
|
|
19
19
|
dependencies:
|
|
20
20
|
- !ruby/object:Gem::Dependency
|
|
21
21
|
name: rspec
|
|
@@ -78,6 +78,7 @@ files:
|
|
|
78
78
|
- Guardfile
|
|
79
79
|
- README.md
|
|
80
80
|
- Rakefile
|
|
81
|
+
- ci.yml
|
|
81
82
|
- ey_services_api.gemspec
|
|
82
83
|
- lib/ey_services_api.rb
|
|
83
84
|
- lib/ey_services_api/api_struct.rb
|
|
@@ -90,6 +91,7 @@ files:
|
|
|
90
91
|
- lib/ey_services_api/service_account_creation.rb
|
|
91
92
|
- lib/ey_services_api/service_account_response.rb
|
|
92
93
|
- lib/ey_services_api/version.rb
|
|
94
|
+
- script/ci
|
|
93
95
|
- spec/invoice_spec.rb
|
|
94
96
|
- spec/message_spec.rb
|
|
95
97
|
- spec/provisioned_service_creation_spec.rb
|