adcloud 0.7.0 → 0.7.1

Sign up to get free protection for your applications and to get access to all the features.
data/RELEASE_NOTES.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Release Notes
2
2
  =============
3
3
 
4
+ ### 0.7.1
5
+
6
+ * Remove Gemfile.lock from gem
7
+ * Parse webhooks and call configured code blocks
8
+
4
9
  ### 0.7 _First public release_
5
10
 
6
11
  * Enable configuration
@@ -10,5 +15,4 @@ Release Notes
10
15
  * Create media files
11
16
  * Find and create products
12
17
  * Fetch report data by day
13
- * Find and create topics
14
- * Parse webhooks and call configured code blocks
18
+ * Find and create topics
data/adcloud.gemspec CHANGED
@@ -8,7 +8,7 @@ Gem::Specification.new do |gem|
8
8
  gem.description = %Q{This is the official adcloud API gem. If you have any problems or requests please contact api@adcloud.com.}
9
9
  gem.homepage = 'http://adcloud.com/'
10
10
  gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
11
- gem.files = `git ls-files`.split("\n")
11
+ gem.files = `git ls-files`.split("\n") - ['Gemfile.lock']
12
12
  gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
13
13
  gem.name = 'adcloud'
14
14
  gem.require_paths = ['lib']
@@ -1,3 +1,3 @@
1
1
  module Adcloud
2
- VERSION = '0.7.0'
2
+ VERSION = '0.7.1'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: adcloud
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.7.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2012-09-13 00:00:00.000000000 Z
13
+ date: 2012-09-14 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: minitest
@@ -169,7 +169,6 @@ files:
169
169
  - .gitignore
170
170
  - .travis.yml
171
171
  - Gemfile
172
- - Gemfile.lock
173
172
  - LICENSE.txt
174
173
  - README.md
175
174
  - RELEASE_NOTES.md
data/Gemfile.lock DELETED
@@ -1,50 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- adcloud (0.1.0)
5
- activesupport (~> 3.2.6)
6
- faraday
7
- faraday_middleware
8
- virtus
9
-
10
- GEM
11
- remote: https://rubygems.org/
12
- specs:
13
- activesupport (3.2.6)
14
- i18n (~> 0.6)
15
- multi_json (~> 1.0)
16
- addressable (2.3.2)
17
- backports (2.6.2)
18
- crack (0.3.1)
19
- faraday (0.8.1)
20
- multipart-post (~> 1.1)
21
- faraday_middleware (0.8.8)
22
- faraday (>= 0.7.4, < 0.9)
23
- i18n (0.6.0)
24
- metaclass (0.0.1)
25
- minitest (3.4.0)
26
- mocha (0.12.4)
27
- metaclass (~> 0.0.1)
28
- multi_json (1.3.6)
29
- multipart-post (1.1.5)
30
- rake (0.9.2.2)
31
- simplecov (0.6.4)
32
- multi_json (~> 1.0)
33
- simplecov-html (~> 0.5.3)
34
- simplecov-html (0.5.3)
35
- virtus (0.5.1)
36
- backports (~> 2.6.1)
37
- webmock (1.8.9)
38
- addressable (>= 2.2.7)
39
- crack (>= 0.1.7)
40
-
41
- PLATFORMS
42
- ruby
43
-
44
- DEPENDENCIES
45
- adcloud!
46
- minitest (~> 3.4.0)
47
- mocha (~> 0.12.4)
48
- rake
49
- simplecov
50
- webmock