genset 0.0.4 → 0.0.5
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.
- checksums.yaml +4 -4
- data/README.md +28 -14
- data/Rakefile +28 -43
- data/app/assets/config/genset_manifest.js +2 -0
- data/app/assets/javascripts/genset/application.js +13 -0
- data/app/assets/stylesheets/genset/application.css +15 -0
- data/app/controllers/genset/application_controller.rb +5 -0
- data/app/helpers/genset/application_helper.rb +4 -0
- data/app/jobs/genset/application_job.rb +4 -0
- data/app/mailers/genset/application_mailer.rb +6 -0
- data/app/models/genset/application_record.rb +5 -0
- data/app/views/layouts/genset/application.html.erb +14 -0
- data/config/routes.rb +2 -0
- data/lib/genset.rb +5 -0
- data/lib/genset/engine.rb +9 -0
- data/lib/genset/version.rb +3 -0
- data/lib/tasks/genset_tasks.rake +4 -0
- metadata +26 -84
- data/.document +0 -5
- data/Gemfile +0 -18
- data/Gemfile.lock +0 -165
- data/LICENSE.md +0 -20
- data/VERSION +0 -1
- data/genset.gemspec +0 -64
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c1cbf8f71bddc96fe8dfe7baac13acc506c77811
|
|
4
|
+
data.tar.gz: fcec9133ebdee3cd94c75b2bfcb27ea572a8fee2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 93f497b93ac9aaa33c0dac55034d41f606ee2474172109328038192ea228ed674af09cbc74202fd5386b0b4da328c79fbf765156882139d17e4b9e522efc0f76
|
|
7
|
+
data.tar.gz: 5923ae97b434b7dc2a8010f7b03d9f0608137e7161e5a02fbf593ea8609f79ee08b7705a8427f24f9a26747bc5d9ee57d2960f20b592402ebc1f9eff1fabbe29
|
data/README.md
CHANGED
|
@@ -1,19 +1,33 @@
|
|
|
1
|
-
|
|
1
|
+
[](https://travis-ci.org/genset/genset)
|
|
2
|
+
[](https://rubygems.org/gems/genset)
|
|
3
|
+
[](https://codeclimate.com/github/genset/genset)
|
|
4
|
+
[](https://codeclimate.com/github/genset/genset/coverage)
|
|
2
5
|
|
|
3
|
-
|
|
6
|
+
# Genset
|
|
7
|
+
Short description and motivation.
|
|
4
8
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
* Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
|
|
8
|
-
* Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
|
|
9
|
-
* Fork the project.
|
|
10
|
-
* Start a feature/bugfix branch.
|
|
11
|
-
* Commit and push until you are happy with your contribution.
|
|
12
|
-
* Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
|
|
13
|
-
* Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
|
|
9
|
+
## Usage
|
|
10
|
+
How to use my plugin.
|
|
14
11
|
|
|
15
|
-
|
|
12
|
+
## Installation
|
|
13
|
+
Add this line to your application's Gemfile:
|
|
16
14
|
|
|
17
|
-
|
|
18
|
-
|
|
15
|
+
```ruby
|
|
16
|
+
gem 'genset'
|
|
17
|
+
```
|
|
19
18
|
|
|
19
|
+
And then execute:
|
|
20
|
+
```bash
|
|
21
|
+
$ bundle
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
Or install it yourself as:
|
|
25
|
+
```bash
|
|
26
|
+
$ gem install genset
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
## Contributing
|
|
30
|
+
Contribution directions go here.
|
|
31
|
+
|
|
32
|
+
## License
|
|
33
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
data/Rakefile
CHANGED
|
@@ -1,52 +1,37 @@
|
|
|
1
|
-
# encoding: utf-8
|
|
2
|
-
|
|
3
|
-
require 'rubygems'
|
|
4
|
-
require 'bundler'
|
|
5
1
|
begin
|
|
6
|
-
|
|
7
|
-
rescue
|
|
8
|
-
|
|
9
|
-
$stderr.puts "Run `bundle install` to install missing gems"
|
|
10
|
-
exit e.status_code
|
|
11
|
-
end
|
|
12
|
-
require 'rake'
|
|
13
|
-
|
|
14
|
-
require 'juwelier'
|
|
15
|
-
Juwelier::Tasks.new do |gem|
|
|
16
|
-
# gem is a Gem::Specification... see http://guides.rubygems.org/specification-reference/ for more options
|
|
17
|
-
gem.name = "genset"
|
|
18
|
-
gem.homepage = "https://genset.github.io/genset"
|
|
19
|
-
gem.license = "MIT"
|
|
20
|
-
gem.summary = %Q{One-line summary of your gem}
|
|
21
|
-
gem.description = %Q{Longer description of your gem}
|
|
22
|
-
gem.email = "jason@ihaia.com"
|
|
23
|
-
gem.authors = ["Jason Ihaia"]
|
|
24
|
-
|
|
25
|
-
# dependencies defined in Gemfile
|
|
2
|
+
require 'bundler/setup'
|
|
3
|
+
rescue LoadError
|
|
4
|
+
puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
|
|
26
5
|
end
|
|
27
|
-
Juwelier::RubygemsDotOrgTasks.new
|
|
28
6
|
|
|
29
|
-
require '
|
|
30
|
-
Rake::TestTask.new(:test) do |test|
|
|
31
|
-
test.libs << 'lib' << 'test'
|
|
32
|
-
test.pattern = 'test/**/test_*.rb'
|
|
33
|
-
test.verbose = true
|
|
34
|
-
end
|
|
7
|
+
require 'rdoc/task'
|
|
35
8
|
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
9
|
+
RDoc::Task.new(:rdoc) do |rdoc|
|
|
10
|
+
rdoc.rdoc_dir = 'rdoc'
|
|
11
|
+
rdoc.title = 'Genset'
|
|
12
|
+
rdoc.options << '--line-numbers'
|
|
13
|
+
rdoc.rdoc_files.include('README.md')
|
|
14
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
|
40
15
|
end
|
|
41
16
|
|
|
42
|
-
|
|
17
|
+
APP_RAKEFILE = File.expand_path("../test/dummy/Rakefile", __FILE__)
|
|
18
|
+
load 'rails/tasks/engine.rake'
|
|
43
19
|
|
|
44
|
-
require 'rdoc/task'
|
|
45
|
-
Rake::RDocTask.new do |rdoc|
|
|
46
|
-
version = File.exist?('VERSION') ? File.read('VERSION') : ""
|
|
47
20
|
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
21
|
+
load 'rails/tasks/statistics.rake'
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
require 'bundler/gem_tasks'
|
|
26
|
+
|
|
27
|
+
require 'rake/testtask'
|
|
28
|
+
|
|
29
|
+
Rake::TestTask.new(:test) do |t|
|
|
30
|
+
t.libs << 'lib'
|
|
31
|
+
t.libs << 'test'
|
|
32
|
+
t.pattern = 'test/**/*_test.rb'
|
|
33
|
+
t.verbose = false
|
|
52
34
|
end
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
task default: :test
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
// This is a manifest file that'll be compiled into application.js, which will include all the files
|
|
2
|
+
// listed below.
|
|
3
|
+
//
|
|
4
|
+
// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
|
|
5
|
+
// or any plugin's vendor/assets/javascripts directory can be referenced here using a relative path.
|
|
6
|
+
//
|
|
7
|
+
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
|
|
8
|
+
// compiled file. JavaScript code in this file should be added after the last require_* statement.
|
|
9
|
+
//
|
|
10
|
+
// Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details
|
|
11
|
+
// about supported directives.
|
|
12
|
+
//
|
|
13
|
+
//= require_tree .
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* This is a manifest file that'll be compiled into application.css, which will include all the files
|
|
3
|
+
* listed below.
|
|
4
|
+
*
|
|
5
|
+
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
|
|
6
|
+
* or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
|
|
7
|
+
*
|
|
8
|
+
* You're free to add application-wide styles to this file and they'll appear at the bottom of the
|
|
9
|
+
* compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
|
|
10
|
+
* files in this directory. Styles in this file should be added after the last require_* statement.
|
|
11
|
+
* It is generally better to create a new file per style scope.
|
|
12
|
+
*
|
|
13
|
+
*= require_tree .
|
|
14
|
+
*= require_self
|
|
15
|
+
*/
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<title>Genset</title>
|
|
5
|
+
<%= stylesheet_link_tag "genset/application", media: "all" %>
|
|
6
|
+
<%= javascript_include_tag "genset/application" %>
|
|
7
|
+
<%= csrf_meta_tags %>
|
|
8
|
+
</head>
|
|
9
|
+
<body>
|
|
10
|
+
|
|
11
|
+
<%= yield %>
|
|
12
|
+
|
|
13
|
+
</body>
|
|
14
|
+
</html>
|
data/config/routes.rb
ADDED
data/lib/genset.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: genset
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jason Ihaia
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-10-
|
|
11
|
+
date: 2016-10-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|
|
@@ -17,101 +17,43 @@ dependencies:
|
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
19
|
version: 5.0.0
|
|
20
|
-
type: :runtime
|
|
21
|
-
prerelease: false
|
|
22
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
-
requirements:
|
|
24
|
-
- - "~>"
|
|
25
|
-
- !ruby/object:Gem::Version
|
|
26
|
-
version: 5.0.0
|
|
27
|
-
- !ruby/object:Gem::Dependency
|
|
28
|
-
name: shoulda
|
|
29
|
-
requirement: !ruby/object:Gem::Requirement
|
|
30
|
-
requirements:
|
|
31
|
-
- - ">="
|
|
32
|
-
- !ruby/object:Gem::Version
|
|
33
|
-
version: '0'
|
|
34
|
-
type: :development
|
|
35
|
-
prerelease: false
|
|
36
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
-
requirements:
|
|
38
20
|
- - ">="
|
|
39
21
|
- !ruby/object:Gem::Version
|
|
40
|
-
version:
|
|
41
|
-
|
|
42
|
-
name: rdoc
|
|
43
|
-
requirement: !ruby/object:Gem::Requirement
|
|
44
|
-
requirements:
|
|
45
|
-
- - "~>"
|
|
46
|
-
- !ruby/object:Gem::Version
|
|
47
|
-
version: '3.12'
|
|
48
|
-
type: :development
|
|
49
|
-
prerelease: false
|
|
50
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
-
requirements:
|
|
52
|
-
- - "~>"
|
|
53
|
-
- !ruby/object:Gem::Version
|
|
54
|
-
version: '3.12'
|
|
55
|
-
- !ruby/object:Gem::Dependency
|
|
56
|
-
name: bundler
|
|
57
|
-
requirement: !ruby/object:Gem::Requirement
|
|
58
|
-
requirements:
|
|
59
|
-
- - "~>"
|
|
60
|
-
- !ruby/object:Gem::Version
|
|
61
|
-
version: '1.0'
|
|
62
|
-
type: :development
|
|
63
|
-
prerelease: false
|
|
64
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
65
|
-
requirements:
|
|
66
|
-
- - "~>"
|
|
67
|
-
- !ruby/object:Gem::Version
|
|
68
|
-
version: '1.0'
|
|
69
|
-
- !ruby/object:Gem::Dependency
|
|
70
|
-
name: juwelier
|
|
71
|
-
requirement: !ruby/object:Gem::Requirement
|
|
72
|
-
requirements:
|
|
73
|
-
- - "~>"
|
|
74
|
-
- !ruby/object:Gem::Version
|
|
75
|
-
version: 2.1.0
|
|
76
|
-
type: :development
|
|
22
|
+
version: 5.0.0.1
|
|
23
|
+
type: :runtime
|
|
77
24
|
prerelease: false
|
|
78
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
79
26
|
requirements:
|
|
80
27
|
- - "~>"
|
|
81
28
|
- !ruby/object:Gem::Version
|
|
82
|
-
version:
|
|
83
|
-
- !ruby/object:Gem::Dependency
|
|
84
|
-
name: simplecov
|
|
85
|
-
requirement: !ruby/object:Gem::Requirement
|
|
86
|
-
requirements:
|
|
87
|
-
- - ">="
|
|
88
|
-
- !ruby/object:Gem::Version
|
|
89
|
-
version: '0'
|
|
90
|
-
type: :development
|
|
91
|
-
prerelease: false
|
|
92
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
93
|
-
requirements:
|
|
29
|
+
version: 5.0.0
|
|
94
30
|
- - ">="
|
|
95
31
|
- !ruby/object:Gem::Version
|
|
96
|
-
version:
|
|
97
|
-
description:
|
|
98
|
-
email:
|
|
32
|
+
version: 5.0.0.1
|
|
33
|
+
description: Description of Genset.
|
|
34
|
+
email:
|
|
35
|
+
- jason@buildit.io
|
|
99
36
|
executables: []
|
|
100
37
|
extensions: []
|
|
101
|
-
extra_rdoc_files:
|
|
102
|
-
- LICENSE.md
|
|
103
|
-
- README.md
|
|
38
|
+
extra_rdoc_files: []
|
|
104
39
|
files:
|
|
105
|
-
- ".document"
|
|
106
|
-
- Gemfile
|
|
107
|
-
- Gemfile.lock
|
|
108
|
-
- LICENSE.md
|
|
109
40
|
- README.md
|
|
110
41
|
- Rakefile
|
|
111
|
-
-
|
|
112
|
-
- genset.
|
|
42
|
+
- app/assets/config/genset_manifest.js
|
|
43
|
+
- app/assets/javascripts/genset/application.js
|
|
44
|
+
- app/assets/stylesheets/genset/application.css
|
|
45
|
+
- app/controllers/genset/application_controller.rb
|
|
46
|
+
- app/helpers/genset/application_helper.rb
|
|
47
|
+
- app/jobs/genset/application_job.rb
|
|
48
|
+
- app/mailers/genset/application_mailer.rb
|
|
49
|
+
- app/models/genset/application_record.rb
|
|
50
|
+
- app/views/layouts/genset/application.html.erb
|
|
51
|
+
- config/routes.rb
|
|
113
52
|
- lib/genset.rb
|
|
114
|
-
|
|
53
|
+
- lib/genset/engine.rb
|
|
54
|
+
- lib/genset/version.rb
|
|
55
|
+
- lib/tasks/genset_tasks.rake
|
|
56
|
+
homepage: https://genset.github.io/genset/
|
|
115
57
|
licenses:
|
|
116
58
|
- MIT
|
|
117
59
|
metadata: {}
|
|
@@ -131,8 +73,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
131
73
|
version: '0'
|
|
132
74
|
requirements: []
|
|
133
75
|
rubyforge_project:
|
|
134
|
-
rubygems_version: 2.
|
|
76
|
+
rubygems_version: 2.5.1
|
|
135
77
|
signing_key:
|
|
136
78
|
specification_version: 4
|
|
137
|
-
summary:
|
|
79
|
+
summary: Summary of Genset.
|
|
138
80
|
test_files: []
|
data/.document
DELETED
data/Gemfile
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
source "https://rubygems.org"
|
|
2
|
-
# Add dependencies required to use your gem here.
|
|
3
|
-
# Example:
|
|
4
|
-
# gem "activesupport", ">= 2.3.5"
|
|
5
|
-
|
|
6
|
-
# Add dependencies to develop your gem here.
|
|
7
|
-
# Include everything needed to run rake, tests, features, etc.
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
group :development do
|
|
11
|
-
gem "shoulda", ">= 0"
|
|
12
|
-
gem "rdoc", "~> 3.12"
|
|
13
|
-
gem "bundler", "~> 1.0"
|
|
14
|
-
gem "juwelier", "~> 2.1.0"
|
|
15
|
-
gem "simplecov", ">= 0"
|
|
16
|
-
end
|
|
17
|
-
|
|
18
|
-
gem "rails", "~> 5.0.0"
|
data/Gemfile.lock
DELETED
|
@@ -1,165 +0,0 @@
|
|
|
1
|
-
GEM
|
|
2
|
-
remote: https://rubygems.org/
|
|
3
|
-
specs:
|
|
4
|
-
actioncable (5.0.0.1)
|
|
5
|
-
actionpack (= 5.0.0.1)
|
|
6
|
-
nio4r (~> 1.2)
|
|
7
|
-
websocket-driver (~> 0.6.1)
|
|
8
|
-
actionmailer (5.0.0.1)
|
|
9
|
-
actionpack (= 5.0.0.1)
|
|
10
|
-
actionview (= 5.0.0.1)
|
|
11
|
-
activejob (= 5.0.0.1)
|
|
12
|
-
mail (~> 2.5, >= 2.5.4)
|
|
13
|
-
rails-dom-testing (~> 2.0)
|
|
14
|
-
actionpack (5.0.0.1)
|
|
15
|
-
actionview (= 5.0.0.1)
|
|
16
|
-
activesupport (= 5.0.0.1)
|
|
17
|
-
rack (~> 2.0)
|
|
18
|
-
rack-test (~> 0.6.3)
|
|
19
|
-
rails-dom-testing (~> 2.0)
|
|
20
|
-
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
|
21
|
-
actionview (5.0.0.1)
|
|
22
|
-
activesupport (= 5.0.0.1)
|
|
23
|
-
builder (~> 3.1)
|
|
24
|
-
erubis (~> 2.7.0)
|
|
25
|
-
rails-dom-testing (~> 2.0)
|
|
26
|
-
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
|
27
|
-
activejob (5.0.0.1)
|
|
28
|
-
activesupport (= 5.0.0.1)
|
|
29
|
-
globalid (>= 0.3.6)
|
|
30
|
-
activemodel (5.0.0.1)
|
|
31
|
-
activesupport (= 5.0.0.1)
|
|
32
|
-
activerecord (5.0.0.1)
|
|
33
|
-
activemodel (= 5.0.0.1)
|
|
34
|
-
activesupport (= 5.0.0.1)
|
|
35
|
-
arel (~> 7.0)
|
|
36
|
-
activesupport (5.0.0.1)
|
|
37
|
-
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
38
|
-
i18n (~> 0.7)
|
|
39
|
-
minitest (~> 5.1)
|
|
40
|
-
tzinfo (~> 1.1)
|
|
41
|
-
addressable (2.4.0)
|
|
42
|
-
arel (7.1.4)
|
|
43
|
-
builder (3.2.2)
|
|
44
|
-
concurrent-ruby (1.0.2)
|
|
45
|
-
descendants_tracker (0.0.4)
|
|
46
|
-
thread_safe (~> 0.3, >= 0.3.1)
|
|
47
|
-
docile (1.1.5)
|
|
48
|
-
erubis (2.7.0)
|
|
49
|
-
faraday (0.9.2)
|
|
50
|
-
multipart-post (>= 1.2, < 3)
|
|
51
|
-
git (1.3.0)
|
|
52
|
-
github_api (0.14.5)
|
|
53
|
-
addressable (~> 2.4.0)
|
|
54
|
-
descendants_tracker (~> 0.0.4)
|
|
55
|
-
faraday (~> 0.8, < 0.10)
|
|
56
|
-
hashie (>= 3.4)
|
|
57
|
-
oauth2 (~> 1.0)
|
|
58
|
-
globalid (0.3.7)
|
|
59
|
-
activesupport (>= 4.1.0)
|
|
60
|
-
hashie (3.4.6)
|
|
61
|
-
highline (1.7.8)
|
|
62
|
-
i18n (0.7.0)
|
|
63
|
-
json (1.8.3)
|
|
64
|
-
juwelier (2.1.3)
|
|
65
|
-
builder
|
|
66
|
-
bundler (>= 1.13)
|
|
67
|
-
git (>= 1.2.5)
|
|
68
|
-
github_api
|
|
69
|
-
highline (>= 1.6.15)
|
|
70
|
-
nokogiri (>= 1.5.10)
|
|
71
|
-
rake
|
|
72
|
-
rdoc
|
|
73
|
-
semver
|
|
74
|
-
jwt (1.5.6)
|
|
75
|
-
loofah (2.0.3)
|
|
76
|
-
nokogiri (>= 1.5.9)
|
|
77
|
-
mail (2.6.4)
|
|
78
|
-
mime-types (>= 1.16, < 4)
|
|
79
|
-
method_source (0.8.2)
|
|
80
|
-
mime-types (3.1)
|
|
81
|
-
mime-types-data (~> 3.2015)
|
|
82
|
-
mime-types-data (3.2016.0521)
|
|
83
|
-
mini_portile2 (2.1.0)
|
|
84
|
-
minitest (5.9.1)
|
|
85
|
-
multi_json (1.12.1)
|
|
86
|
-
multi_xml (0.5.5)
|
|
87
|
-
multipart-post (2.0.0)
|
|
88
|
-
nio4r (1.2.1)
|
|
89
|
-
nokogiri (1.6.8.1)
|
|
90
|
-
mini_portile2 (~> 2.1.0)
|
|
91
|
-
oauth2 (1.2.0)
|
|
92
|
-
faraday (>= 0.8, < 0.10)
|
|
93
|
-
jwt (~> 1.0)
|
|
94
|
-
multi_json (~> 1.3)
|
|
95
|
-
multi_xml (~> 0.5)
|
|
96
|
-
rack (>= 1.2, < 3)
|
|
97
|
-
rack (2.0.1)
|
|
98
|
-
rack-test (0.6.3)
|
|
99
|
-
rack (>= 1.0)
|
|
100
|
-
rails (5.0.0.1)
|
|
101
|
-
actioncable (= 5.0.0.1)
|
|
102
|
-
actionmailer (= 5.0.0.1)
|
|
103
|
-
actionpack (= 5.0.0.1)
|
|
104
|
-
actionview (= 5.0.0.1)
|
|
105
|
-
activejob (= 5.0.0.1)
|
|
106
|
-
activemodel (= 5.0.0.1)
|
|
107
|
-
activerecord (= 5.0.0.1)
|
|
108
|
-
activesupport (= 5.0.0.1)
|
|
109
|
-
bundler (>= 1.3.0, < 2.0)
|
|
110
|
-
railties (= 5.0.0.1)
|
|
111
|
-
sprockets-rails (>= 2.0.0)
|
|
112
|
-
rails-dom-testing (2.0.1)
|
|
113
|
-
activesupport (>= 4.2.0, < 6.0)
|
|
114
|
-
nokogiri (~> 1.6.0)
|
|
115
|
-
rails-html-sanitizer (1.0.3)
|
|
116
|
-
loofah (~> 2.0)
|
|
117
|
-
railties (5.0.0.1)
|
|
118
|
-
actionpack (= 5.0.0.1)
|
|
119
|
-
activesupport (= 5.0.0.1)
|
|
120
|
-
method_source
|
|
121
|
-
rake (>= 0.8.7)
|
|
122
|
-
thor (>= 0.18.1, < 2.0)
|
|
123
|
-
rake (11.3.0)
|
|
124
|
-
rdoc (3.12.2)
|
|
125
|
-
json (~> 1.4)
|
|
126
|
-
semver (1.0.1)
|
|
127
|
-
shoulda (3.5.0)
|
|
128
|
-
shoulda-context (~> 1.0, >= 1.0.1)
|
|
129
|
-
shoulda-matchers (>= 1.4.1, < 3.0)
|
|
130
|
-
shoulda-context (1.2.1)
|
|
131
|
-
shoulda-matchers (2.8.0)
|
|
132
|
-
activesupport (>= 3.0.0)
|
|
133
|
-
simplecov (0.12.0)
|
|
134
|
-
docile (~> 1.1.0)
|
|
135
|
-
json (>= 1.8, < 3)
|
|
136
|
-
simplecov-html (~> 0.10.0)
|
|
137
|
-
simplecov-html (0.10.0)
|
|
138
|
-
sprockets (3.7.0)
|
|
139
|
-
concurrent-ruby (~> 1.0)
|
|
140
|
-
rack (> 1, < 3)
|
|
141
|
-
sprockets-rails (3.2.0)
|
|
142
|
-
actionpack (>= 4.0)
|
|
143
|
-
activesupport (>= 4.0)
|
|
144
|
-
sprockets (>= 3.0.0)
|
|
145
|
-
thor (0.19.1)
|
|
146
|
-
thread_safe (0.3.5)
|
|
147
|
-
tzinfo (1.2.2)
|
|
148
|
-
thread_safe (~> 0.1)
|
|
149
|
-
websocket-driver (0.6.4)
|
|
150
|
-
websocket-extensions (>= 0.1.0)
|
|
151
|
-
websocket-extensions (0.1.2)
|
|
152
|
-
|
|
153
|
-
PLATFORMS
|
|
154
|
-
ruby
|
|
155
|
-
|
|
156
|
-
DEPENDENCIES
|
|
157
|
-
bundler (~> 1.0)
|
|
158
|
-
juwelier (~> 2.1.0)
|
|
159
|
-
rails (~> 5.0.0)
|
|
160
|
-
rdoc (~> 3.12)
|
|
161
|
-
shoulda
|
|
162
|
-
simplecov
|
|
163
|
-
|
|
164
|
-
BUNDLED WITH
|
|
165
|
-
1.13.6
|
data/LICENSE.md
DELETED
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
Copyright (c) 2016 Jason Ihaia
|
|
2
|
-
|
|
3
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
|
4
|
-
a copy of this software and associated documentation files (the
|
|
5
|
-
"Software"), to deal in the Software without restriction, including
|
|
6
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
|
7
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
|
8
|
-
permit persons to whom the Software is furnished to do so, subject to
|
|
9
|
-
the following conditions:
|
|
10
|
-
|
|
11
|
-
The above copyright notice and this permission notice shall be
|
|
12
|
-
included in all copies or substantial portions of the Software.
|
|
13
|
-
|
|
14
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
15
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
16
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
17
|
-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
18
|
-
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
19
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
20
|
-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/VERSION
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
0.0.4
|
data/genset.gemspec
DELETED
|
@@ -1,64 +0,0 @@
|
|
|
1
|
-
# Generated by juwelier
|
|
2
|
-
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
|
-
# Instead, edit Juwelier::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
|
-
# -*- encoding: utf-8 -*-
|
|
5
|
-
# stub: genset 0.0.4 ruby lib
|
|
6
|
-
|
|
7
|
-
Gem::Specification.new do |s|
|
|
8
|
-
s.name = "genset".freeze
|
|
9
|
-
s.version = "0.0.4"
|
|
10
|
-
|
|
11
|
-
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
|
|
12
|
-
s.require_paths = ["lib".freeze]
|
|
13
|
-
s.authors = ["Jason Ihaia".freeze]
|
|
14
|
-
s.date = "2016-10-29"
|
|
15
|
-
s.description = "Longer description of your gem".freeze
|
|
16
|
-
s.email = "jason@ihaia.com".freeze
|
|
17
|
-
s.extra_rdoc_files = [
|
|
18
|
-
"LICENSE.md",
|
|
19
|
-
"README.md"
|
|
20
|
-
]
|
|
21
|
-
s.files = [
|
|
22
|
-
".document",
|
|
23
|
-
"Gemfile",
|
|
24
|
-
"Gemfile.lock",
|
|
25
|
-
"LICENSE.md",
|
|
26
|
-
"README.md",
|
|
27
|
-
"Rakefile",
|
|
28
|
-
"VERSION",
|
|
29
|
-
"genset.gemspec",
|
|
30
|
-
"lib/genset.rb"
|
|
31
|
-
]
|
|
32
|
-
s.homepage = "https://genset.github.io/genset".freeze
|
|
33
|
-
s.licenses = ["MIT".freeze]
|
|
34
|
-
s.rubygems_version = "2.6.4".freeze
|
|
35
|
-
s.summary = "One-line summary of your gem".freeze
|
|
36
|
-
|
|
37
|
-
if s.respond_to? :specification_version then
|
|
38
|
-
s.specification_version = 4
|
|
39
|
-
|
|
40
|
-
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
41
|
-
s.add_runtime_dependency(%q<rails>.freeze, ["~> 5.0.0"])
|
|
42
|
-
s.add_development_dependency(%q<shoulda>.freeze, [">= 0"])
|
|
43
|
-
s.add_development_dependency(%q<rdoc>.freeze, ["~> 3.12"])
|
|
44
|
-
s.add_development_dependency(%q<bundler>.freeze, ["~> 1.0"])
|
|
45
|
-
s.add_development_dependency(%q<juwelier>.freeze, ["~> 2.1.0"])
|
|
46
|
-
s.add_development_dependency(%q<simplecov>.freeze, [">= 0"])
|
|
47
|
-
else
|
|
48
|
-
s.add_dependency(%q<rails>.freeze, ["~> 5.0.0"])
|
|
49
|
-
s.add_dependency(%q<shoulda>.freeze, [">= 0"])
|
|
50
|
-
s.add_dependency(%q<rdoc>.freeze, ["~> 3.12"])
|
|
51
|
-
s.add_dependency(%q<bundler>.freeze, ["~> 1.0"])
|
|
52
|
-
s.add_dependency(%q<juwelier>.freeze, ["~> 2.1.0"])
|
|
53
|
-
s.add_dependency(%q<simplecov>.freeze, [">= 0"])
|
|
54
|
-
end
|
|
55
|
-
else
|
|
56
|
-
s.add_dependency(%q<rails>.freeze, ["~> 5.0.0"])
|
|
57
|
-
s.add_dependency(%q<shoulda>.freeze, [">= 0"])
|
|
58
|
-
s.add_dependency(%q<rdoc>.freeze, ["~> 3.12"])
|
|
59
|
-
s.add_dependency(%q<bundler>.freeze, ["~> 1.0"])
|
|
60
|
-
s.add_dependency(%q<juwelier>.freeze, ["~> 2.1.0"])
|
|
61
|
-
s.add_dependency(%q<simplecov>.freeze, [">= 0"])
|
|
62
|
-
end
|
|
63
|
-
end
|
|
64
|
-
|