railsalitics 0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. data/LICENSE +20 -0
  2. data/README +12 -0
  3. data/Rakefile +24 -0
  4. data/bin/railsalitics +0 -0
  5. metadata +58 -0
data/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2009 Marek Jelen
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README ADDED
@@ -0,0 +1,12 @@
1
+ = Railsalitics
2
+
3
+ Railsalitics.com is new monitoring service your Rails applications.
4
+
5
+ There is no production version yet. However, if you feel adveterous and are
6
+ interested in testing, feel free to contact me.
7
+
8
+ = Example
9
+
10
+ No examples yet.
11
+
12
+ Copyright (c) 2009 Marek Jelen, released under the MIT license
data/Rakefile ADDED
@@ -0,0 +1,24 @@
1
+ require 'rake'
2
+ require 'rake/gempackagetask'
3
+
4
+ spec = Gem::Specification.new do |s|
5
+ s.name = 'railsalitics'
6
+ s.version = '0.1'
7
+ s.summary = 'Utility to make it easier to set up Railsalitics.com service for your Rails application.'
8
+ s.description = 'Railsalitics.com is new Rails powered applications monitoring service. This gem makes it easier to set up your application to collect data and utilize this service.'
9
+ s.platform = Gem::Platform::RUBY
10
+ s.author = 'Marek Jelen'
11
+ s.email = 'marek@jelen.biz'
12
+ s.license = 'MIT'
13
+ s.homepage = 'http://www.railsalitics.com'
14
+ s.files = %w(LICENSE README Rakefile) + Dir.glob("{bin,lib,script,test}/**/*")
15
+ s.require_path = 'lib'
16
+ s.executables = ['railsalitics']
17
+ s.bindir = 'bin'
18
+ s.has_rdoc = true
19
+ s.extra_rdoc_files = ["README"]
20
+ end
21
+
22
+ Rake::GemPackageTask.new(spec) do |pkg|
23
+ pkg.need_tar = true
24
+ end
data/bin/railsalitics ADDED
File without changes
metadata ADDED
@@ -0,0 +1,58 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: railsalitics
3
+ version: !ruby/object:Gem::Version
4
+ version: "0.1"
5
+ platform: ruby
6
+ authors:
7
+ - Marek Jelen
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2009-12-02 00:00:00 +01:00
13
+ default_executable:
14
+ dependencies: []
15
+
16
+ description: Railsalitics.com is new Rails powered applications monitoring service. This gem makes it easier to set up your application to collect data and utilize this service.
17
+ email: marek@jelen.biz
18
+ executables:
19
+ - railsalitics
20
+ extensions: []
21
+
22
+ extra_rdoc_files:
23
+ - README
24
+ files:
25
+ - LICENSE
26
+ - README
27
+ - Rakefile
28
+ - bin/railsalitics
29
+ has_rdoc: true
30
+ homepage: http://www.railsalitics.com
31
+ licenses:
32
+ - MIT
33
+ post_install_message:
34
+ rdoc_options: []
35
+
36
+ require_paths:
37
+ - lib
38
+ required_ruby_version: !ruby/object:Gem::Requirement
39
+ requirements:
40
+ - - ">="
41
+ - !ruby/object:Gem::Version
42
+ version: "0"
43
+ version:
44
+ required_rubygems_version: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - ">="
47
+ - !ruby/object:Gem::Version
48
+ version: "0"
49
+ version:
50
+ requirements: []
51
+
52
+ rubyforge_project:
53
+ rubygems_version: 1.3.5
54
+ signing_key:
55
+ specification_version: 3
56
+ summary: Utility to make it easier to set up Railsalitics.com service for your Rails application.
57
+ test_files: []
58
+