rubydojo 0.1.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.
@@ -0,0 +1,3 @@
1
+ module Rubydojo
2
+ VERSION = "0.1.0"
3
+ end
data/lib/rubydojo.rb ADDED
@@ -0,0 +1,7 @@
1
+ require "rubydojo/version"
2
+ require "rubydojo/engine"
3
+ require "rubydojo/lessons"
4
+
5
+ module Rubydojo
6
+ # Your code goes here...
7
+ end
@@ -0,0 +1,4 @@
1
+ # desc "Explaining what the task does"
2
+ # task :rubydojo do
3
+ # # Task goes here
4
+ # end
metadata ADDED
@@ -0,0 +1,82 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rubydojo
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Jayesh
8
+ bindir: bin
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies:
12
+ - !ruby/object:Gem::Dependency
13
+ name: rails
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - "~>"
17
+ - !ruby/object:Gem::Version
18
+ version: '8.1'
19
+ - - ">="
20
+ - !ruby/object:Gem::Version
21
+ version: 8.1.3
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ requirements:
26
+ - - "~>"
27
+ - !ruby/object:Gem::Version
28
+ version: '8.1'
29
+ - - ">="
30
+ - !ruby/object:Gem::Version
31
+ version: 8.1.3
32
+ description: A mountable Rails engine gem providing interactive Ruby lessons, a visual
33
+ roadmap, code playground, and inline test validation.
34
+ email:
35
+ - jayeshborkar5868@gmail.com
36
+ executables: []
37
+ extensions: []
38
+ extra_rdoc_files: []
39
+ files:
40
+ - MIT-LICENSE
41
+ - README.md
42
+ - Rakefile
43
+ - app/assets/stylesheets/rubydojo/application.css
44
+ - app/controllers/rubydojo/application_controller.rb
45
+ - app/controllers/rubydojo/dashboard_controller.rb
46
+ - app/controllers/rubydojo/lessons_controller.rb
47
+ - app/helpers/rubydojo/application_helper.rb
48
+ - app/models/rubydojo/application_record.rb
49
+ - app/views/layouts/rubydojo/application.html.erb
50
+ - app/views/rubydojo/dashboard/index.html.erb
51
+ - app/views/rubydojo/lessons/show.html.erb
52
+ - config/routes.rb
53
+ - lib/rubydojo.rb
54
+ - lib/rubydojo/engine.rb
55
+ - lib/rubydojo/lessons.rb
56
+ - lib/rubydojo/version.rb
57
+ - lib/tasks/rubydojo_tasks.rake
58
+ homepage: https://github.com/jayesh/rubydojo
59
+ licenses:
60
+ - MIT
61
+ metadata:
62
+ allowed_push_host: https://rubygems.org
63
+ source_code_uri: https://github.com/jayesh/rubydojo
64
+ changelog_uri: https://github.com/jayesh/rubydojo/blob/main/CHANGELOG.md
65
+ rdoc_options: []
66
+ require_paths:
67
+ - lib
68
+ required_ruby_version: !ruby/object:Gem::Requirement
69
+ requirements:
70
+ - - ">="
71
+ - !ruby/object:Gem::Version
72
+ version: 3.1.0
73
+ required_rubygems_version: !ruby/object:Gem::Requirement
74
+ requirements:
75
+ - - ">="
76
+ - !ruby/object:Gem::Version
77
+ version: '0'
78
+ requirements: []
79
+ rubygems_version: 3.6.9
80
+ specification_version: 4
81
+ summary: Interactive Ruby learning roadmap and compiler playground for Rails devs
82
+ test_files: []