Skip to content

Commit b8f6bd6

Browse files
committed
Rename to gemfileparser2
Signed-off-by: Philippe Ombredanne <pombredanne@nexb.com>
1 parent 49f1ebd commit b8f6bd6

8 files changed

Lines changed: 25 additions & 29 deletions

File tree

AUTHORS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# This file lists contributors who made significant contribution to
2-
# gemfileparser. This file is not intended to list every contributor to the
2+
# gemfileparsers. This file is not intended to list every contributor to the
33
# project, though. For that, check the Git revision history.
44
#
55
# Names are in alphabetical order, for the sanity of mind.

CHANGELOG.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Changelog
22
=========
33

44

5-
v0.0.0
6-
------
5+
v0.9.0
6+
-------
77

8-
*xxxx-xx-xx* -- Initial release.
8+
Rename to gemfileparser2.

LICENSE

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
gemfileparser is dual-licensed under your choice of [GNU GPL version 3 (or above) License]
2-
(http://www.gnu.org/licenses/gpl)
1+
like its predecessor gemfileparser, gemfileparser2 is dual-licensed under your
2+
choice of [GNU GPL version 3 (or above) License] (http://www.gnu.org/licenses/gpl)
33
or the [MIT License](https://opensource.org/licenses/MIT).
44

5-
Personally, I prefer anyone using this to respect the GPL license and use that
6-
itself for derivative works - thus making them also Free Software. But, your
7-
call.
5+
Personally, I (Balasankar C) prefer anyone using this to respect the GPL license
6+
and use that itself for derivative works - thus making them also Free Software.
7+
But, your call.
88

99
Copyright (c) 2020 Gemfileparser authors (listed in AUTHORS file)
1010
2015-2018 Balasankar C <balasankarc@autistici.org>

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
graft gemfileparser
1+
graft gemfileparser2
22
graft tests
33

44
include AUTHORS

README.rst

Lines changed: 12 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,28 @@
1-
=============
2-
gemfileparser
3-
=============
1+
===============
2+
gemfileparser2
3+
===============
44

5-
gemfileparser parses Ruby Gemfile using Python with supports Ruby Gemfiles
5+
gemfileparser2 parses Ruby Gemfile using Python with supports Ruby Gemfiles
66
and .gemspec files as well as Cocoapod .podspec files.
77

8+
This is a maintained fork of https://github.com/gemfileparser/gemfileparser
9+
that is no longer active (even though it was maintained by the same folks)
10+
811

912
Installation
1013
~~~~~~~~~~~~
1114

1215
In a virtualenv, use the command::
1316

14-
pip install gemfileparser
15-
16-
Otherwise from a git clone, use the following commands in a virtualenv::
17-
18-
git clone https://github.com/gemfileparser/gemfileparser.git
19-
cd gemfileparser
20-
python setup.py install
17+
pip install gemfileparser2
2118

2219

2320
Usage
2421
~~~~~
2522

2623
::
2724

28-
from gemfileparser import GemfileParser
25+
from gemfileparser2 import GemfileParser
2926
parser = GemfileParser(<path to Gemfile>, <name of the application (optional)>)
3027
dependency_dictionary = parser.parse()
3128

@@ -53,7 +50,7 @@ Example
5350

5451
::
5552

56-
from gemfileparser import GemfileParser
53+
from gemfileparser2 import GemfileParser
5754
n = GemfileParser('Gemfile', 'diaspora')
5855
deps = n.parse()
5956
for key in deps:
@@ -82,13 +79,13 @@ Copyright
8279
License
8380
~~~~~~~
8481

85-
gemfileparser is dual-licensed under your choice of the
82+
gemfileparser2 is dual-licensed under your choice of the
8683
`GNU GPL version 3 (or later) License <http://www.gnu.org/licenses/gpl>`_
8784
or the `MIT License <https://opensource.org/licenses/MIT>`_.
8885

8986
It is preferred anyone using this project to respect the GPL-3+ license and use
9087
that itself for derivative works - thus making them also Free Software. But,
9188
your call.
9289

93-
When making contributions to gemfileparser you agree to license these contributions
90+
When making contributions to gemfileparser2 you agree to license these contributions
9491
under the same choice of licenses.

setup.cfg

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
[metadata]
2-
name = gemfileparser
3-
version = 0.8.0
2+
name = gemfileparser2
43

54
description = Parse Ruby Gemfile, .gemspec and Cocoapod .podspec files using Python.
65
long_description = file: README.rst
@@ -9,7 +8,7 @@ author = Balasankar C, Rohit Potter, nexB. Inc. and others
98
author_email = info@aboutcode.org
109

1110
keywords = Ruby Rubygem Gemfile gemspec Cocoapod podspec
12-
url = https://github.com/gemfileparser/gemfileparser
11+
url = https://github.com/nexB/gemfileparse2
1312

1413
license = GPL-3.0-or-later OR MIT
1514
license_files =
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Copyright (c) Balasankar C <balasankarc@autistici.org> and others
44
# SPDX-License-Identifier: GPL-3.0-or-later OR MIT
55

6-
from gemfileparser import GemfileParser
6+
from gemfileparser2 import GemfileParser
77

88

99
def check_gemparser_results(test_file, regen=False):

0 commit comments

Comments
 (0)