rename_app 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 009ab6ce89ec6bcd85ac64db4337e77cfdb6b478
4
- data.tar.gz: e5552b9312c8fa83782d709eacf2c3cc0f288ecf
3
+ metadata.gz: 27ed89918b47584a284c399460083f654451eea9
4
+ data.tar.gz: 920d1337768824ec3e09e2357679a48c0e966eb5
5
5
  SHA512:
6
- metadata.gz: fdcb73976e43eddf77222b1220c63386d4279fc08836df1b26a885d31900083dfb852bd6fc8dcef87152e229d5a557cc18228887260cab5665f7cae31e19e683
7
- data.tar.gz: e5765d3cd02fcb760c26e3a4f8147259144887d62f6f11742f5fc8c49c1baf23ef5c53806740a641c78b3c3b23332a2b2784f3baa7f79d97579d8ea4dd0b1898
6
+ metadata.gz: 7dad277ca079b42e8b1ceab8946b82dc8c217beb5936ac3019e28ae036226080ee025d80771e47131e6bfcfc0783cfacdbd47262d07db2d0edcada442fc4abfe
7
+ data.tar.gz: 16ef6a38fec674c0deb56b9be7d278cf3f86e3972646ebb4c68723c633dc5ccdd7144982543925555cddb0922f83c8558b3829fd4aaa3c8bafce94793502e6c5
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rename_app
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Anjana Nair
@@ -45,14 +45,7 @@ executables: []
45
45
  extensions: []
46
46
  extra_rdoc_files: []
47
47
  files:
48
- - .gitignore
49
- - Gemfile
50
- - LICENSE.txt
51
48
  - README.md
52
- - Rakefile
53
- - lib/rename_app.rb
54
- - lib/rename_app/version.rb
55
- - rename_app.gemspec
56
49
  homepage: ''
57
50
  licenses:
58
51
  - MIT
data/.gitignore DELETED
@@ -1,17 +0,0 @@
1
- *.gem
2
- *.rbc
3
- .bundle
4
- .config
5
- .yardoc
6
- Gemfile.lock
7
- InstalledFiles
8
- _yardoc
9
- coverage
10
- doc/
11
- lib/bundler/man
12
- pkg
13
- rdoc
14
- spec/reports
15
- test/tmp
16
- test/version_tmp
17
- tmp
data/Gemfile DELETED
@@ -1,4 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- # Specify your gem's dependencies in rename_app.gemspec
4
- gemspec
data/LICENSE.txt DELETED
@@ -1,22 +0,0 @@
1
- Copyright (c) 2014 TODO: Write your name
2
-
3
- MIT License
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining
6
- a copy of this software and associated documentation files (the
7
- "Software"), to deal in the Software without restriction, including
8
- without limitation the rights to use, copy, modify, merge, publish,
9
- distribute, sublicense, and/or sell copies of the Software, and to
10
- permit persons to whom the Software is furnished to do so, subject to
11
- the following conditions:
12
-
13
- The above copyright notice and this permission notice shall be
14
- included in all copies or substantial portions of the Software.
15
-
16
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
- LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/Rakefile DELETED
@@ -1 +0,0 @@
1
- require "bundler/gem_tasks"
@@ -1,3 +0,0 @@
1
- module RenameApp
2
- VERSION = "0.0.1"
3
- end
data/lib/rename_app.rb DELETED
@@ -1,5 +0,0 @@
1
- require "rename_app/version"
2
-
3
- module RenameApp
4
- # Your code goes here...
5
- end
data/rename_app.gemspec DELETED
@@ -1,23 +0,0 @@
1
- # coding: utf-8
2
- lib = File.expand_path('../lib', __FILE__)
3
- $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'rename_app/version'
5
-
6
- Gem::Specification.new do |spec|
7
- spec.name = "rename_app"
8
- spec.version = RenameApp::VERSION
9
- spec.authors = ["Anjana Nair"]
10
- spec.email = ["anjana.arun@revenuemed.com"]
11
- spec.description = %q{This gem will rename your application}
12
- spec.summary = %q{This gem will rename your application according to your choice}
13
- spec.homepage = ""
14
- spec.license = "MIT"
15
-
16
- spec.files = `git ls-files`.split($/)
17
- spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
- spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
- spec.require_paths = ["lib"]
20
-
21
- spec.add_development_dependency "bundler", "~> 1.3"
22
- spec.add_development_dependency "rake"
23
- end