rephlex 0.1.0 → 0.1.1

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
  SHA256:
3
- metadata.gz: 7d2b8616bdf465d6b8eec4ba3a2390ae995deea8adcb756caf213f3f4e552329
4
- data.tar.gz: 91c75e0b3cfb0a2cb0b62d199f3422d550d93cc218ee9de4dbda16e86eaddae8
3
+ metadata.gz: 5be2bb2ecb5e38482f3d7d2cbdd7c0405fb5769770df5cd25c8eab1ffcb98578
4
+ data.tar.gz: b7356f2c6c6a795afa5219f8d3230609e6b10a9a383ef152f11449b14a2791ec
5
5
  SHA512:
6
- metadata.gz: 9d3f42cf826226fd2996e698a127f44be30e2a47f42f6fb25f44126d742937110584e6a02acacc02a4cb033e4143077c966bc7c7ff4cf970c196a57499f2c11d
7
- data.tar.gz: a8543aa763f40fe7ded45da4a152878faafe7d49a17c86f1ca9fca1a8aab25e051c4384dbd6aaff4d0458b5821e586862c373a56b949d3a2f040240276255e9c
6
+ metadata.gz: 71245575b614157182ed91edc527af569601504df13209e0e02f547836b3e7847c789154cad93c804c06e5cada7f325a4b95bee65bfa2fa3f233a958cf385f7c
7
+ data.tar.gz: 19ac1702a6cc09ea2ad4f1d98ca33987a64abdbc1eac57c0a66adaff868eb75f3d985d691df97519222414ac4fe0c9b5a53f35f998c56d86a87fa8ff9b256806
data/CHANGELOG.md CHANGED
@@ -3,3 +3,7 @@
3
3
  ## [0.1.0] - 2023-01-02
4
4
 
5
5
  - Initial release
6
+
7
+ ## [0.1.1] - 2023-01-02
8
+
9
+ - Change to gemspec
data/README.md CHANGED
@@ -1,37 +1,10 @@
1
1
  # Rephlex
2
2
 
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/rephlex`. To experiment with that code, run `bin/console` for an interactive prompt.
3
+ A slightly opinionated, this framework centers around resource allocations and locality of behavior. For example a resource like "post" and all the logic centered around decorators/routes/data-model/view components will all like in the same directory.
4
4
 
5
- TODO: Delete this and the text above, and describe your gem
5
+ This framework provides some small code generation tooling, code reloading, and modern a frontend solution in vite-ruby. This framework is purposefully small, and fast. Leaning on Roda's routing tree and Sequel as the ORM you can use the plugin systems to only load in the code you truly need.
6
6
 
7
- ## Installation
7
+ With Roda and Sequel clocking in as the fastest ruby routing system and ORM respectively, they are complimented on the view layer with Phlex components, the fastest ruby rendering library. Leaning on evoliving tooling in the realm of hypermedia as the engine of application state, we are all-in on systems like Turbo with TurboBoost, or HTMX.
8
8
 
9
- Install the gem and add to the application's Gemfile by executing:
10
9
 
11
- $ bundle add rephlex
12
-
13
- If bundler is not being used to manage dependencies, install the gem by executing:
14
-
15
- $ gem install rephlex
16
-
17
- ## Usage
18
-
19
- TODO: Write usage instructions here
20
-
21
- ## Development
22
-
23
- After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
24
-
25
- To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
26
-
27
- ## Contributing
28
-
29
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/rephlex. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/[USERNAME]/rephlex/blob/main/CODE_OF_CONDUCT.md).
30
-
31
- ## License
32
-
33
- The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
34
-
35
- ## Code of Conduct
36
-
37
- Everyone interacting in the Rephlex project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/rephlex/blob/main/CODE_OF_CONDUCT.md).
10
+ We do not provide a large system of dsls or 'magic' for Rephlex. We strongly suggest using pure ruby and object oriented programming to solve you needs and to take care of managing your dependencies.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Rephlex
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
data/rephlex.gemspec CHANGED
@@ -11,21 +11,10 @@ Gem::Specification.new do |spec|
11
11
  spec.summary = "Fast and Fun. A ruby micro-framework built on Roda, Sequel, and Phlex components."
12
12
 
13
13
  spec.description = <<-DESCRIPTION
14
- Slightly opinionated, this framework centers around resource allocations and locality of behavior.
15
- For example a resource like "post" and all the logic centered around decorators/routes/data-model/view components will all like in
16
- the same directory. This framework provides some small code generation tooling, code reloading, and modern a frontend solution in vite-ruby.
17
-
18
-
19
- This framework is purposefully small, and fast. Leaning on Roda's routing tree and Sequel as the ORM you can use the plugin systems to only
20
- load in the code you truly need. With Roda and Sequel clocking in as the fastest ruby routing system and ORM respectively, they are complimented on the view layer
21
- with Phlex components, the fastest ruby rendering library.
22
-
23
- Leaning on evoliving tooling in the realm of hypermedia as the engine of application state, we are all-in on systems like Turbo with TurboBoost, or HTMX.
24
-
25
- We do not provide a large system of dsls or 'magic' for Rephlex. We strongly suggest using pure ruby and object oriented programming to solve you needs and to take care of managing your dependencies.
14
+ Fast and Fun. A ruby micro-framework built on Roda, Sequel, and Phlex
26
15
  DESCRIPTION
27
16
 
28
- spec.homepage = "https://github.com/House-Atlantic/rephlex"
17
+ spec.homepage = "https://github.com/RomanTurner/rephlex"
29
18
  spec.license = "MIT"
30
19
  spec.required_ruby_version = ">= 2.6.0"
31
20
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rephlex
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - roman turner
@@ -10,19 +10,7 @@ bindir: exe
10
10
  cert_chain: []
11
11
  date: 2023-01-03 00:00:00.000000000 Z
12
12
  dependencies: []
13
- description: |2
14
- Slightly opinionated, this framework centers around resource allocations and locality of behavior.
15
- For example a resource like "post" and all the logic centered around decorators/routes/data-model/view components will all like in
16
- the same directory. This framework provides some small code generation tooling, code reloading, and modern a frontend solution in vite-ruby.
17
-
18
-
19
- This framework is purposefully small, and fast. Leaning on Roda's routing tree and Sequel as the ORM you can use the plugin systems to only
20
- load in the code you truly need. With Roda and Sequel clocking in as the fastest ruby routing system and ORM respectively, they are complimented on the view layer
21
- with Phlex components, the fastest ruby rendering library.
22
-
23
- Leaning on evoliving tooling in the realm of hypermedia as the engine of application state, we are all-in on systems like Turbo with TurboBoost, or HTMX.
24
-
25
- We do not provide a large system of dsls or 'magic' for Rephlex. We strongly suggest using pure ruby and object oriented programming to solve you needs and to take care of managing your dependencies.
13
+ description: " Fast and Fun. A ruby micro-framework built on Roda, Sequel, and Phlex\n"
26
14
  email:
27
15
  - roman.nturner@gmail.com
28
16
  executables:
@@ -40,13 +28,13 @@ files:
40
28
  - lib/rephlex.rb
41
29
  - lib/rephlex/version.rb
42
30
  - rephlex.gemspec
43
- homepage: https://github.com/House-Atlantic/rephlex
31
+ homepage: https://github.com/RomanTurner/rephlex
44
32
  licenses:
45
33
  - MIT
46
34
  metadata:
47
- homepage_uri: https://github.com/House-Atlantic/rephlex
48
- source_code_uri: https://github.com/House-Atlantic/rephlex
49
- changelog_uri: https://github.com/House-Atlantic/rephlex/blob/main/CHANGELOG.md
35
+ homepage_uri: https://github.com/RomanTurner/rephlex
36
+ source_code_uri: https://github.com/RomanTurner/rephlex
37
+ changelog_uri: https://github.com/RomanTurner/rephlex/blob/main/CHANGELOG.md
50
38
  post_install_message:
51
39
  rdoc_options: []
52
40
  require_paths: