module_mapper 0.0.1 → 1.0.0

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: 397932815137d10c146d1f404093bbd762a392e6
4
- data.tar.gz: 79c040d84032ce5ef7d9044c5beaaf9d7279e392
3
+ metadata.gz: c17c0e69b3b332dd7c7ec1e19b3b6ab98bbc83bc
4
+ data.tar.gz: 9c37c60a73d3a83f428b0cda025243cf23dcaae9
5
5
  SHA512:
6
- metadata.gz: 6d77b2bb61e479901a530e0d7cbdd83cda70bd59e6eaa7fb22d083da5d3856b6d1f63fcaceb921032f0512c22212a8b7cdd1b62be0e4e0572854028b90870389
7
- data.tar.gz: fb7118e5d46473814a10802017bf853616ac9173f5b6fee8b26027d11ab70fd0895d6344446d3a53370b8a342cfd9411b2de57a9453d6979d87403017dbd98f2
6
+ metadata.gz: bb9300ec7f18dda2a2237a3045c45de2a30266b3c2bad34bd1b6d527d2788dd4338675647f0da236caa421557fff25c1b00b7db249337ff7bad306ebedb2bf3a
7
+ data.tar.gz: 9fb81bb04c79e1a56f11ace7430d41bfab2d88476eae8628ce84d77f98e095fd0824a83ca0dc58b54d11267e33ed48030a87f3a32846710c50f6b27dfa03cf7c
@@ -0,0 +1,13 @@
1
+ # Contributor Code of Conduct
2
+
3
+ As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
4
+
5
+ We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, age, or religion.
6
+
7
+ Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.
8
+
9
+ Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team.
10
+
11
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
12
+
13
+ This Code of Conduct is adapted from the [Contributor Covenant](http:contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)
data/README.md CHANGED
@@ -1,31 +1,21 @@
1
- # ModuleMapper
2
-
3
- TODO: Write a gem description
4
-
5
1
  ## Installation
6
2
 
7
- Add this line to your application's Gemfile:
8
-
9
- ```ruby
10
- gem 'module_mapper'
11
- ```
12
-
13
- And then execute:
14
-
15
- $ bundle
16
-
17
- Or install it yourself as:
3
+ Install the gem:
18
4
 
19
5
  $ gem install module_mapper
20
6
 
7
+ This installs the CLI tool.
8
+
21
9
  ## Usage
22
10
 
23
- TODO: Write usage instructions here
11
+ module_mapper mmap path/to/file/my_file.rb
24
12
 
25
13
  ## Contributing
26
14
 
27
- 1. Fork it ( https://github.com/[my-github-username]/module_mapper/fork )
15
+ Please note that this project is released with a [Contributor Code of Conduct](http://contributor-covenant.org/version/1/0/0/). By participating in this project you agree to abide by its terms.
16
+
17
+ 1. Fork it
28
18
  2. Create your feature branch (`git checkout -b my-new-feature`)
29
19
  3. Commit your changes (`git commit -am 'Add some feature'`)
30
20
  4. Push to the branch (`git push origin my-new-feature`)
31
- 5. Create a new Pull Request
21
+ 5. Create a new Pull Request
File without changes
@@ -7,7 +7,7 @@ module ModuleMapper
7
7
 
8
8
  desc "map PATHS_TO_FILES", "Parse files and return a map of module names and filename"
9
9
 
10
- def map(path, *more_paths)
10
+ def mmap(path, *more_paths)
11
11
  paths = [path] + more_paths
12
12
  ModuleMapper.new(paths).report
13
13
  end
@@ -1,3 +1,3 @@
1
1
  module ModuleMapper
2
- VERSION = "0.0.1"
2
+ VERSION = "1.0.0"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: module_mapper
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - CoralineAda
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-01-13 00:00:00.000000000 Z
11
+ date: 2015-01-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: analyst
@@ -75,6 +75,7 @@ extensions: []
75
75
  extra_rdoc_files: []
76
76
  files:
77
77
  - ".gitignore"
78
+ - CODE_OF_CONDUCT.md
78
79
  - Gemfile
79
80
  - LICENSE.txt
80
81
  - README.md