active-react-admin 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.
- checksums.yaml +7 -0
- data/.circleci/config.yml +60 -0
- data/.github/workflows/gempush.yml +41 -0
- data/.gitignore +11 -0
- data/.rspec +3 -0
- data/Gemfile +4 -0
- data/Gemfile.lock +35 -0
- data/README.md +35 -0
- data/Rakefile +6 -0
- data/active-react-admin.gemspec +33 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/lib/active/react/admin.rb +10 -0
- data/lib/active/react/admin/version.rb +7 -0
- metadata +102 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 2ebc50a93028a374fef9e05d51c6f9e09121924515077588c8203834b007d2ef
|
|
4
|
+
data.tar.gz: 5ab7070b45cdcd1a584f4a68ea6b168c72feb1bb47bd2ca9b02793457f843994
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: c48420b01206f5909326489d42ec388d3e45a5937dd1c03e3102760f55c7053659b05302efda7cbebb965e04eff798cd35a47948b33456f6950934b9a51739ee
|
|
7
|
+
data.tar.gz: 4326786257006f977a31e2ede71af8ab2c757b15226fe06bda2bf6bd87f731b06291457e8f4cb6beaa5274fd7e45f8899c0ca31440c232b5f9e7bfecb1820e95
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
version: 2 # use CircleCI 2.0
|
|
2
|
+
jobs: # a collection of steps
|
|
3
|
+
build: # runs not using Workflows must have a `build` job as entry point
|
|
4
|
+
parallelism: 3 # run three instances of this job in parallel
|
|
5
|
+
docker: # run the steps with Docker
|
|
6
|
+
- image: circleci/ruby:2.6.3-stretch # ...with this image as the primary container; this is where all `steps` will run
|
|
7
|
+
environment: # environment variables for primary container
|
|
8
|
+
BUNDLE_JOBS: 3
|
|
9
|
+
BUNDLE_RETRY: 3
|
|
10
|
+
BUNDLE_PATH: vendor/bundle
|
|
11
|
+
RAILS_ENV: test
|
|
12
|
+
steps: # a collection of executable commands
|
|
13
|
+
- checkout # special step to check out source code to working directory
|
|
14
|
+
|
|
15
|
+
# Which version of bundler?
|
|
16
|
+
- run:
|
|
17
|
+
name: Install bundler
|
|
18
|
+
command: gem install bundler:2.0.2
|
|
19
|
+
|
|
20
|
+
# Restore bundle cache
|
|
21
|
+
# Read about caching dependencies: https://circleci.com/docs/2.0/caching/
|
|
22
|
+
- restore_cache:
|
|
23
|
+
keys:
|
|
24
|
+
- active-react-admin-v2-{{ checksum "Gemfile.lock" }}
|
|
25
|
+
- active-react-admin-v2-
|
|
26
|
+
|
|
27
|
+
- run: # Install Ruby dependencies
|
|
28
|
+
name: Bundle Install
|
|
29
|
+
command: bundle check --path vendor/bundle || bundle install
|
|
30
|
+
|
|
31
|
+
# Store bundle cache for Ruby dependencies
|
|
32
|
+
- save_cache:
|
|
33
|
+
key: active-react-admin-v2-{{ checksum "Gemfile.lock" }}
|
|
34
|
+
paths:
|
|
35
|
+
- vendor/bundle
|
|
36
|
+
|
|
37
|
+
# # Only necessary if app uses webpacker or yarn in some other way
|
|
38
|
+
# - restore_cache:
|
|
39
|
+
# keys:
|
|
40
|
+
# - active-react-admin-yarn-{{ checksum "yarn.lock" }}
|
|
41
|
+
# - active-react-admin-yarn-
|
|
42
|
+
|
|
43
|
+
# - run:
|
|
44
|
+
# name: Yarn Install
|
|
45
|
+
# command: yarn install --cache-folder ~/.cache/yarn
|
|
46
|
+
|
|
47
|
+
# # Store yarn / webpacker cache
|
|
48
|
+
# - save_cache:
|
|
49
|
+
# key: active-react-admin-yarn-{{ checksum "yarn.lock" }}
|
|
50
|
+
# paths:
|
|
51
|
+
# - ~/.cache/yarn
|
|
52
|
+
- run:
|
|
53
|
+
name: Run rspec in parallel
|
|
54
|
+
command: |
|
|
55
|
+
bundle exec rspec --out test_results/rspec.xml \
|
|
56
|
+
--format progress \
|
|
57
|
+
$(circleci tests glob "spec/**/*_spec.rb" | circleci tests split --split-by=timings)
|
|
58
|
+
# Save test results for timing analysis
|
|
59
|
+
- store_test_results: # Upload test results for display in Test Summary: https://circleci.com/docs/2.0/collect-test-data/
|
|
60
|
+
path: test_results
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
name: Ruby Gem
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches:
|
|
6
|
+
- master
|
|
7
|
+
|
|
8
|
+
jobs:
|
|
9
|
+
build:
|
|
10
|
+
name: Build + Publish
|
|
11
|
+
runs-on: ubuntu-latest
|
|
12
|
+
|
|
13
|
+
steps:
|
|
14
|
+
- uses: actions/checkout@master
|
|
15
|
+
- name: Set up Ruby 2.6
|
|
16
|
+
uses: actions/setup-ruby@v1
|
|
17
|
+
with:
|
|
18
|
+
version: 2.6.3
|
|
19
|
+
|
|
20
|
+
- name: Publish to GPR
|
|
21
|
+
run: |
|
|
22
|
+
mkdir -p $HOME/.gem
|
|
23
|
+
touch $HOME/.gem/credentials
|
|
24
|
+
chmod 0600 $HOME/.gem/credentials
|
|
25
|
+
printf -- "---\n:github: Bearer ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
|
|
26
|
+
gem build *.gemspec
|
|
27
|
+
gem push --KEY github --host https://rubygems.pkg.github.com/${OWNER} *.gem
|
|
28
|
+
env:
|
|
29
|
+
GEM_HOST_API_KEY: ${{secrets.GPR_AUTH_TOKEN}}
|
|
30
|
+
OWNER: eth3rnit3
|
|
31
|
+
|
|
32
|
+
- name: Publish to RubyGems
|
|
33
|
+
run: |
|
|
34
|
+
mkdir -p $HOME/.gem
|
|
35
|
+
touch $HOME/.gem/credentials
|
|
36
|
+
chmod 0600 $HOME/.gem/credentials
|
|
37
|
+
printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
|
|
38
|
+
gem build *.gemspec
|
|
39
|
+
gem push *.gem
|
|
40
|
+
env:
|
|
41
|
+
GEM_HOST_API_KEY: ${{secrets.RUBYGEMS_AUTH_TOKEN}}
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
PATH
|
|
2
|
+
remote: .
|
|
3
|
+
specs:
|
|
4
|
+
active-react-admin (0.1.0)
|
|
5
|
+
|
|
6
|
+
GEM
|
|
7
|
+
remote: https://rubygems.org/
|
|
8
|
+
specs:
|
|
9
|
+
diff-lcs (1.3)
|
|
10
|
+
rake (10.5.0)
|
|
11
|
+
rspec (3.9.0)
|
|
12
|
+
rspec-core (~> 3.9.0)
|
|
13
|
+
rspec-expectations (~> 3.9.0)
|
|
14
|
+
rspec-mocks (~> 3.9.0)
|
|
15
|
+
rspec-core (3.9.0)
|
|
16
|
+
rspec-support (~> 3.9.0)
|
|
17
|
+
rspec-expectations (3.9.0)
|
|
18
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
19
|
+
rspec-support (~> 3.9.0)
|
|
20
|
+
rspec-mocks (3.9.0)
|
|
21
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
22
|
+
rspec-support (~> 3.9.0)
|
|
23
|
+
rspec-support (3.9.0)
|
|
24
|
+
|
|
25
|
+
PLATFORMS
|
|
26
|
+
ruby
|
|
27
|
+
|
|
28
|
+
DEPENDENCIES
|
|
29
|
+
active-react-admin!
|
|
30
|
+
bundler (~> 2.0)
|
|
31
|
+
rake (~> 10.0)
|
|
32
|
+
rspec (~> 3.0)
|
|
33
|
+
|
|
34
|
+
BUNDLED WITH
|
|
35
|
+
2.0.2
|
data/README.md
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# Active::React::Admin
|
|
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/active/react/admin`. To experiment with that code, run `bin/console` for an interactive prompt.
|
|
4
|
+
|
|
5
|
+
TODO: Delete this and the text above, and describe your gem
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
Add this line to your application's Gemfile:
|
|
10
|
+
|
|
11
|
+
```ruby
|
|
12
|
+
gem 'active-react-admin'
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
And then execute:
|
|
16
|
+
|
|
17
|
+
$ bundle
|
|
18
|
+
|
|
19
|
+
Or install it yourself as:
|
|
20
|
+
|
|
21
|
+
$ gem install active-react-admin
|
|
22
|
+
|
|
23
|
+
## Usage
|
|
24
|
+
|
|
25
|
+
TODO: Write usage instructions here
|
|
26
|
+
|
|
27
|
+
## Development
|
|
28
|
+
|
|
29
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
|
30
|
+
|
|
31
|
+
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 tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
|
32
|
+
|
|
33
|
+
## Contributing
|
|
34
|
+
|
|
35
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/active-react-admin.
|
data/Rakefile
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
lib = File.expand_path("lib", __dir__)
|
|
2
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
3
|
+
require "active/react/admin/version"
|
|
4
|
+
|
|
5
|
+
Gem::Specification.new do |spec|
|
|
6
|
+
spec.name = "active-react-admin"
|
|
7
|
+
spec.version = Active::React::Admin::VERSION
|
|
8
|
+
spec.authors = ["David"]
|
|
9
|
+
spec.email = ["eth3rnit3@gmail.fr"]
|
|
10
|
+
|
|
11
|
+
spec.summary = "Admin pannel using react-admin module"
|
|
12
|
+
spec.description = "This gem use create-react-app and react-admin to automaticly build an admin panel easyly customizable"
|
|
13
|
+
spec.homepage = "https://github.com/Eth3rnit3/active-react-admin"
|
|
14
|
+
|
|
15
|
+
spec.metadata["allowed_push_host"] = "https://rubygems.org"
|
|
16
|
+
|
|
17
|
+
spec.metadata["homepage_uri"] = spec.homepage
|
|
18
|
+
spec.metadata["source_code_uri"] = spec.homepage
|
|
19
|
+
spec.metadata["changelog_uri"] = "https://github.com/Eth3rnit3/active-react-admin/releases"
|
|
20
|
+
|
|
21
|
+
# Specify which files should be added to the gem when it is released.
|
|
22
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
|
23
|
+
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
|
24
|
+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
25
|
+
end
|
|
26
|
+
spec.bindir = "exe"
|
|
27
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
28
|
+
spec.require_paths = ["lib"]
|
|
29
|
+
|
|
30
|
+
spec.add_development_dependency "bundler", "~> 2.0"
|
|
31
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
|
32
|
+
spec.add_development_dependency "rspec", "~> 3.0"
|
|
33
|
+
end
|
data/bin/console
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
|
|
3
|
+
require "bundler/setup"
|
|
4
|
+
require "active/react/admin"
|
|
5
|
+
|
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
|
8
|
+
|
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
|
10
|
+
# require "pry"
|
|
11
|
+
# Pry.start
|
|
12
|
+
|
|
13
|
+
require "irb"
|
|
14
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
metadata
ADDED
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: active-react-admin
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- David
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: exe
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2019-11-24 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: bundler
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - "~>"
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '2.0'
|
|
20
|
+
type: :development
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - "~>"
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '2.0'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: rake
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - "~>"
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '10.0'
|
|
34
|
+
type: :development
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - "~>"
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '10.0'
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
42
|
+
name: rspec
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - "~>"
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: '3.0'
|
|
48
|
+
type: :development
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - "~>"
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '3.0'
|
|
55
|
+
description: This gem use create-react-app and react-admin to automaticly build an
|
|
56
|
+
admin panel easyly customizable
|
|
57
|
+
email:
|
|
58
|
+
- eth3rnit3@gmail.fr
|
|
59
|
+
executables: []
|
|
60
|
+
extensions: []
|
|
61
|
+
extra_rdoc_files: []
|
|
62
|
+
files:
|
|
63
|
+
- ".circleci/config.yml"
|
|
64
|
+
- ".github/workflows/gempush.yml"
|
|
65
|
+
- ".gitignore"
|
|
66
|
+
- ".rspec"
|
|
67
|
+
- Gemfile
|
|
68
|
+
- Gemfile.lock
|
|
69
|
+
- README.md
|
|
70
|
+
- Rakefile
|
|
71
|
+
- active-react-admin.gemspec
|
|
72
|
+
- bin/console
|
|
73
|
+
- bin/setup
|
|
74
|
+
- lib/active/react/admin.rb
|
|
75
|
+
- lib/active/react/admin/version.rb
|
|
76
|
+
homepage: https://github.com/Eth3rnit3/active-react-admin
|
|
77
|
+
licenses: []
|
|
78
|
+
metadata:
|
|
79
|
+
allowed_push_host: https://rubygems.org
|
|
80
|
+
homepage_uri: https://github.com/Eth3rnit3/active-react-admin
|
|
81
|
+
source_code_uri: https://github.com/Eth3rnit3/active-react-admin
|
|
82
|
+
changelog_uri: https://github.com/Eth3rnit3/active-react-admin/releases
|
|
83
|
+
post_install_message:
|
|
84
|
+
rdoc_options: []
|
|
85
|
+
require_paths:
|
|
86
|
+
- lib
|
|
87
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
88
|
+
requirements:
|
|
89
|
+
- - ">="
|
|
90
|
+
- !ruby/object:Gem::Version
|
|
91
|
+
version: '0'
|
|
92
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
93
|
+
requirements:
|
|
94
|
+
- - ">="
|
|
95
|
+
- !ruby/object:Gem::Version
|
|
96
|
+
version: '0'
|
|
97
|
+
requirements: []
|
|
98
|
+
rubygems_version: 3.0.3
|
|
99
|
+
signing_key:
|
|
100
|
+
specification_version: 4
|
|
101
|
+
summary: Admin pannel using react-admin module
|
|
102
|
+
test_files: []
|