twoffein-client 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/.travis.yml ADDED
@@ -0,0 +1,22 @@
1
+ language: ruby
2
+ rvm:
3
+ - 1.8.7
4
+ - 1.9.2
5
+ - 1.9.3
6
+ #script: bundle exec rake test
7
+ script: bundle exec rake spec
8
+ #before_install:
9
+ #- gem update --system
10
+ #- gem --version
11
+ env:
12
+ - USE_PLYMOUTH="no"
13
+ branches:
14
+ only:
15
+ - master
16
+ notifications:
17
+ email:
18
+ recipients:
19
+ - dsiw@dsiw-it.de
20
+ on_succes: change
21
+ # [always|never|change]
22
+ on_failure: always
data/README.md CHANGED
@@ -42,6 +42,13 @@ COMMANDS
42
42
 
43
43
  ```
44
44
 
45
+ ### Credentials
46
+
47
+ You need your credentials (screen_name, api_key) to get access to the Twoffein-API. Please set these as
48
+ shell environment variables `TWOFFEIN_SCREEN_NAME` and `TWOFFEIN_API_KEY`. Thank's!
49
+
50
+ TWOFFEIN_SCREEN_NAME=NAME TWOFFEIN_API_KEY=KEY twoffein-client drinks
51
+
45
52
  ## Examples
46
53
 
47
54
 
data/README.md.erb CHANGED
@@ -23,6 +23,13 @@ Or install it yourself as:
23
23
  <%= %x[bundle exec bin/twoffein-client --help] %>
24
24
  ```
25
25
 
26
+ ### Credentials
27
+
28
+ You need your credentials (screen_name, api_key) to get access to the Twoffein-API. Please set these as
29
+ shell environment variables `TWOFFEIN_SCREEN_NAME` and `TWOFFEIN_API_KEY`. Thank's!
30
+
31
+ TWOFFEIN_SCREEN_NAME=NAME TWOFFEIN_API_KEY=KEY twoffein-client drinks
32
+
26
33
  ## Examples
27
34
  <%
28
35
  def self.example(title, command);
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.1
1
+ 0.1.2
@@ -1,5 +1,5 @@
1
1
  # You have to set your user name and your API key
2
2
  # Please visit http://twoffein.de/users/<USERNAME>/#api to get your API key.
3
3
 
4
- ENV['TWOFFEIN_SCREEN_NAME'] = "DSIW"
5
- ENV['TWOFFEIN_API_KEY'] = "1CBA7V9XFKHJ"
4
+ #ENV['TWOFFEIN_SCREEN_NAME'] = "USER_NAME"
5
+ #ENV['TWOFFEIN_API_KEY'] = "KEY"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: twoffein-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -166,6 +166,7 @@ files:
166
166
  - .gitignore
167
167
  - .rspec
168
168
  - .rvmrc
169
+ - .travis.yml
169
170
  - Gemfile
170
171
  - LICENSE
171
172
  - README.md