Giter Site home page Giter Site logo

Comments (9)

hung-phan avatar hung-phan commented on May 29, 2024

@jasonvillalon Why would you want to run "rake assets:precompile RAILS_ENV=development" in development mode? I just want to be clear about what problems you may have right now?

from generator-rails-angular-require.

jasonvillalon avatar jasonvillalon commented on May 29, 2024

Im sorry. I was following the instruction and tried rake assets:precompile RAILS_ENV=production but got the same error above

from generator-rails-angular-require.

hung-phan avatar hung-phan commented on May 29, 2024

@jasonvillalon What is your current template structure right now?

▾ app/
  ▾ assets/
    ▸ fonts/
    ▸ images/
    ▾ javascripts/
      ▸ admin/
      ▾ client/
        ▾ edit-info/
          ▸ checklist/
          ▸ project-role/
          ▸ skill/
          ▸ user-info/
            edit-info.coffee.erb*
            edit-info.tpl.html.haml*
        ▸ view-info/
        ▸ view-list/
          client.coffee.erb*
          client.tpl.html.haml*
      ▸ common/
      ▸ page/
      ▸ toolbox/
        devise.coffee
        main.coffee*

Do you use any Rails view helper in *tpl.html files?

from generator-rails-angular-require.

jasonvillalon avatar jasonvillalon commented on May 29, 2024

hi,

this is my current app structure

.
├── app
│ ├── assets
│ │ ├── images
│ │ ├── javascripts
│ │ │ ├── application.js
│ │ │ ├── home
│ │ │ │ ├── home.coffee.erb
│ │ │ │ └── home.tpl.html
│ │ │ └── main.coffee
│ │ └── stylesheets
│ │ ├── application.css
│ │ └── default.css.scss
│ ├── controllers
│ │ ├── api
│ │ │ ├── base.rb
│ │ │ └── v1
│ │ │ ├── base.rb
│ │ │ ├── defaults.rb
│ │ │ └── person_api.rb
│ │ ├── application_controller.rb
│ │ └── concerns
│ ├── helpers
│ │ └── application_helper.rb
│ ├── mailers
│ ├── models
│ │ └── concerns
│ └── views
│ ├── application
│ │ └── index.html
│ └── layouts
│ ├── application.html.erb
│ └── jasmine_rails
│ └── spec_runner.html.erb

On 4 October 2014 21:32, Hung Phan [email protected] wrote:

@jasonvillalon https://github.com/jasonvillalon What is your current
template structure right now?

▾ app/
▾ assets/
▸ fonts/
▸ images/
▾ javascripts/
▸ admin/
▾ client/
▾ edit-info/
▸ checklist/
▸ project-role/
▸ skill/
▸ user-info/
edit-info.coffee.erb*
edit-info.tpl.html.haml*
▸ view-info/
▸ view-list/
client.coffee.erb*
client.tpl.html.haml*
▸ common/
▸ page/
▸ toolbox/
devise.coffee
main.coffee*

Do you use any Rails view helper in *tpl.html files?


Reply to this email directly or view it on GitHub
#1 (comment)
.

from generator-rails-angular-require.

jasonvillalon avatar jasonvillalon commented on May 29, 2024

Here is my complete file structure. Please see attachment. to be honest..
im really new on rails. so please bear with me :) thanks

On 4 October 2014 22:24, Jason Villalon [email protected] wrote:

hi,

this is my current app structure

.
├── app
│ ├── assets
│ │ ├── images
│ │ ├── javascripts
│ │ │ ├── application.js
│ │ │ ├── home
│ │ │ │ ├── home.coffee.erb
│ │ │ │ └── home.tpl.html
│ │ │ └── main.coffee
│ │ └── stylesheets
│ │ ├── application.css
│ │ └── default.css.scss
│ ├── controllers
│ │ ├── api
│ │ │ ├── base.rb
│ │ │ └── v1
│ │ │ ├── base.rb
│ │ │ ├── defaults.rb
│ │ │ └── person_api.rb
│ │ ├── application_controller.rb
│ │ └── concerns
│ ├── helpers
│ │ └── application_helper.rb
│ ├── mailers
│ ├── models
│ │ └── concerns
│ └── views
│ ├── application
│ │ └── index.html
│ └── layouts
│ ├── application.html.erb
│ └── jasmine_rails
│ └── spec_runner.html.erb

On 4 October 2014 21:32, Hung Phan [email protected] wrote:

@jasonvillalon https://github.com/jasonvillalon What is your current
template structure right now?

▾ app/
▾ assets/
▸ fonts/
▸ images/
▾ javascripts/
▸ admin/
▾ client/
▾ edit-info/
▸ checklist/
▸ project-role/
▸ skill/
▸ user-info/
edit-info.coffee.erb*
edit-info.tpl.html.haml*
▸ view-info/
▸ view-list/
client.coffee.erb*
client.tpl.html.haml*
▸ common/
▸ page/
▸ toolbox/
devise.coffee
main.coffee*

Do you use any Rails view helper in *tpl.html files?


Reply to this email directly or view it on GitHub
#1 (comment)
.

.
├── app
│   ├── assets
│   │   ├── images
│   │   ├── javascripts
│   │   │   ├── application.js
│   │   │   ├── home
│   │   │   │   ├── home.coffee.erb
│   │   │   │   └── home.tpl.html
│   │   │   └── main.coffee
│   │   └── stylesheets
│   │   ├── application.css
│   │   └── default.css.scss
│   ├── controllers
│   │   ├── api
│   │   │   ├── base.rb
│   │   │   └── v1
│   │   │   ├── base.rb
│   │   │   ├── defaults.rb
│   │   │   └── person_api.rb
│   │   ├── application_controller.rb
│   │   └── concerns
│   ├── helpers
│   │   └── application_helper.rb
│   ├── mailers
│   ├── models
│   │   └── concerns
│   └── views
│   ├── application
│   │   └── index.html
│   └── layouts
│   ├── application.html.erb
│   └── jasmine_rails
│   └── spec_runner.html.erb
├── bin
│   ├── bundle
│   ├── rails
│   └── rake
├── Bowerfile
├── config
│   ├── application.rb
│   ├── boot.rb
│   ├── database.yml
│   ├── environment.rb
│   ├── environments
│   │   ├── development.rb
│   │   ├── production.rb
│   │   └── test.rb
│   ├── initializers
│   │   ├── angular_template_assets.rb
│   │   ├── assets.rb
│   │   ├── backtrace_silencers.rb
│   │   ├── bower_rails.rb
│   │   ├── cookies_serializer.rb
│   │   ├── filter_parameter_logging.rb
│   │   ├── inflections.rb
│   │   ├── mime_types.rb
│   │   ├── session_store.rb
│   │   └── wrap_parameters.rb
│   ├── locales
│   │   └── en.yml
│   ├── requirejs.yml
│   ├── routes.rb
│   └── secrets.yml
├── config.ru
├── db
│   └── seeds.rb
├── Gemfile
├── Gemfile.lock
├── Guardfile
├── lib
│   ├── assets
│   ├── jasmine_rails
│   │   └── spec_helper.rb
│   └── tasks
├── log
│   ├── development.log
│   └── production.log
├── protractor.config.js
├── public
│   ├── 404.html
│   ├── 422.html
│   ├── 500.html
│   ├── favicon.ico
│   └── robots.txt
├── Rakefile
├── README.rdoc
├── spec
│   └── javascripts
│   ├── e2espec
│   │   └── home_e2espec.coffee
│   ├── helpers
│   │   └── angular_template_helper.coffee.erb
│   ├── spec
│   │   └── home_unitspec.coffee
│   └── support
│   └── jasmine.yml
├── test
│   ├── controllers
│   ├── fixtures
│   ├── helpers
│   ├── integration
│   ├── mailers
│   ├── models
│   └── test_helper.rb
├── tmp
│   ├── cache
│   │   └── assets
│   ├── requirejs
│   │   └── src
│   │   ├── angular
│   │   │   ├── angular.js
│   │   │   └── angular.min.js
│   │   ├── angular-animate
│   │   │   ├── angular-animate.js
│   │   │   └── angular-animate.min.js
│   │   ├── angular-animate.js
│   │   ├── angular-bootstrap
│   │   │   ├── ui-bootstrap.js
│   │   │   ├── ui-bootstrap.min.js
│   │   │   ├── ui-bootstrap-tpls.js
│   │   │   └── ui-bootstrap-tpls.min.js
│   │   ├── angular.js
│   │   ├── angular-mocks
│   │   │   └── angular-mocks.js
│   │   ├── angular-mocks.js
│   │   ├── angular-ui-router
│   │   │   ├── release
│   │   │   │   ├── angular-ui-router.js
│   │   │   │   └── angular-ui-router.min.js
│   │   │   └── src
│   │   │   ├── common.js
│   │   │   ├── compat.js
│   │   │   ├── resolve.js
│   │   │   ├── stateDirectives.js
│   │   │   ├── stateFilters.js
│   │   │   ├── state.js
│   │   │   ├── templateFactory.js
│   │   │   ├── urlMatcherFactory.js
│   │   │   ├── urlRouter.js
│   │   │   ├── viewDirective.js
│   │   │   ├── view.js
│   │   │   └── viewScroll.js
│   │   ├── angular-ui-router.js
│   │   ├── application.js
│   │   ├── Buttons
│   │   │   ├── humans.txt
│   │   │   ├── index.html
│   │   │   └── js
│   │   │   ├── buttons.js
│   │   │   ├── main.js
│   │   │   └── vendor
│   │   │   ├── html5shiv.js
│   │   │   ├── jquery-1.9.1.min.js
│   │   │   └── scrollto.js
│   │   ├── Buttons.js
│   │   ├── home
│   │   │   ├── home.js
│   │   │   └── home.tpl.html
│   │   └── main.js
│   └── yeoman
│   ├── Bowerfile
│   └── Gemfile
└── vendor
└── assets
├── bower_components
│   ├── angular
│   │   ├── angular-csp.css
│   │   ├── angular.js
│   │   ├── angular.min.js
│   │   ├── angular.min.js.gzip
│   │   ├── angular.min.js.map
│   │   ├── bower.json
│   │   └── README.md
│   ├── angular-animate
│   │   ├── angular-animate.js
│   │   ├── angular-animate.min.js
│   │   ├── angular-animate.min.js.map
│   │   ├── bower.json
│   │   └── README.md
│   ├── angular-bootstrap
│   │   ├── bower.json
│   │   ├── ui-bootstrap.js
│   │   ├── ui-bootstrap.min.js
│   │   ├── ui-bootstrap-tpls.js
│   │   └── ui-bootstrap-tpls.min.js
│   ├── angular-mocks
│   │   ├── angular-mocks.js
│   │   ├── bower.json
│   │   └── README.md
│   ├── angular-ui-router
│   │   ├── bower.json
│   │   ├── CHANGELOG.md
│   │   ├── LICENSE
│   │   ├── README.md
│   │   ├── release
│   │   │   ├── angular-ui-router.js
│   │   │   └── angular-ui-router.min.js
│   │   └── src
│   │   ├── common.js
│   │   ├── compat.js
│   │   ├── resolve.js
│   │   ├── stateDirectives.js
│   │   ├── stateFilters.js
│   │   ├── state.js
│   │   ├── templateFactory.js
│   │   ├── urlMatcherFactory.js
│   │   ├── urlRouter.js
│   │   ├── viewDirective.js
│   │   ├── view.js
│   │   └── viewScroll.js
│   ├── animate-sass
│   │   ├── _animate.scss
│   │   ├── animations
│   │   │   ├── attention-seekers
│   │   │   │   ├── _bounce.scss
│   │   │   │   ├── _flash.scss
│   │   │   │   ├── _pulse.scss
│   │   │   │   ├── _shake.scss
│   │   │   │   ├── _swing.scss
│   │   │   │   ├── _tada.scss
│   │   │   │   ├── _wiggle.scss
│   │   │   │   └── _wobble.scss
│   │   │   ├── bounce-enter
│   │   │   │   ├── _bounceInDown.scss
│   │   │   │   ├── _bounceInLeft.scss
│   │   │   │   ├── _bounceInRight.scss
│   │   │   │   ├── _bounceIn.scss
│   │   │   │   └── _bounceInUp.scss
│   │   │   ├── bounce-exit
│   │   │   │   ├── _bounceOutDown.scss
│   │   │   │   ├── _bounceOutLeft.scss
│   │   │   │   ├── _bounceOutRight.scss
│   │   │   │   ├── _bounceOut.scss
│   │   │   │   └── _bounceOutUp.scss
│   │   │   ├── fade-enter
│   │   │   │   ├── _fadeInDownBig.scss
│   │   │   │   ├── _fadeInDown.scss
│   │   │   │   ├── _fadeInLeftBig.scss
│   │   │   │   ├── _fadeInLeft.scss
│   │   │   │   ├── _fadeInRightBig.scss
│   │   │   │   ├── _fadeInRight.scss
│   │   │   │   ├── _fadeIn.scss
│   │   │   │   ├── _fadeInUpBig.scss
│   │   │   │   └── _fadeInUp.scss
│   │   │   ├── fade-exit
│   │   │   │   ├── _fadeOutDownBig.scss
│   │   │   │   ├── _fadeOutDown.scss
│   │   │   │   ├── _fadeOutLeftBig.scss
│   │   │   │   ├── _fadeOutLeft.scss
│   │   │   │   ├── _fadeOutRightBig.scss
│   │   │   │   ├── _fadeOutRight.scss
│   │   │   │   ├── _fadeOut.scss
│   │   │   │   ├── _fadeOutUpBig.scss
│   │   │   │   └── _fadeOutUp.scss
│   │   │   ├── flippers
│   │   │   │   ├── _flipInX.scss
│   │   │   │   ├── _flipInY.scss
│   │   │   │   ├── _flipOutX.scss
│   │   │   │   ├── _flipOutY.scss
│   │   │   │   └── _flip.scss
│   │   │   ├── lightspeed
│   │   │   │   ├── _lightSpeedIn.scss
│   │   │   │   └── _lightSpeedOut.scss
│   │   │   ├── rotate-enter
│   │   │   │   ├── _rotateInDownLeft.scss
│   │   │   │   ├── _rotateInDownRight.scss
│   │   │   │   ├── _rotateIn.scss
│   │   │   │   ├── _rotateInUpLeft.scss
│   │   │   │   └── _rotateInUpRight.scss
│   │   │   ├── rotate-exit
│   │   │   │   ├── _rotateOutDownLeft.scss
│   │   │   │   ├── _rotateOutDownRight.scss
│   │   │   │   ├── _rotateOut.scss
│   │   │   │   ├── _rotateOutUpLeft.scss
│   │   │   │   └── _rotateOutUpRight.scss
│   │   │   ├── special
│   │   │   │   ├── _hinge.scss
│   │   │   │   ├── _rollIn.scss
│   │   │   │   └── _rollOut.scss
│   │   │   ├── zoom-enter
│   │   │   │   ├── _zoomInDown.scss
│   │   │   │   ├── _zoomInLeft.scss
│   │   │   │   ├── _zoomInRight.scss
│   │   │   │   ├── _zoomIn.scss
│   │   │   │   └── _zoomInUp.scss
│   │   │   └── zoom-exit
│   │   │   ├── _zoomOutDown.scss
│   │   │   ├── _zoomOutLeft.scss
│   │   │   ├── _zoomOutRight.scss
│   │   │   ├── _zoomOut.scss
│   │   │   └── _zoomOutUp.scss
│   │   ├── bower.json
│   │   ├── helpers
│   │   │   ├── _mixins.scss
│   │   │   └── _settings.scss
│   │   ├── manifest.json
│   │   └── README.md
│   ├── Buttons
│   │   ├── bower.json
│   │   ├── config.rb
│   │   ├── css
│   │   │   ├── buttons.css
│   │   │   ├── main.css
│   │   │   └── prettify.css
│   │   ├── humans.txt
│   │   ├── index.html
│   │   ├── js
│   │   │   ├── buttons.js
│   │   │   ├── main.js
│   │   │   └── vendor
│   │   │   ├── html5shiv.js
│   │   │   ├── jquery-1.9.1.min.js
│   │   │   └── scrollto.js
│   │   ├── LICENSE
│   │   ├── README.md
│   │   └── scss
│   │   ├── buttons.scss
│   │   ├── main.scss
│   │   └── partials
│   │   ├── _buttons.scss
│   │   ├── _danger.scss
│   │   ├── _glow.scss
│   │   └── _options.scss
│   ├── lodash
│   │   ├── bower.json
│   │   ├── dist
│   │   │   ├── lodash.compat.js
│   │   │   ├── lodash.compat.min.js
│   │   │   ├── lodash.js
│   │   │   ├── lodash.min.js
│   │   │   ├── lodash.underscore.js
│   │   │   └── lodash.underscore.min.js
│   │   └── LICENSE.txt
│   └── restangular
│   ├── bower.json
│   ├── CHANGELOG.md
│   ├── CONTRIBUTE.md
│   ├── dist
│   │   ├── restangular.js
│   │   ├── restangular.min.js
│   │   └── restangular.zip
│   ├── Gruntfile.js
│   ├── karma.conf.js
│   ├── karma.underscore.conf.js
│   ├── license.md
│   ├── package.json
│   ├── README.md
│   ├── src
│   │   └── restangular.js
│   └── test
│   └── restangularSpec.js
├── bower.json
├── javascripts
└── stylesheets

from generator-rails-angular-require.

hung-phan avatar hung-phan commented on May 29, 2024

jwhitley/requirejs-rails#188. Have you tried
this? Change it back to 0.9.3.

On Sat, Oct 4, 2014 at 9:28 PM, jasonvillalon [email protected]
wrote:

Here is my complete file structure. Please see attachment. to be honest..
im really new on rails. so please bear with me :) thanks

On 4 October 2014 22:24, Jason Villalon [email protected] wrote:

hi,

this is my current app structure

.
├── app
│ ├── assets
│ │ ├── images
│ │ ├── javascripts
│ │ │ ├── application.js
│ │ │ ├── home
│ │ │ │ ├── home.coffee.erb
│ │ │ │ └── home.tpl.html
│ │ │ └── main.coffee
│ │ └── stylesheets
│ │ ├── application.css
│ │ └── default.css.scss
│ ├── controllers
│ │ ├── api
│ │ │ ├── base.rb
│ │ │ └── v1
│ │ │ ├── base.rb
│ │ │ ├── defaults.rb
│ │ │ └── person_api.rb
│ │ ├── application_controller.rb
│ │ └── concerns
│ ├── helpers
│ │ └── application_helper.rb
│ ├── mailers
│ ├── models
│ │ └── concerns
│ └── views
│ ├── application
│ │ └── index.html
│ └── layouts
│ ├── application.html.erb
│ └── jasmine_rails
│ └── spec_runner.html.erb

On 4 October 2014 21:32, Hung Phan [email protected] wrote:

@jasonvillalon https://github.com/jasonvillalon What is your current
template structure right now?

▾ app/
▾ assets/
▸ fonts/
▸ images/
▾ javascripts/
▸ admin/
▾ client/
▾ edit-info/
▸ checklist/
▸ project-role/
▸ skill/
▸ user-info/
edit-info.coffee.erb*
edit-info.tpl.html.haml*
▸ view-info/
▸ view-list/
client.coffee.erb*
client.tpl.html.haml*
▸ common/
▸ page/
▸ toolbox/
devise.coffee
main.coffee*

Do you use any Rails view helper in *tpl.html files?


Reply to this email directly or view it on GitHub
<
https://github.com/hung-phan/generator-rails-angular-require/issues/1#issuecomment-57905720>

.

.
├── app
│ ├── assets
│ │ ├── images
│ │ ├── javascripts
│ │ │ ├── application.js
│ │ │ ├── home
│ │ │ │ ├── home.coffee.erb
│ │ │ │ └── home.tpl.html
│ │ │ └── main.coffee
│ │ └── stylesheets
│ │ ├── application.css
│ │ └── default.css.scss
│ ├── controllers
│ │ ├── api
│ │ │ ├── base.rb
│ │ │ └── v1
│ │ │ ├── base.rb
│ │ │ ├── defaults.rb
│ │ │ └── person_api.rb
│ │ ├── application_controller.rb
│ │ └── concerns
│ ├── helpers
│ │ └── application_helper.rb
│ ├── mailers
│ ├── models
│ │ └── concerns
│ └── views
│ ├── application
│ │ └── index.html
│ └── layouts
│ ├── application.html.erb
│ └── jasmine_rails
│ └── spec_runner.html.erb
├── bin
│ ├── bundle
│ ├── rails
│ └── rake
├── Bowerfile
├── config
│ ├── application.rb
│ ├── boot.rb
│ ├── database.yml
│ ├── environment.rb
│ ├── environments
│ │ ├── development.rb
│ │ ├── production.rb
│ │ └── test.rb
│ ├── initializers
│ │ ├── angular_template_assets.rb
│ │ ├── assets.rb
│ │ ├── backtrace_silencers.rb
│ │ ├── bower_rails.rb
│ │ ├── cookies_serializer.rb
│ │ ├── filter_parameter_logging.rb
│ │ ├── inflections.rb
│ │ ├── mime_types.rb
│ │ ├── session_store.rb
│ │ └── wrap_parameters.rb
│ ├── locales
│ │ └── en.yml
│ ├── requirejs.yml
│ ├── routes.rb
│ └── secrets.yml
├── config.ru
├── db
│ └── seeds.rb
├── Gemfile
├── Gemfile.lock
├── Guardfile
├── lib
│ ├── assets
│ ├── jasmine_rails
│ │ └── spec_helper.rb
│ └── tasks
├── log
│ ├── development.log
│ └── production.log
├── protractor.config.js
├── public
│ ├── 404.html
│ ├── 422.html
│ ├── 500.html
│ ├── favicon.ico
│ └── robots.txt
├── Rakefile
├── README.rdoc
├── spec
│ └── javascripts
│ ├── e2espec
│ │ └── home_e2espec.coffee
│ ├── helpers
│ │ └── angular_template_helper.coffee.erb
│ ├── spec
│ │ └── home_unitspec.coffee
│ └── support
│ └── jasmine.yml
├── test
│ ├── controllers
│ ├── fixtures
│ ├── helpers
│ ├── integration
│ ├── mailers
│ ├── models
│ └── test_helper.rb
├── tmp
│ ├── cache
│ │ └── assets
│ ├── requirejs
│ │ └── src
│ │ ├── angular
│ │ │ ├── angular.js
│ │ │ └── angular.min.js
│ │ ├── angular-animate
│ │ │ ├── angular-animate.js
│ │ │ └── angular-animate.min.js
│ │ ├── angular-animate.js
│ │ ├── angular-bootstrap
│ │ │ ├── ui-bootstrap.js
│ │ │ ├── ui-bootstrap.min.js
│ │ │ ├── ui-bootstrap-tpls.js
│ │ │ └── ui-bootstrap-tpls.min.js
│ │ ├── angular.js
│ │ ├── angular-mocks
│ │ │ └── angular-mocks.js
│ │ ├── angular-mocks.js
│ │ ├── angular-ui-router
│ │ │ ├── release
│ │ │ │ ├── angular-ui-router.js
│ │ │ │ └── angular-ui-router.min.js
│ │ │ └── src
│ │ │ ├── common.js
│ │ │ ├── compat.js
│ │ │ ├── resolve.js
│ │ │ ├── stateDirectives.js
│ │ │ ├── stateFilters.js
│ │ │ ├── state.js
│ │ │ ├── templateFactory.js
│ │ │ ├── urlMatcherFactory.js
│ │ │ ├── urlRouter.js
│ │ │ ├── viewDirective.js
│ │ │ ├── view.js
│ │ │ └── viewScroll.js
│ │ ├── angular-ui-router.js
│ │ ├── application.js
│ │ ├── Buttons
│ │ │ ├── humans.txt
│ │ │ ├── index.html
│ │ │ └── js
│ │ │ ├── buttons.js
│ │ │ ├── main.js
│ │ │ └── vendor
│ │ │ ├── html5shiv.js
│ │ │ ├── jquery-1.9.1.min.js
│ │ │ └── scrollto.js
│ │ ├── Buttons.js
│ │ ├── home
│ │ │ ├── home.js
│ │ │ └── home.tpl.html
│ │ └── main.js
│ └── yeoman
│ ├── Bowerfile
│ └── Gemfile
└── vendor
└── assets
├── bower_components
│ ├── angular
│ │ ├── angular-csp.css
│ │ ├── angular.js
│ │ ├── angular.min.js
│ │ ├── angular.min.js.gzip
│ │ ├── angular.min.js.map
│ │ ├── bower.json
│ │ └── README.md
│ ├── angular-animate
│ │ ├── angular-animate.js
│ │ ├── angular-animate.min.js
│ │ ├── angular-animate.min.js.map
│ │ ├── bower.json
│ │ └── README.md
│ ├── angular-bootstrap
│ │ ├── bower.json
│ │ ├── ui-bootstrap.js
│ │ ├── ui-bootstrap.min.js
│ │ ├── ui-bootstrap-tpls.js
│ │ └── ui-bootstrap-tpls.min.js
│ ├── angular-mocks
│ │ ├── angular-mocks.js
│ │ ├── bower.json
│ │ └── README.md
│ ├── angular-ui-router
│ │ ├── bower.json
│ │ ├── CHANGELOG.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── release
│ │ │ ├── angular-ui-router.js
│ │ │ └── angular-ui-router.min.js
│ │ └── src
│ │ ├── common.js
│ │ ├── compat.js
│ │ ├── resolve.js
│ │ ├── stateDirectives.js
│ │ ├── stateFilters.js
│ │ ├── state.js
│ │ ├── templateFactory.js
│ │ ├── urlMatcherFactory.js
│ │ ├── urlRouter.js
│ │ ├── viewDirective.js
│ │ ├── view.js
│ │ └── viewScroll.js
│ ├── animate-sass
│ │ ├── _animate.scss
│ │ ├── animations
│ │ │ ├── attention-seekers
│ │ │ │ ├── _bounce.scss
│ │ │ │ ├── _flash.scss
│ │ │ │ ├── _pulse.scss
│ │ │ │ ├── _shake.scss
│ │ │ │ ├── _swing.scss
│ │ │ │ ├── _tada.scss
│ │ │ │ ├── _wiggle.scss
│ │ │ │ └── _wobble.scss
│ │ │ ├── bounce-enter
│ │ │ │ ├── _bounceInDown.scss
│ │ │ │ ├── _bounceInLeft.scss
│ │ │ │ ├── _bounceInRight.scss
│ │ │ │ ├── _bounceIn.scss
│ │ │ │ └── _bounceInUp.scss
│ │ │ ├── bounce-exit
│ │ │ │ ├── _bounceOutDown.scss
│ │ │ │ ├── _bounceOutLeft.scss
│ │ │ │ ├── _bounceOutRight.scss
│ │ │ │ ├── _bounceOut.scss
│ │ │ │ └── _bounceOutUp.scss
│ │ │ ├── fade-enter
│ │ │ │ ├── _fadeInDownBig.scss
│ │ │ │ ├── _fadeInDown.scss
│ │ │ │ ├── _fadeInLeftBig.scss
│ │ │ │ ├── _fadeInLeft.scss
│ │ │ │ ├── _fadeInRightBig.scss
│ │ │ │ ├── _fadeInRight.scss
│ │ │ │ ├── _fadeIn.scss
│ │ │ │ ├── _fadeInUpBig.scss
│ │ │ │ └── _fadeInUp.scss
│ │ │ ├── fade-exit
│ │ │ │ ├── _fadeOutDownBig.scss
│ │ │ │ ├── _fadeOutDown.scss
│ │ │ │ ├── _fadeOutLeftBig.scss
│ │ │ │ ├── _fadeOutLeft.scss
│ │ │ │ ├── _fadeOutRightBig.scss
│ │ │ │ ├── _fadeOutRight.scss
│ │ │ │ ├── _fadeOut.scss
│ │ │ │ ├── _fadeOutUpBig.scss
│ │ │ │ └── _fadeOutUp.scss
│ │ │ ├── flippers
│ │ │ │ ├── _flipInX.scss
│ │ │ │ ├── _flipInY.scss
│ │ │ │ ├── _flipOutX.scss
│ │ │ │ ├── _flipOutY.scss
│ │ │ │ └── _flip.scss
│ │ │ ├── lightspeed
│ │ │ │ ├── _lightSpeedIn.scss
│ │ │ │ └── _lightSpeedOut.scss
│ │ │ ├── rotate-enter
│ │ │ │ ├── _rotateInDownLeft.scss
│ │ │ │ ├── _rotateInDownRight.scss
│ │ │ │ ├── _rotateIn.scss
│ │ │ │ ├── _rotateInUpLeft.scss
│ │ │ │ └── _rotateInUpRight.scss
│ │ │ ├── rotate-exit
│ │ │ │ ├── _rotateOutDownLeft.scss
│ │ │ │ ├── _rotateOutDownRight.scss
│ │ │ │ ├── _rotateOut.scss
│ │ │ │ ├── _rotateOutUpLeft.scss
│ │ │ │ └── _rotateOutUpRight.scss
│ │ │ ├── special
│ │ │ │ ├── _hinge.scss
│ │ │ │ ├── _rollIn.scss
│ │ │ │ └── _rollOut.scss
│ │ │ ├── zoom-enter
│ │ │ │ ├── _zoomInDown.scss
│ │ │ │ ├── _zoomInLeft.scss
│ │ │ │ ├── _zoomInRight.scss
│ │ │ │ ├── _zoomIn.scss
│ │ │ │ └── _zoomInUp.scss
│ │ │ └── zoom-exit
│ │ │ ├── _zoomOutDown.scss
│ │ │ ├── _zoomOutLeft.scss
│ │ │ ├── _zoomOutRight.scss
│ │ │ ├── _zoomOut.scss
│ │ │ └── _zoomOutUp.scss
│ │ ├── bower.json
│ │ ├── helpers
│ │ │ ├── _mixins.scss
│ │ │ └── _settings.scss
│ │ ├── manifest.json
│ │ └── README.md
│ ├── Buttons
│ │ ├── bower.json
│ │ ├── config.rb
│ │ ├── css
│ │ │ ├── buttons.css
│ │ │ ├── main.css
│ │ │ └── prettify.css
│ │ ├── humans.txt
│ │ ├── index.html
│ │ ├── js
│ │ │ ├── buttons.js
│ │ │ ├── main.js
│ │ │ └── vendor
│ │ │ ├── html5shiv.js
│ │ │ ├── jquery-1.9.1.min.js
│ │ │ └── scrollto.js
│ │ ├── LICENSE
│ │ ├── README.md
│ │ └── scss
│ │ ├── buttons.scss
│ │ ├── main.scss
│ │ └── partials
│ │ ├── _buttons.scss
│ │ ├── _danger.scss
│ │ ├── _glow.scss
│ │ └── _options.scss
│ ├── lodash
│ │ ├── bower.json
│ │ ├── dist
│ │ │ ├── lodash.compat.js
│ │ │ ├── lodash.compat.min.js
│ │ │ ├── lodash.js
│ │ │ ├── lodash.min.js
│ │ │ ├── lodash.underscore.js
│ │ │ └── lodash.underscore.min.js
│ │ └── LICENSE.txt
│ └── restangular
│ ├── bower.json
│ ├── CHANGELOG.md
│ ├── CONTRIBUTE.md
│ ├── dist
│ │ ├── restangular.js
│ │ ├── restangular.min.js
│ │ └── restangular.zip
│ ├── Gruntfile.js
│ ├── karma.conf.js
│ ├── karma.underscore.conf.js
│ ├── license.md
│ ├── package.json
│ ├── README.md
│ ├── src
│ │ └── restangular.js
│ └── test
│ └── restangularSpec.js
├── bower.json
├── javascripts
└── stylesheets


Reply to this email directly or view it on GitHub
#1 (comment)
.

from generator-rails-angular-require.

jasonvillalon avatar jasonvillalon commented on May 29, 2024

hi,
i cant manage to downgrade requirejs-rails to 0.9.3..

but i successfully run rake assets:precompile RAILS_ENV=production --trace

first i edited
sudo vi /usr/local/lib/ruby/gems/2.1.0/gems/sprockets-2.11.0/lib/sprockets/asset.rb like 43
and added puts pathname in line 43

so when i run assets:precompile again i found out that vendor/assets/bower_components/animate-sass/animate.scss is not existing

when i navagate to that directory animate.scss is _animate.scss so i mv _animate.scss to animate.scss then run assets:precompile again and it works. but when i run rails server it shows error that _animate.scss is missing now so i moved animate.scss to _animate.scss again.

now my starting project is working fine.

from generator-rails-angular-require.

hung-phan avatar hung-phan commented on May 29, 2024

[?] Gladly you just figure out it by yourself. I am working on another
generator right now (rails-utility) , which may be useful for integrating
other gems I have not included in my current generators. [?]

On Sun, Oct 5, 2014 at 6:55 AM, jasonvillalon [email protected]
wrote:

hi,
i cant manage to downgrade requirejs-rails to 0.9.3..

but i successfully run rake assets:precompile RAILS_ENV=production --trace

first i edited
sudo vi
/usr/local/lib/ruby/gems/2.1.0/gems/sprockets-2.11.0/lib/sprockets/asset.rb
like 43
and added puts pathname in line 43

so when i run assets:precompile again i found out that
vendor/assets/bower_components/animate-sass/animate.scss is not existing

when i navagate to that directory animate.scss is _animate.scss so i mv
_animate.scss to animate.scss then run assets:precompile again and it
works. but when i run rails server it shows error that _animate.scss is
missing now so i moved animate.scss to _animate.scss again.

now my starting project is working fine.


Reply to this email directly or view it on GitHub
#1 (comment)
.

from generator-rails-angular-require.

jasonvillalon avatar jasonvillalon commented on May 29, 2024

thanks. im looking forward to use your new generator. looks great

from generator-rails-angular-require.

Related Issues (2)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.