Skip to content

Commit d89cb59

Browse files
authored
Merge pull request #15 from calonso/improve_load_style
General improvements
2 parents 97302a0 + d147478 commit d89cb59

File tree

13 files changed

+28
-183
lines changed

13 files changed

+28
-183
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ build/
2626

2727
# for a library or gem, you might want to ignore these files since the code is
2828
# intended to run in multiple environments; otherwise, check them in:
29-
# Gemfile.lock
29+
Gemfile.lock
3030
# .ruby-version
3131
# .ruby-gemset
3232

.travis.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
11
language: ruby
22
rvm:
3-
- "2.2.0"
4-
- "2.1.5"
5-
- "2.0.0"
3+
- 2.4.0
4+
- 2.3.3
5+
- 2.2.6
6+
matrix:
7+
include:
8+
- rvm: "2.1.10"
9+
gemfile: gemfiles/Gemfile-legacy
10+
- rvm: "2.0.0"
11+
gemfile: gemfiles/Gemfile-legacy
612
env: CODECLIMATE_REPO_TOKEN=efdb12c380287a25b2b26362aa710a9b59020122cbe4edecf0d353bf50e0046a
713
notifications:
814
webhooks:

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).
44

55
## [unrealeased] - [unrealease date]
66

7+
## 1.0.1 - 2017-01-12
8+
- **Fixed**: Loading issue when `'forwardable'` wasn't previously required.
9+
- **Removed**: Version file
10+
711
## 1.0.0 - 2016-12-01
812
- **Added**: Configurable timeouts for connecting external services.
913
- **Removed**: Ruby 1.9.3 support.

Gemfile.lock

Lines changed: 0 additions & 69 deletions
This file was deleted.

gemfiles/Gemfile-legacy

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
source 'https://rubygems.org'
2+
3+
gem "activesupport", "~> 4.2", group: :test
4+
5+
# Specify your gem's dependencies in ruby-push-notifications.gemspec
6+
gemspec path: ".."
7+
8+
gem "codeclimate-test-reporter", group: :test, require: nil

lib/ruby-push-notifications.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
require 'ruby-push-notifications/version'
1+
require 'forwardable'
22
require 'ruby-push-notifications/notification_results_manager'
33
require 'ruby-push-notifications/apns'
44
require 'ruby-push-notifications/gcm'

lib/ruby-push-notifications/apns.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,3 @@ module RubyPushNotifications::APNS
4242
require 'ruby-push-notifications/apns/apns_notification'
4343
require 'ruby-push-notifications/apns/apns_pusher'
4444
require 'ruby-push-notifications/apns/apns_results'
45-

lib/ruby-push-notifications/apns/apns_connection.rb

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
21
require 'socket'
32
require 'openssl'
4-
require 'forwardable'
53

64
module RubyPushNotifications
75
module APNS

lib/ruby-push-notifications/apns/apns_notification.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
require 'json'
32

43
module RubyPushNotifications

lib/ruby-push-notifications/gcm.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,3 @@
44
require 'ruby-push-notifications/gcm/gcm_response'
55
require 'ruby-push-notifications/gcm/gcm_error'
66
require 'ruby-push-notifications/gcm/gcm_result'
7-

0 commit comments

Comments
 (0)