flight_facade 0.1.2 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e631abd1b5db8a3bd4936b2cf0b823e7df6a8e354a5b0a592ba04f786d4152d3
4
- data.tar.gz: a750141576dca1d5752ec38af0731dc170e64d13996646f18e46840cd4e2f986
3
+ metadata.gz: fc3fa2547f7b6f265ad3f3f769b8f528e69025af7c08669de23eebc0cc7b61cd
4
+ data.tar.gz: 3a1b3121c6a2238ebda372dfce3071b3ff5a7d970906ee99fcdedfe4f0fd9be9
5
5
  SHA512:
6
- metadata.gz: bf2210815a6f78633ebe4b457cfc912857315c5df7b4313f01d7de5fc3d005c18c7a1d3a317c49a85598b20f458ee44e0842013fe44e15f5e63eb9cecaa63780
7
- data.tar.gz: 5163dd00525604dc883b9f534b2b6186d840cbb5cd1e01f7f550777233d2c5dcc40de7885ce8bff62244928241a57cb8d32fd8c38aee60f262fa3b935d4073f1
6
+ metadata.gz: 8db9b40b33a8ef459382750e4028510a2e24d49eb20a8a7a8a5d0df7ce817d20da3bbb471a481cca0ba15b1f69f09de0b5fccacac21d139d758886b9ef9f0c67
7
+ data.tar.gz: eda411761a345b59c33a93971d803b30dfb06c19be67611737081c718518a223ceea5fa1617c3a150a0ed146659793cd92bd3a84fd10cc2f7adee3c7bb03a40a
@@ -6,3 +6,5 @@ rvm:
6
6
  - 2.5.3
7
7
  - 2.6.5
8
8
  before_install: gem install bundler -v 2.0.2
9
+ install: bundle install
10
+ script: rspec spec --format documentation --order random
@@ -0,0 +1,30 @@
1
+ #==============================================================================
2
+ # Copyright (C) 2020-present Alces Flight Ltd.
3
+ #
4
+ # This file is part of FlightFacade.
5
+ #
6
+ # This program and the accompanying materials are made available under
7
+ # the terms of the Eclipse Public License 2.0 which is available at
8
+ # <https://www.eclipse.org/legal/epl-2.0>, or alternative license
9
+ # terms made available by Alces Flight Ltd - please direct inquiries
10
+ # about licensing to licensing@alces-flight.com.
11
+ #
12
+ # FlightFacade is distributed in the hope that it will be useful, but
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR
14
+ # IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS
15
+ # OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A
16
+ # PARTICULAR PURPOSE. See the Eclipse Public License 2.0 for more
17
+ # details.
18
+ #
19
+ # You should have received a copy of the Eclipse Public License 2.0
20
+ # along with FlightFacade. If not, see:
21
+ #
22
+ # https://opensource.org/licenses/EPL-2.0
23
+ #
24
+ # For more information on FlightFacade , please visit:
25
+ # https://github.com/openflighthpc/flight_facade
26
+ #===============================================================================
27
+
28
+ require 'flight_facade'
29
+ include FlightFacade
30
+
@@ -26,5 +26,5 @@
26
26
  #===============================================================================
27
27
 
28
28
  module FlightFacade
29
- VERSION = "0.1.2"
29
+ VERSION = "0.1.3"
30
30
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: flight_facade
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alces Flight Ltd
@@ -111,9 +111,7 @@ dependencies:
111
111
  description:
112
112
  email:
113
113
  - flight@openflighthpc.org
114
- executables:
115
- - console
116
- - setup
114
+ executables: []
117
115
  extensions: []
118
116
  extra_rdoc_files: []
119
117
  files:
@@ -126,11 +124,10 @@ files:
126
124
  - LICENSE.txt
127
125
  - README.md
128
126
  - Rakefile
129
- - bin/console
130
- - bin/setup
131
127
  - flight_facade.gemspec
132
128
  - lib/flight_facade.rb
133
129
  - lib/flight_facade/facades.rb
130
+ - lib/flight_facade/included.rb
134
131
  - lib/flight_facade/models.rb
135
132
  - lib/flight_facade/version.rb
136
133
  homepage: https://github.com/openflighthpc/flight_facade
@@ -1,11 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- require "bundler/setup"
4
- require "flight_facade"
5
-
6
- # You can add fixtures and/or initialization code here to make experimenting
7
- # with your gem easier. You can also use a different console, if you like.
8
-
9
- # (If you use this, don't forget to add pry to your Gemfile!)
10
- require "pry"
11
- Pry.start
data/bin/setup DELETED
@@ -1,8 +0,0 @@
1
- #!/usr/bin/env bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
- set -vx
5
-
6
- bundle install
7
-
8
- # Do any other automated setup that you need to do here