new_relic_ping 0.1.1 → 0.1.2

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.
@@ -2,7 +2,14 @@
2
2
 
3
3
  This file is used to list changes made in each version of new\_relic\_ping.
4
4
 
5
- ## 0.1.1:
5
+ ## 0.1.2: (2014-02-03)
6
+
7
+ Features:
8
+
9
+ * Updated rails dependency to allow 4.0 (now >= 3.2)
10
+ * Now also tested on ruby 2.1
11
+
12
+ ## 0.1.1: (2013-08-26)
6
13
 
7
14
  Bugfixes:
8
15
 
@@ -13,7 +20,7 @@ Features:
13
20
  * Removed dependency on `newrelic_rpm` gem
14
21
  * Now with 100% code coverage!
15
22
 
16
- ## 0.1.0:
23
+ ## 0.1.0: (2013-01-24)
17
24
 
18
25
  * Initial release of new\_relic\_ping
19
26
 
@@ -1,3 +1,3 @@
1
1
  module NewRelicPing
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: new_relic_ping
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,14 +9,14 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-08-26 00:00:00.000000000 Z
12
+ date: 2014-02-02 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
16
16
  requirement: !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
- - - ~>
19
+ - - ! '>='
20
20
  - !ruby/object:Gem::Version
21
21
  version: '3.2'
22
22
  type: :runtime
@@ -24,7 +24,7 @@ dependencies:
24
24
  version_requirements: !ruby/object:Gem::Requirement
25
25
  none: false
26
26
  requirements:
27
- - - ~>
27
+ - - ! '>='
28
28
  - !ruby/object:Gem::Version
29
29
  version: '3.2'
30
30
  description: Provides endpoint for NewRelic HTTP ping monitoring for Rails applications
@@ -50,7 +50,6 @@ files:
50
50
  - lib/new_relic_ping.rb
51
51
  - lib/tasks/new_relic_ping_tasks.rake
52
52
  - LICENSE
53
- - Rakefile
54
53
  - README.md
55
54
  - CHANGELOG.md
56
55
  - test/dummy/app/assets/javascripts/application.js
data/Rakefile DELETED
@@ -1,40 +0,0 @@
1
- #!/usr/bin/env rake
2
- begin
3
- require 'bundler/setup'
4
- rescue LoadError
5
- puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
6
- end
7
- begin
8
- require 'rdoc/task'
9
- rescue LoadError
10
- require 'rdoc/rdoc'
11
- require 'rake/rdoctask'
12
- RDoc::Task = Rake::RDocTask
13
- end
14
-
15
- RDoc::Task.new(:rdoc) do |rdoc|
16
- rdoc.rdoc_dir = 'rdoc'
17
- rdoc.title = 'NewRelicPing'
18
- rdoc.options << '--line-numbers'
19
- rdoc.rdoc_files.include('README.md')
20
- rdoc.rdoc_files.include('lib/**/*.rb')
21
- end
22
-
23
- APP_RAKEFILE = File.expand_path("../test/dummy/Rakefile", __FILE__)
24
- load 'rails/tasks/engine.rake'
25
-
26
-
27
-
28
- Bundler::GemHelper.install_tasks
29
-
30
- require 'rake/testtask'
31
-
32
- Rake::TestTask.new(:test) do |t|
33
- t.libs << 'lib'
34
- t.libs << 'test'
35
- t.pattern = 'test/**/*_test.rb'
36
- t.verbose = false
37
- end
38
-
39
-
40
- task :default => :test