appygram-rails 0.9.3 → 0.9.4
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 +8 -0
- data/Gemfile +3 -0
- data/History.txt +2 -0
- data/MIT-LICENSE +22 -0
- data/README.markdown +27 -0
- data/Rakefile +1 -0
- data/appygram-rails.gemspec +7 -5
- data/lib/appygram-rails/version.rb +1 -1
- metadata +13 -6
data/.gitignore
ADDED
data/Gemfile
ADDED
data/History.txt
ADDED
data/MIT-LICENSE
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
Copyright (c) 2010, Contrast.
|
|
2
|
+
|
|
3
|
+
Permission is hereby granted, free of charge, to any person
|
|
4
|
+
obtaining a copy of this software and associated documentation
|
|
5
|
+
files (the "Software"), to deal in the Software without
|
|
6
|
+
restriction, including without limitation the rights to use,
|
|
7
|
+
copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
8
|
+
copies of the Software, and to permit persons to whom the
|
|
9
|
+
Software is furnished to do so, subject to the following
|
|
10
|
+
conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be
|
|
13
|
+
included in all copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
16
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
|
17
|
+
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
18
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
|
19
|
+
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
20
|
+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
21
|
+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
22
|
+
OTHER DEALINGS IN THE SOFTWARE.
|
data/README.markdown
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# Appygram <http://www.appygram.com>
|
|
2
|
+
|
|
3
|
+
Appygram is a messaging service for web and mobile apps. Among other
|
|
4
|
+
things, it can accept and route exception reports.
|
|
5
|
+
|
|
6
|
+
This Gem/Plugin is for Rails applications. It will route uncaught
|
|
7
|
+
exception reports via Appygram.
|
|
8
|
+
|
|
9
|
+
## Rails 3 Installation
|
|
10
|
+
|
|
11
|
+
1. Add gem entry to Gemfile
|
|
12
|
+
|
|
13
|
+
```ruby
|
|
14
|
+
gem 'appygram-rails'
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
2. Run <code>bundle install</code>
|
|
18
|
+
|
|
19
|
+
3. Configue your API Key in an initializer, e.g. config/appygram.rb
|
|
20
|
+
|
|
21
|
+
```ruby
|
|
22
|
+
Appygram.configure 'your_api_key'
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
using a valid API key for your app provided by Appygram
|
|
26
|
+
|
|
27
|
+
Copyright © 2012 Anything Labs.
|
data/Rakefile
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
require "bundler/gem_tasks"
|
data/appygram-rails.gemspec
CHANGED
|
@@ -1,6 +1,4 @@
|
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
|
2
|
-
$:.push File.expand_path("../lib", __FILE__)
|
|
3
|
-
|
|
4
2
|
require 'appygram-rails/version'
|
|
5
3
|
|
|
6
4
|
Gem::Specification.new do |gem|
|
|
@@ -9,9 +7,13 @@ Gem::Specification.new do |gem|
|
|
|
9
7
|
gem.authors = ["rfc2616"]
|
|
10
8
|
gem.summary = %q{ appygram is a hosted service for sending messages from mobile/web apps }
|
|
11
9
|
gem.description = %q{appygram-rails sends exceptions and feedback to the hosted messaging service at http://www.appygram.com}
|
|
12
|
-
gem.email =
|
|
13
|
-
gem.
|
|
14
|
-
|
|
10
|
+
gem.email = ['heittman.rob@gmail.com']
|
|
11
|
+
gem.homepage = 'http://www.appygram.com/'
|
|
12
|
+
|
|
13
|
+
gem.files = `git ls-files`.split("\n")
|
|
14
|
+
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
15
|
+
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
|
15
16
|
gem.require_paths = ["lib"]
|
|
17
|
+
|
|
16
18
|
gem.add_runtime_dependency 'rails'
|
|
17
19
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: appygram-rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.9.
|
|
4
|
+
version: 0.9.4
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -13,7 +13,7 @@ date: 2012-07-13 00:00:00.000000000 Z
|
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rails
|
|
16
|
-
requirement: &
|
|
16
|
+
requirement: &70297162099240 !ruby/object:Gem::Requirement
|
|
17
17
|
none: false
|
|
18
18
|
requirements:
|
|
19
19
|
- - ! '>='
|
|
@@ -21,14 +21,23 @@ dependencies:
|
|
|
21
21
|
version: '0'
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
|
-
version_requirements: *
|
|
24
|
+
version_requirements: *70297162099240
|
|
25
25
|
description: appygram-rails sends exceptions and feedback to the hosted messaging
|
|
26
26
|
service at http://www.appygram.com
|
|
27
|
-
email:
|
|
27
|
+
email:
|
|
28
|
+
- heittman.rob@gmail.com
|
|
28
29
|
executables: []
|
|
29
30
|
extensions: []
|
|
30
31
|
extra_rdoc_files: []
|
|
31
32
|
files:
|
|
33
|
+
- .gitignore
|
|
34
|
+
- Gemfile
|
|
35
|
+
- History.txt
|
|
36
|
+
- MIT-LICENSE
|
|
37
|
+
- README.markdown
|
|
38
|
+
- Rakefile
|
|
39
|
+
- appygram-rails.gemspec
|
|
40
|
+
- lib/appygram-rails.rb
|
|
32
41
|
- lib/appygram-rails/alert_data.rb
|
|
33
42
|
- lib/appygram-rails/application_environment.rb
|
|
34
43
|
- lib/appygram-rails/catcher.rb
|
|
@@ -45,8 +54,6 @@ files:
|
|
|
45
54
|
- lib/appygram-rails/remote.rb
|
|
46
55
|
- lib/appygram-rails/startup.rb
|
|
47
56
|
- lib/appygram-rails/version.rb
|
|
48
|
-
- lib/appygram-rails.rb
|
|
49
|
-
- appygram-rails.gemspec
|
|
50
57
|
homepage: http://www.appygram.com/
|
|
51
58
|
licenses: []
|
|
52
59
|
post_install_message:
|