bullet_train 1.2.27 → 1.3.1
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/app/controllers/concerns/account/controllers/base.rb +2 -0
- data/app/controllers/concerns/account/memberships/controller_base.rb +2 -1
- data/app/controllers/concerns/account/teams/controller_base.rb +1 -1
- data/app/controllers/concerns/sessions/controller_base.rb +35 -0
- data/app/controllers/sessions_controller.rb +0 -32
- data/app/helpers/account/dates_helper.rb +41 -24
- data/app/helpers/account/markdown_helper.rb +8 -1
- data/app/helpers/account/users_helper.rb +43 -24
- data/app/helpers/attributes_helper.rb +7 -22
- data/app/helpers/invitation_only_helper.rb +9 -1
- data/app/javascript/controllers/bulk_actions_controller.js +1 -0
- data/app/models/billing/mock_limiter.rb +1 -1
- data/app/models/concerns/memberships/base.rb +17 -0
- data/app/models/concerns/records/base.rb +3 -1
- data/app/models/concerns/teams/base.rb +4 -8
- data/app/models/concerns/users/base.rb +15 -1
- data/app/views/account/memberships/_index.html.erb +1 -1
- data/app/views/account/onboarding/user_details/edit.html.erb +1 -0
- data/app/views/account/users/_form.html.erb +6 -4
- data/app/views/devise/registrations/new.html.erb +1 -1
- data/app/views/layouts/docs.html.erb +15 -3
- data/app/views/layouts/public.html.erb +31 -0
- data/config/locales/en/base.yml +9 -0
- data/config/locales/en/memberships.en.yml +3 -0
- data/config/locales/en/users.en.yml +5 -0
- data/docs/application-hash.md +25 -0
- data/docs/billing/stripe.md +3 -3
- data/docs/billing/usage.md +7 -7
- data/docs/field-partials/buttons.md +4 -4
- data/docs/field-partials/date-related-fields.md +13 -0
- data/docs/field-partials/file-field.md +1 -2
- data/docs/field-partials/super-select.md +23 -4
- data/docs/field-partials.md +24 -11
- data/docs/font-awesome-pro.md +1 -1
- data/docs/index.md +9 -8
- data/docs/indirection.md +5 -1
- data/docs/overriding.md +1 -1
- data/docs/seeds.md +3 -3
- data/docs/super-scaffolding/delegated-types.md +27 -24
- data/docs/super-scaffolding/options.md +24 -0
- data/docs/super-scaffolding/sortable.md +1 -1
- data/docs/super-scaffolding.md +7 -6
- data/docs/testing.md +1 -1
- data/docs/themes.md +4 -4
- data/docs/tunneling.md +2 -2
- data/docs/upgrades.md +7 -7
- data/docs/zapier.md +1 -1
- data/lib/bullet_train/configuration.rb +9 -3
- data/lib/bullet_train/resolver.rb +11 -6
- data/lib/bullet_train/version.rb +1 -1
- data/lib/bullet_train.rb +13 -8
- data/lib/tasks/bullet_train_tasks.rake +30 -0
- metadata +25 -8
- data/README.md +0 -29
data/README.md
DELETED
@@ -1,29 +0,0 @@
|
|
1
|
-
# BulletTrain
|
2
|
-
Short description and motivation.
|
3
|
-
|
4
|
-
## Usage
|
5
|
-
How to use my plugin.
|
6
|
-
|
7
|
-
## Installation
|
8
|
-
Add this line to your application's Gemfile:
|
9
|
-
|
10
|
-
```ruby
|
11
|
-
gem "bullet_train"
|
12
|
-
```
|
13
|
-
|
14
|
-
And then execute:
|
15
|
-
```bash
|
16
|
-
bundle
|
17
|
-
```
|
18
|
-
|
19
|
-
Or install it yourself as:
|
20
|
-
```bash
|
21
|
-
gem install bullet_train
|
22
|
-
```
|
23
|
-
|
24
|
-
## Contributing
|
25
|
-
|
26
|
-
See `RELEASE.md` for instructions on local development and for publishing both the gem and the npm package.
|
27
|
-
|
28
|
-
## License
|
29
|
-
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|