travis-env_vars 0.1.0 → 0.1.1

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: 4d55467c1ca42239d43b306e44f1001a7eb487d0198b029cdf6e76fb384e255f
4
- data.tar.gz: 1a3e120f3a5a7e8350372c2657d1a5fdd1cbef5032aac019ab4bda1e62232262
3
+ metadata.gz: 512cc3731dc127e76610ab52cf9117316f766ffa45a727088f099281a4d2d540
4
+ data.tar.gz: ed480cea693073b8639946176ab8554c587f8cd232d0dd617ff981d80ddfc0aa
5
5
  SHA512:
6
- metadata.gz: 5d9f481764097b3b77d405434edadcd55d3ed7b11e89d2a77983358bdc89363a9178122c3988b760b3e12f4f717a2f990629b8a1f89dcc305a587ace3fa0dd7f
7
- data.tar.gz: 44b44523835d582d5650a792ef331ab2008f311957c38ad99833b6f4be68cf596bd53f3cf01e7592e95be924a921daab5babae28474c52c569922f999d273e00
6
+ metadata.gz: 5c6d9f2787732c87f2fb02abdf1e96c50a052344cfa51b169910fa21788227476363e6734ba5aa4280e8ce0b34cc447a41662d7af42327e07558f3775b3f01e1
7
+ data.tar.gz: 34320f3f9826c62599c44348dfa6bd75d7563cdfd9a826914285e027affa76fe22c23fb9e074d3722c0fd9f0285aef25bfbba553637e628838d1cf42f29b55ba
data/README.md CHANGED
@@ -1,34 +1,6 @@
1
1
  # Travis::EnvVars
2
2
 
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/travis/env_vars`. To experiment with that code, run `bin/console` for an interactive prompt.
4
-
5
- TODO: Delete this and the text above, and describe your gem
6
-
7
- ## Installation
8
-
9
- Add this line to your application's Gemfile:
10
-
11
- ```ruby
12
- gem 'travis-env_vars'
13
- ```
14
-
15
- And then execute:
16
-
17
- $ bundle
18
-
19
- Or install it yourself as:
20
-
21
- $ gem install travis-env_vars
22
-
23
- ## Usage
24
-
25
- TODO: Write usage instructions here
26
-
27
- ## Development
28
-
29
- After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
30
-
31
- To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
3
+ A library for parsing environment variables from .travis.yml.
32
4
 
33
5
  ## Contributing
34
6
 
@@ -17,7 +17,7 @@ module Travis
17
17
  attr_reader :str
18
18
 
19
19
  def initialize(str)
20
- @str = StringScanner.new(str)
20
+ @str = StringScanner.new(str.to_s.strip)
21
21
  end
22
22
 
23
23
  def parse
@@ -1,5 +1,5 @@
1
1
  module Travis
2
2
  class EnvVars
3
- VERSION = "0.1.0"
3
+ VERSION = "0.1.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: travis-env_vars
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sven Fuchs
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2018-07-25 00:00:00.000000000 Z
12
+ date: 2018-07-26 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler