kandan-count-dev 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore ADDED
@@ -0,0 +1,5 @@
1
+ pkg/*
2
+ *.gem
3
+ .bundle
4
+ .DS_Store
5
+ Gemfile.lock
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source "http://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in kandan-count-dev.gemspec
4
+ gemspec
data/README.markdown ADDED
@@ -0,0 +1,5 @@
1
+ #Kandan count dev gem
2
+
3
+ The purpose of this gem is to count the number of installations on a development environment of Kandan.
4
+
5
+ For more information on Kandan go to http://kandanapp.com/
data/Rakefile ADDED
@@ -0,0 +1,3 @@
1
+ require 'bundler'
2
+
3
+ Bundler::GemHelper.install_tasks
@@ -0,0 +1,27 @@
1
+ # -*- encoding: utf-8 -*-
2
+ require File.expand_path('../lib/kandan-count-dev/version', __FILE__)
3
+
4
+ Gem::Specification.new do |gem|
5
+ gem.authors = ["Kandan App"]
6
+ gem.email = ["kandanapp@gmail.com"]
7
+ gem.description = %q{Gem to count Kandan installations on development environments}
8
+ gem.summary = %q{Gem to count Kandan installations on development environments}
9
+ gem.homepage = "https://github.com/kandanapp/kandan-count-dev"
10
+
11
+ gem.files = `git ls-files`.split("\n")
12
+ gem.name = "kandan-count-dev"
13
+ gem.require_paths = ["lib"]
14
+ gem.version = Kandan::Count::Dev::VERSION
15
+
16
+ gem.required_ruby_version = '>= 1.9.3'
17
+
18
+ gem.post_install_message = <<-DESC
19
+
20
+ \e[32mWelcome to Kandan, the slickest chat app out there!
21
+
22
+ Don't forget to run kandan:bootstrap\e[0m
23
+
24
+ DESC
25
+
26
+ gem.add_development_dependency 'rake'
27
+ end
@@ -0,0 +1,3 @@
1
+ # -*- encoding: utf-8 -*-
2
+
3
+ require 'kandan-count-dev/version'
@@ -0,0 +1,9 @@
1
+ # -*- encoding: utf-8 -*-
2
+
3
+ module Kandan
4
+ module Count
5
+ module Dev
6
+ VERSION = "1.1.0"
7
+ end
8
+ end
9
+ end
metadata ADDED
@@ -0,0 +1,69 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: kandan-count-dev
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.1.0
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Kandan App
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2013-02-28 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rake
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: '0'
22
+ type: :development
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ! '>='
28
+ - !ruby/object:Gem::Version
29
+ version: '0'
30
+ description: Gem to count Kandan installations on development environments
31
+ email:
32
+ - kandanapp@gmail.com
33
+ executables: []
34
+ extensions: []
35
+ extra_rdoc_files: []
36
+ files:
37
+ - .gitignore
38
+ - Gemfile
39
+ - README.markdown
40
+ - Rakefile
41
+ - kandan-count-dev.gemspec
42
+ - lib/kandan-count-dev.rb
43
+ - lib/kandan-count-dev/version.rb
44
+ homepage: https://github.com/kandanapp/kandan-count-dev
45
+ licenses: []
46
+ post_install_message: ! "\n \e[32mWelcome to Kandan, the slickest chat app out there!\n
47
+ \ \n Don't forget to run kandan:bootstrap\e[0m\n\n"
48
+ rdoc_options: []
49
+ require_paths:
50
+ - lib
51
+ required_ruby_version: !ruby/object:Gem::Requirement
52
+ none: false
53
+ requirements:
54
+ - - ! '>='
55
+ - !ruby/object:Gem::Version
56
+ version: 1.9.3
57
+ required_rubygems_version: !ruby/object:Gem::Requirement
58
+ none: false
59
+ requirements:
60
+ - - ! '>='
61
+ - !ruby/object:Gem::Version
62
+ version: '0'
63
+ requirements: []
64
+ rubyforge_project:
65
+ rubygems_version: 1.8.23
66
+ signing_key:
67
+ specification_version: 3
68
+ summary: Gem to count Kandan installations on development environments
69
+ test_files: []