pillboxr 0.0.2 → 0.0.3

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.
Files changed (5) hide show
  1. data/.gitignore +2 -0
  2. data/README.rdoc +2 -0
  3. data/lib/version.rb +1 -1
  4. metadata +2 -3
  5. data/Gemfile.lock +0 -27
data/.gitignore CHANGED
@@ -2,3 +2,5 @@ test_api_key.yml
2
2
  doc
3
3
  *.gem
4
4
  .bundle
5
+ pkg
6
+ Gemfile.lock
data/README.rdoc CHANGED
@@ -10,6 +10,8 @@ Pillboxr inherits from ActiveResource to perform it's XML wrapping so ActiveReso
10
10
 
11
11
  Getting started is fairly easy:
12
12
 
13
+ $ gem install pillboxr
14
+
13
15
  >> require 'pillboxr' # You may have to require rubygems first
14
16
 
15
17
  >> Pillboxr.api_key = 'YOUR API KEY HERE' # See below for directions on obtaining an API key
data/lib/version.rb CHANGED
@@ -1 +1 @@
1
- Pillboxr::VERSION = "0.0.2"
1
+ Pillboxr::VERSION = "0.0.3"
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 0
8
- - 2
9
- version: 0.0.2
8
+ - 3
9
+ version: 0.0.3
10
10
  platform: ruby
11
11
  authors:
12
12
  - Keith Gautreaux
@@ -78,7 +78,6 @@ extra_rdoc_files: []
78
78
  files:
79
79
  - .gitignore
80
80
  - Gemfile
81
- - Gemfile.lock
82
81
  - README.rdoc
83
82
  - Rakefile
84
83
  - lib/activeresource_patch.rb
data/Gemfile.lock DELETED
@@ -1,27 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- pillboxr (0.0.1)
5
- activeresource (> 2.3.5)
6
-
7
- GEM
8
- remote: http://rubygems.org/
9
- specs:
10
- activemodel (3.0.0)
11
- activesupport (= 3.0.0)
12
- builder (~> 2.1.2)
13
- i18n (~> 0.4.1)
14
- activeresource (3.0.0)
15
- activemodel (= 3.0.0)
16
- activesupport (= 3.0.0)
17
- activesupport (3.0.0)
18
- builder (2.1.2)
19
- i18n (0.4.1)
20
-
21
- PLATFORMS
22
- ruby
23
-
24
- DEPENDENCIES
25
- activeresource (> 2.3.5)
26
- bundler (>= 1.0.0)
27
- pillboxr!