fitzcamping 0.0.1 → 0.0.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/README.md +13 -9
- data/fitzcamping.gemspec +1 -1
- data/lib/fitzcamping/version.rb +1 -1
- metadata +3 -3
data/README.md
CHANGED
@@ -1,24 +1,28 @@
|
|
1
1
|
# Fitzcamping
|
2
2
|
|
3
|
-
|
3
|
+
Super simple CLI tool to post messages to Campfire
|
4
4
|
|
5
5
|
## Installation
|
6
6
|
|
7
|
-
|
7
|
+
Install the gem on your system
|
8
8
|
|
9
|
-
gem
|
10
|
-
|
11
|
-
And then execute:
|
9
|
+
$ gem install fitzcamping
|
12
10
|
|
13
|
-
|
11
|
+
Set the environment variables
|
14
12
|
|
15
|
-
|
13
|
+
export CAMPFIRE_SITE=<your site name>
|
14
|
+
export CAMPFIRE_ROOM=<room name>
|
15
|
+
export CAMPFIRE_TOKEN=<your campfire API token>
|
16
|
+
|
17
|
+
And then execute:
|
16
18
|
|
17
|
-
$
|
19
|
+
$ camper "Hello world in campfire"
|
18
20
|
|
19
21
|
## Usage
|
20
22
|
|
21
|
-
|
23
|
+
Run from command line
|
24
|
+
|
25
|
+
$ camper "message"
|
22
26
|
|
23
27
|
## Contributing
|
24
28
|
|
data/fitzcamping.gemspec
CHANGED
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
|
|
10
10
|
spec.email = ["alex@alexmreis.com"]
|
11
11
|
spec.description = "Command line utility for posting campfire notifications"
|
12
12
|
spec.summary = "Simple Campfire CLI"
|
13
|
-
spec.homepage = ""
|
13
|
+
spec.homepage = "http://github.com/alexmreis/fitzcamping"
|
14
14
|
spec.license = "MIT"
|
15
15
|
|
16
16
|
spec.files = `git ls-files`.split($/)
|
data/lib/fitzcamping/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fitzcamping
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2014-01-
|
12
|
+
date: 2014-01-09 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: bundler
|
@@ -78,7 +78,7 @@ files:
|
|
78
78
|
- lib/fitzcamping.rb
|
79
79
|
- lib/fitzcamping/camper.rb
|
80
80
|
- lib/fitzcamping/version.rb
|
81
|
-
homepage:
|
81
|
+
homepage: http://github.com/alexmreis/fitzcamping
|
82
82
|
licenses:
|
83
83
|
- MIT
|
84
84
|
post_install_message:
|