avalara 0.1.0 → 0.1.1
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/.gitignore +2 -1
- data/Changelog.md +14 -0
- data/avalara.gemspec +1 -0
- data/lib/avalara/version.rb +1 -1
- metadata +3 -2
data/.gitignore
CHANGED
data/Changelog.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# 0.1.1 - June 11, 2015 - Added license
|
|
2
|
+
|
|
3
|
+
Added MIT license.
|
|
4
|
+
|
|
5
|
+
# 0.1.0 - June 11, 2015 - Ruby Support
|
|
6
|
+
|
|
7
|
+
Great work @orenf
|
|
8
|
+
Removes support for ruby 1.9.2 and 1.8.7
|
|
9
|
+
Upgrades httparty
|
|
10
|
+
Runs on ruby 2.2.1
|
|
11
|
+
Fixes failing specs
|
|
12
|
+
APIError message now returns valid Invoice object
|
|
13
|
+
|
|
14
|
+
|
|
1
15
|
# 0.0.3 - October 4, 2013 - Updated multi_json gem
|
|
2
16
|
|
|
3
17
|
The multi_json gem was way out of date, but https://github.com/imajes
|
data/avalara.gemspec
CHANGED
|
@@ -10,6 +10,7 @@ Gem::Specification.new do |s|
|
|
|
10
10
|
s.homepage = 'https://github.com/adamfortuna/avalara'
|
|
11
11
|
s.summary = %q{A Ruby interface to the Avalara Tax API}
|
|
12
12
|
s.description = %q{This library provides Ruby calls to interact with the Avalara Tax API}
|
|
13
|
+
s.license = 'MIT'
|
|
13
14
|
|
|
14
15
|
s.files = `git ls-files`.split("\n")
|
|
15
16
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
data/lib/avalara/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: avalara
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -181,7 +181,8 @@ files:
|
|
|
181
181
|
- spec/support/factory_girl.rb
|
|
182
182
|
- spec/support/vcr.rb
|
|
183
183
|
homepage: https://github.com/adamfortuna/avalara
|
|
184
|
-
licenses:
|
|
184
|
+
licenses:
|
|
185
|
+
- MIT
|
|
185
186
|
post_install_message:
|
|
186
187
|
rdoc_options: []
|
|
187
188
|
require_paths:
|