deriving_license 0.1.6 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/README.md CHANGED
@@ -1,41 +1,74 @@
1
1
  deriving_license
2
2
  ================
3
3
 
4
- Finds the license agreements for all gems in your Gemfile
4
+ Finds the license agreements for all gems in your Gemfile. This is achieved by running through a collection of strategies for each dependency until one succeeds in determining the license in use.
5
+
6
+ Strategies:
7
+ * from\_gem\_specification
8
+ * from\_license\_file (not yet implemented)
9
+ * from\_scraping\_homepage (not yet implemented)
10
+ * from\_parsing\_readme (not yet implemented)
5
11
 
6
12
  Example output:
7
13
 
8
- $ deriving_license ~/Code/rails_sample_app/Gemfile
9
- Determining license for rails...UNKNOWN
10
- Determining license for adt...UNKNOWN
11
- Determining license for app_constants (remote call required)...UNKNOWN
12
- Determining license for bcrypt-ruby...UNKNOWN
13
- Determining license for bootstrap-sass...UNKNOWN
14
- Determining license for jquery-rails...SUCCESS
15
- Determining license for json...SUCCESS
16
- Determining license for nokogiri...UNKNOWN
17
- Determining license for pg...SUCCESS
18
- Determining license for quiet_assets...UNKNOWN
19
- Determining license for rack-protection...UNKNOWN
20
- Determining license for symmetric-encryption (remote call required)...UNKNOWN
21
- Determining license for newrelic_rpm...UNKNOWN
22
- Determining license for uglifier...SUCCESS
23
- Determining license for sass-rails...UNKNOWN
24
- Determining license for coffee-rails...UNKNOWN
25
- Determining license for rspec-rails...SUCCESS
26
- Determining license for capybara...UNKNOWN
27
- Determining license for factory_girl_rails...UNKNOWN
28
- Determining license for faker...UNKNOWN
29
- Determining license for better_errors...SUCCESS
30
- Determining license for binding_of_caller...UNKNOWN
31
- Determining license for debugger...SUCCESS
32
- Determining license for simplecov...UNKNOWN
33
- Determining license for ci_reporter...UNKNOWN
34
- Determining license for sqlite3...UNKNOWN
35
- Determining license for mysql2...UNKNOWN
14
+ $ deriving_license ~/Code/rails-sample-app/Gemfile
15
+ Determining license for rails:
16
+ Trying from_gem_specification strategy...FAILED
17
+ Determining license for adt:
18
+ Trying from_gem_specification strategy...FAILED
19
+ Determining license for app_constants:
20
+ Trying from_gem_specification strategy...FAILED
21
+ Determining license for bcrypt-ruby:
22
+ Trying from_gem_specification strategy...FAILED
23
+ Determining license for bootstrap-sass:
24
+ Trying from_gem_specification strategy...FAILED
25
+ Determining license for jquery-rails:
26
+ Trying from_gem_specification strategy...SUCCESS
27
+ Determining license for json:
28
+ Trying from_gem_specification strategy...SUCCESS
29
+ Determining license for nokogiri:
30
+ Trying from_gem_specification strategy...FAILED
31
+ Determining license for pg:
32
+ Trying from_gem_specification strategy...SUCCESS
33
+ Determining license for quiet_assets:
34
+ Trying from_gem_specification strategy...FAILED
35
+ Determining license for rack-protection:
36
+ Trying from_gem_specification strategy...FAILED
37
+ Determining license for symmetric-encryption:
38
+ Trying from_gem_specification strategy...FAILED
39
+ Determining license for newrelic_rpm:
40
+ Trying from_gem_specification strategy...FAILED
41
+ Determining license for uglifier:
42
+ Trying from_gem_specification strategy...SUCCESS
43
+ Determining license for sass-rails:
44
+ Trying from_gem_specification strategy...FAILED
45
+ Determining license for coffee-rails:
46
+ Trying from_gem_specification strategy...FAILED
47
+ Determining license for rspec-rails:
48
+ Trying from_gem_specification strategy...SUCCESS
49
+ Determining license for capybara:
50
+ Trying from_gem_specification strategy...FAILED
51
+ Determining license for factory_girl_rails:
52
+ Trying from_gem_specification strategy...FAILED
53
+ Determining license for faker:
54
+ Trying from_gem_specification strategy...FAILED
55
+ Determining license for better_errors:
56
+ Trying from_gem_specification strategy...SUCCESS
57
+ Determining license for binding_of_caller:
58
+ Trying from_gem_specification strategy...FAILED
59
+ Determining license for debugger:
60
+ Trying from_gem_specification strategy...SUCCESS
61
+ Determining license for simplecov:
62
+ Trying from_gem_specification strategy...FAILED
63
+ Determining license for ci_reporter:
64
+ Trying from_gem_specification strategy...FAILED
65
+ Determining license for sqlite3:
66
+ Trying from_gem_specification strategy...FAILED
67
+ Determining license for mysql2:
68
+ Trying from_gem_specification strategy...FAILED
36
69
 
37
- Detected 3 known licenses:
70
+ Detected 4 known licenses:
38
71
  MIT: Expat License (4 instances)[http://directory.fsf.org/wiki/License:Expat]
72
+ Ruby: Ruby License (2 instances)[http://www.ruby-lang.org/en/about/license.txt]
39
73
  BSD: FreeBSD Copyright (2 instances)[http://www.freebsd.org/copyright/freebsd-license.html]
40
- GPL: GNU General Public License (1 instance)[http://en.wikipedia.org/wiki/GNU_General_Public_License]
41
- There is also 1 unknown license: Ruby
74
+ GPL: GNU General Public License (1 instance)[http://en.wikipedia.org/wiki/GNU_General_Public_License]
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'deriving_license'
3
- s.version = '0.1.6'
3
+ s.version = '0.2.0'
4
4
  s.summary = "Deriving Licence finds the license agreements for all gems in your Gemfile"
5
5
  s.description = "Deriving Licence finds the license agreements for all gems in your Gemfile if included in your project, or in a Gemfile passed to the included binary"
6
6
  s.authors = ["Tom Allen"]
@@ -1,6 +1,7 @@
1
1
  require "gemnasium/parser"
2
2
  require "bundler"
3
3
  require "safe_yaml"
4
+ require "open-uri"
4
5
 
5
6
  class DerivingLicense
6
7
 
@@ -29,7 +30,8 @@ class DerivingLicense
29
30
  # (that take a string of the dependency's name) then add their names here in
30
31
  # order of fastest to slowest.
31
32
  @@strategies = [
32
- "from_gem_specification"
33
+ "from_gem_specification",
34
+ "from_scraping_homepage"
33
35
  ]
34
36
 
35
37
  def self.run(path=nil)
@@ -53,14 +55,18 @@ class DerivingLicense
53
55
 
54
56
  # For each dependency specified...
55
57
  gemfile.dependencies.each do |d|
56
- print "Determining license for #{d.name}..."
58
+ print "Determining license for #{d.name}:\n"
57
59
  # Try each license finding strategy...
58
60
  @@strategies.each do |s|
61
+ print "\tTrying #{s} strategy..."
59
62
  @licenses = eval("#{s}(\"#{d.name}\")")
60
- break if @licenses # and break out of the search if successful
63
+ unless @licenses.empty? # and break out of the search if successful
64
+ print "SUCCESS\n"
65
+ break
66
+ end
67
+ print "FAILED\n"
61
68
  end
62
69
  @licenses.each{ |l| detected_licenses[l]+=1 } # add each detected license to the results
63
- print "DONE\n"
64
70
  end
65
71
  detected_licenses
66
72
  end
@@ -90,16 +96,50 @@ class DerivingLicense
90
96
  end
91
97
  end
92
98
 
93
- ##############
94
- # STRATEGIES #
95
- ##############
96
- def self.from_gem_specification(dep)
99
+ def self.get_gem_spec(dep)
97
100
  # See if the gem is installed locally, and if not add -r to call
98
101
  Bundler.with_clean_env do # This gets out of the bundler context.
99
102
  remote = /#{dep}/.match( `gem list #{dep}` ) ? "" : "-r "
100
103
  yaml = `gem specification #{remote}#{dep} --yaml`
101
104
  @spec = YAML.load(yaml, :safe => true)
102
105
  end
103
- @spec["licenses"]
106
+ @spec
107
+ end
108
+
109
+ ##############
110
+ # STRATEGIES #
111
+ ##############
112
+ def self.from_gem_specification(dep)
113
+ spec = get_gem_spec(dep)
114
+ spec["licenses"]
115
+ end
116
+
117
+ def self.from_license_file(dep)
118
+ []
119
+ end
120
+
121
+ def self.from_scraping_homepage(dep)
122
+ spec = get_gem_spec(dep)
123
+ licenses = []
124
+ unless spec["homepage"]
125
+ []
126
+ end
127
+ content = open(spec["homepage"])
128
+ content.each_line do |l|
129
+ if /license/.match(l)
130
+ # Found the word "license", so now look for known license names.
131
+ (@@license_details.keys + @@license_aliases.keys).each do |n|
132
+ if /#{n}/.match(l)
133
+ licenses << n
134
+ return licenses
135
+ end
136
+ end
137
+ end
138
+ end
139
+ [] # If we didn't return early, there's no match.
140
+ end
141
+
142
+ def self.from_parsing_readme(dep)
143
+ []
104
144
  end
105
145
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: deriving_license
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.6
4
+ version: 0.2.0
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors: